* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
    background-color: #fcfcfc;
    color: #1a1a1a;
    line-height: 1.6;
}

.navbar {
    background: #ffffff;
    border-bottom: 2px solid #1a1a1a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.brand {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    color: #1a1a1a;
}

.brand span {
    color: #e63946;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 700;
    margin: 0 15px;
    font-size: 14px;
    text-transform: uppercase;
}

.search-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-weight: 700;
    cursor: pointer;
}

.main-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.featured-article {
    background: #1a1a1a;
    height: 500px;
    border-radius: 4px;
    display: flex;
    align-items: flex-end;
    padding: 60px;
    margin-bottom: 40px;
    color: #fff;
}

.article-overlay {
    max-width: 600px;
}

.tag {
    background: #e63946;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.featured-article h1 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.read-more {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
}

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

.news-card {
    background: #fff;
    border: 1px solid #eee;
}

.card-image {
    background: #f0f0f0;
    height: 200px;
}

.card-body {
    padding: 20px;
}

.category {
    color: #e63946;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.card-body h2 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-body p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.card-footer a {
    color: #1a1a1a;
    text-decoration: none;
}

.comparison-block {
    margin-top: 60px;
    background: #fff;
    padding: 40px;
    border: 3px solid #1a1a1a;
}

.comparison-block h2 {
    margin-bottom: 30px;
    text-transform: uppercase;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding: 15px;
    border-bottom: 2px solid #1a1a1a;
    font-size: 14px;
    text-transform: uppercase;
}

td {
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    font-weight: 500;
}

.table-btn {
    background: #e63946;
    color: #fff;
    padding: 8px 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    border-radius: 2px;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
}

.footer-socials a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-size: 14px;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .featured-article {
        padding: 30px;
        height: auto;
    }
    .featured-article h1 {
        font-size: 28px;
    }
    .nav-links {
        display: none;
    }
}