* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: #2d3e50;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #db2a4e;
    margin-bottom: 20px;
}

.logo {
    font-size: 36px;
    font-weight: bold;
    color: #db2a4e;
    text-decoration: none;
    letter-spacing: -1px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #2d3e50;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

nav a:hover {
    color: #db2a4e;
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px 0;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.hero-content h1 {
    font-size: 42px;
    color: #2d3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    font-family: Arial, Helvetica, sans-serif;
}

.btn {
    display: inline-block;
    background-color: #db2a4e;
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #b3243f;
}

.section-title {
    font-size: 28px;
    color: #2d3e50;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #db2a4e;
    display: inline-block;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.article-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-card-content {
    padding: 20px;
}

.article-category {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #db2a4e;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.article-card h3 {
    font-size: 20px;
    color: #2d3e50;
    margin-bottom: 10px;
    line-height: 1.3;
}

.article-card p {
    font-size: 14px;
    color: #666;
    font-family: Arial, Helvetica, sans-serif;
}

.sidebar {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.topics-list {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
}

.topics-list h3 {
    font-size: 20px;
    color: #2d3e50;
    margin-bottom: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.topics-list ul {
    list-style: none;
}

.topics-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.topics-list li:last-child {
    border-bottom: none;
}

.topics-list a {
    text-decoration: none;
    color: #2d3e50;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    transition: color 0.3s;
}

.topics-list a:hover {
    color: #db2a4e;
}

.editorial-content {
    background-color: #fafafa;
    padding: 40px;
    border-radius: 8px;
}

.editorial-content h2 {
    font-size: 32px;
    color: #2d3e50;
    margin-bottom: 25px;
}

.editorial-content p {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

.editorial-content img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin: 30px 0;
}

.image-caption {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #888;
    font-style: italic;
    text-align: center;
    margin-top: -20px;
    margin-bottom: 30px;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h3 {
    font-size: 24px;
    color: #2d3e50;
    margin-bottom: 15px;
    font-family: Arial, Helvetica, sans-serif;
}

.content-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

footer {
    background-color: #2d3e50;
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.footer-about p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #c0c0c0;
}

.footer-section h5 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #c0c0c0;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.contact-info {
    margin-top: 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #c0c0c0;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid #4a5a6a;
    padding-top: 30px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #888;
}

.page-content {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-content h1 {
    font-size: 42px;
    color: #2d3e50;
    margin-bottom: 40px;
    line-height: 1.2;
}

.page-content p {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-content h2 {
    font-size: 28px;
    color: #2d3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }

    .header-top {
        flex-direction: column;
        gap: 20px;
    }
}
