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

body {
    font-family: 'Courier New', monospace;
    background: #f5f1e8;
    color: #1a1a1a;
    line-height: 1.6;
}

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

nav {
    background: #ebe5d8;
    border-bottom: 2px solid #c44536;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 20px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.nav-links a {
    color: #c44536;
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid #c44536;
    background: #fff;
    transition: 0.3s ease;
    font-size: 0.9rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.nav-links a:hover {
    background: #c44536;
    color: #fff;
    box-shadow: 0 4px 8px rgba(196,69,54,0.2);
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #c44536;
    padding: 40px 20px 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.08);
    letter-spacing: 2px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.card {
    background: #fff;
    border: 2px solid #c44536;
    padding: 20px;
    image-rendering: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05), 0 20px 40px -10px rgba(0,0,0,0.12);
    border-radius: 16px;
}

.card img {
    width: 100%;
    height: auto;
    border: 1px solid #c44536;
    margin-bottom: 12px;
    border-radius: 8px;
}

.card h3 {
    color: #c44536;
    margin-bottom: 8px;
}

.card p {
    font-size: 0.95rem;
}

.section-title {
    font-size: 1.8rem;
    color: #c44536;
    border-left: 6px solid #c44536;
    padding-left: 15px;
    margin: 40px 0 20px;
    text-transform: uppercase;
}

.faq-item {
    background: #fff;
    border: 1px solid #c44536;
    padding: 18px;
    margin-bottom: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.03), 0 12px 24px -8px rgba(0,0,0,0.08);
}

.faq-item h4 {
    color: #c44536;
    cursor: pointer;
}

.faq-item p {
    margin-top: 10px;
}

.news-card {
    background: #fff;
    border: 2px solid #c44536;
    padding: 18px;
    margin-bottom: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05), 0 20px 40px -10px rgba(0,0,0,0.12);
}

.news-card .date {
    color: #777;
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.news-card h3 {
    color: #c44536;
    margin-bottom: 8px;
}

footer {
    background: #ebe5d8;
    border-top: 3px solid #c44536;
    padding: 30px 20px;
    margin-top: 50px;
    text-align: center;
    font-size: 0.85rem;
    color: #1a1a1a;
}

footer a {
    color: #c44536;
    text-decoration: none;
    margin: 0 6px;
}

footer .friend-links {
    margin: 20px 0;
}

footer .friend-links a {
    margin: 0 8px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.stat-item {
    background: #fff;
    border: 2px solid #c44536;
    padding: 20px 30px;
    text-align: center;
    min-width: 160px;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05), 0 20px 40px -10px rgba(0,0,0,0.12);
}

.stat-item .num {
    font-size: 2.2rem;
    color: #c44536;
    font-weight: bold;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.partner-logos span {
    background: #fff;
    border: 1px solid #c44536;
    padding: 10px 18px;
    color: #c44536;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

@media (max-width: 640px) {
    h1 { font-size: 1.8rem; }
    .nav-links { gap: 10px; }
}