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

body {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    background: #faf8f6;
    color: #2c2c2c;
    line-height: 1.5;
}

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

header {
    background: #fff;
    border-bottom: 1px solid #eae6e2;
    padding: 20px 0;
}

.logo h1 {
    font-size: 28px;
    font-weight: normal;
    letter-spacing: 2px;
}

.logo h1 a {
    color: #2c2c2c;
    text-decoration: none;
}

.logo p {
    color: #b8a9a1;
    font-size: 12px;
    margin-top: 5px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: #b8a9a1;
}

.hero {
    background: #e8e4df;
    text-align: center;
    padding: 60px 0;
    margin-bottom: 40px;
}

.hero h2 {
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 15px;
}

.hero p {
    color: #6b6b6b;
}

.news-section {
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 2px solid #eae6e2;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.section-header h2 {
    font-size: 22px;
    font-weight: normal;
}

.section-header a {
    color: #b8a9a1;
    text-decoration: none;
    font-size: 13px;
}

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

.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s;
}

.news-card:hover {
    transform: translateY(-3px);
}

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

.news-card-content {
    padding: 16px;
}

.news-card .category {
    color: #b8a9a1;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card h3 {
    font-size: 18px;
    margin: 10px 0;
    font-weight: normal;
}

.news-card h3 a {
    color: #2c2c2c;
    text-decoration: none;
}

.news-card .date {
    color: #bbb;
    font-size: 12px;
}

footer {
    background: #e8e4df;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
    font-size: 13px;
    color: #6b6b6b;
}

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