* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: linear-gradient(145deg, #f5ebe0 0%, #d7ccc8 100%);
            color: #3e2723;
            line-height: 1.7;
            padding: 0 20px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(255, 248, 240, 0.5);
            backdrop-filter: blur(2px);
            border-radius: 32px;
            box-shadow: 0 20px 40px rgba(62, 39, 35, 0.25);
            padding: 20px 30px 40px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0 10px;
            border-bottom: 3px solid #5d4037;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .logo-area h1 {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #3e2723, #5d4037);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 18px;
        }
        .nav-links a {
            text-decoration: none;
            color: #4e342e;
            font-weight: 600;
            padding: 8px 14px;
            border-radius: 40px;
            background: #efebe9;
            transition: all 0.2s ease;
            font-size: 0.95rem;
            box-shadow: 0 2px 6px rgba(62,39,35,0.1);
        }
        .nav-links a:hover {
            background: #5d4037;
            color: #fff5ee;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(62,39,35,0.3);
        }
        .hero {
            margin: 40px 0;
            padding: 40px 30px;
            background: linear-gradient(145deg, #3e2723, #6d4c41);
            border-radius: 40px;
            color: #f5ebe0;
            text-align: center;
            box-shadow: 0 12px 30px rgba(62,39,35,0.4);
            position: relative;
            overflow: hidden;
        }
        .hero h2 {
            font-size: 2.6rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 0 #2c1b18;
        }
        .hero p {
            max-width: 700px;
            margin: 0 auto 25px;
            font-size: 1.2rem;
        }
        .hero img {
            margin-top: 20px;
            border-radius: 24px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.5);
            max-width: 100%;
            height: auto;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }
        .geo-section {
            background: #efebe9;
            border-radius: 28px;
            padding: 30px 28px;
            margin: 30px 0;
            box-shadow: inset 0 1px 6px rgba(62,39,35,0.08);
        }
        .geo-section h2 {
            font-size: 1.8rem;
            color: #3e2723;
            margin-bottom: 18px;
            border-left: 10px solid #8d6e63;
            padding-left: 20px;
        }
        .geo-section p {
            font-size: 1.05rem;
            text-indent: 2em;
        }
        .section-card {
            background: #fff8f0;
            border-radius: 28px;
            padding: 30px 28px;
            margin: 30px 0;
            box-shadow: 0 8px 18px rgba(62,39,35,0.12);
            transition: 0.2s;
        }
        .section-card h2 {
            font-size: 1.8rem;
            color: #3e2723;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .grid-2, .grid-3 {
            display: grid;
            gap: 24px;
        }
        .grid-2 {
            grid-template-columns: 1fr 1fr;
        }
        .grid-3 {
            grid-template-columns: 1fr 1fr 1fr;
        }
        .card-item {
            background: #f5ebe0;
            border-radius: 24px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(62,39,35,0.08);
            transition: 0.2s;
        }
        .card-item img {
            border-radius: 16px;
            width: 100%;
            height: 180px;
            object-fit: cover;
            margin-bottom: 12px;
        }
        .card-item h3 {
            font-size: 1.2rem;
            margin: 8px 0;
        }
        .card-item p {
            color: #4e342e;
        }
        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            text-align: center;
            gap: 20px;
        }
        .stat-item {
            min-width: 140px;
            background: #d7ccc8;
            padding: 20px 15px;
            border-radius: 60px;
            box-shadow: inset 0 2px 6px rgba(62,39,35,0.15);
        }
        .stat-item .number {
            font-size: 2.6rem;
            font-weight: 700;
            color: #3e2723;
        }
        .faq-item {
            background: #efebe9;
            border-radius: 20px;
            padding: 18px 22px;
            margin-bottom: 16px;
        }
        .faq-item h3 {
            cursor: default;
            color: #4e342e;
            margin-bottom: 8px;
        }
        .news-list article {
            padding: 18px 0;
            border-bottom: 1px dashed #a1887f;
        }
        .news-list article:last-child {
            border-bottom: none;
        }
        .news-list .date {
            font-size: 0.85rem;
            color: #6d4c41;
            background: #d7ccc8;
            display: inline-block;
            padding: 2px 12px;
            border-radius: 30px;
            margin-right: 12px;
        }
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            justify-content: center;
        }
        .partner-logos a {
            background: #f5ebe0;
            padding: 8px 18px;
            border-radius: 40px;
            text-decoration: none;
            color: #3e2723;
            font-weight: 600;
            box-shadow: 0 2px 6px rgba(62,39,35,0.1);
        }
        .partner-logos a:hover {
            background: #5d4037;
            color: #fff5ee;
        }
        .cta-box {
            background: linear-gradient(145deg, #5d4037, #3e2723);
            border-radius: 40px;
            padding: 40px 30px;
            text-align: center;
            color: #f5ebe0;
            margin: 30px 0;
        }
        .cta-box a {
            background: #d7ccc8;
            color: #3e2723;
            padding: 12px 40px;
            border-radius: 60px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            margin-top: 15px;
            transition: 0.2s;
        }
        .cta-box a:hover {
            background: #fff;
            transform: scale(1.02);
        }
        footer {
            margin-top: 40px;
            padding: 30px 20px 20px;
            border-top: 3px solid #5d4037;
            font-size: 0.95rem;
            color: #4e342e;
        }
        footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            justify-content: center;
            margin-bottom: 18px;
        }
        footer .footer-links a {
            color: #3e2723;
            text-decoration: none;
            border-bottom: 1px dotted #8d6e63;
        }
        footer .footer-links a:hover {
            color: #1e0e0a;
        }
        footer .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 16px;
            justify-content: center;
            margin: 16px 0;
        }
        footer .friend-links a {
            color: #3e2723;
            text-decoration: none;
            background: #efebe9;
            padding: 4px 14px;
            border-radius: 30px;
        }
        footer .copy {
            text-align: center;
            margin-top: 14px;
            font-size: 0.85rem;
            color: #5d4037;
        }
        @media (max-width: 768px) {
            .grid-2, .grid-3 {
                grid-template-columns: 1fr;
            }
            header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            .nav-links {
                width: 100%;
                justify-content: center;
            }
        }