body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}
.header {
    background-color: #8a2be2;
    color: white;
}
.footer {
    background-color: #1f2937;
    color: white;
}
.category-card:hover {
    transform: translateY(-5px);
}
.article-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.article-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}
.article-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}
.article-content p {
    margin-bottom: 1rem;
}
.article-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}
.article-content ol {
    list-style-type: decimal;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}
.article-content li {
    margin-bottom: 0.5rem;
}
.article-content a {
    color: #2563eb;
    text-decoration: underline;
}
.article-content a:hover {
    color: #1d4ed8;
}
.article-content blockquote {
    border-left: 4px solid #e5e7eb;
    padding-left: 1rem;
    font-style: italic;
    margin: 1rem 0;
}
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}
.article-content table th,
.article-content table td {
    border: 1px solid #e5e7eb;
    padding: 0.5rem;
}
.article-content table th {
    background-color: #f3f4f6;
}
