* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: linear-gradient(145deg, #f5f0e8 0%, #e8ddd0 100%);
            color: #3e2723;
            line-height: 1.7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #3e2723, #5d4037);
            padding: 20px 0;
            box-shadow: 0 8px 24px rgba(62, 39, 35, 0.3);
            border-bottom: 3px solid #d7ccc8;
        }
        header h1 {
            color: #d7ccc8;
            font-size: 2.4rem;
            text-align: center;
            font-weight: 700;
            letter-spacing: 2px;
            text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
            padding: 0 20px;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px 30px;
            margin-top: 18px;
            padding: 0 20px;
        }
        .nav-links a {
            color: #d7ccc8;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 30px;
            background: rgba(215, 204, 200, 0.12);
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            background: #d7ccc8;
            color: #3e2723;
            border-color: #3e2723;
        }
        .hero {
            background: linear-gradient(135deg, #4e342e, #6d4c41);
            padding: 70px 20px;
            text-align: center;
            color: #f5f0e8;
            border-radius: 0 0 40px 40px;
            margin-bottom: 50px;
            box-shadow: 0 12px 30px rgba(62,39,35,0.2);
        }
        .hero h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            letter-spacing: 4px;
            text-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .hero .btn {
            display: inline-block;
            background: #d7ccc8;
            color: #3e2723;
            padding: 14px 48px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: 0.3s;
            border: 2px solid #d7ccc8;
        }
        .hero .btn:hover {
            background: transparent;
            color: #d7ccc8;
        }
        section {
            margin-bottom: 60px;
            padding: 40px;
            background: rgba(255,255,255,0.6);
            backdrop-filter: blur(4px);
            border-radius: 30px;
            box-shadow: 0 8px 28px rgba(62,39,35,0.08);
            border: 1px solid rgba(215,204,200,0.3);
        }
        section h2 {
            font-size: 2rem;
            color: #3e2723;
            margin-bottom: 30px;
            border-left: 8px solid #3e2723;
            padding-left: 20px;
            letter-spacing: 1px;
        }
        .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: 30px;
        }
        .grid-2 { grid-template-columns: repeat(2, 1fr); }
        .grid-3 { grid-template-columns: repeat(3, 1fr); }
        .grid-4 { grid-template-columns: repeat(4, 1fr); }
        .card {
            background: linear-gradient(145deg, #faf5f0, #efe7df);
            padding: 25px 20px;
            border-radius: 20px;
            box-shadow: 0 6px 16px rgba(62,39,35,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s;
            border: 1px solid #d7ccc8;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 30px rgba(62,39,35,0.15);
        }
        .card img {
            width: 100%;
            height: auto;
            border-radius: 14px;
            margin-bottom: 18px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .card h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            color: #4e342e;
        }
        .card p {
            font-size: 0.95rem;
            color: #5d4037;
        }
        .faq-item {
            background: #f5f0e8;
            padding: 22px 26px;
            border-radius: 20px;
            margin-bottom: 20px;
            border-left: 6px solid #3e2723;
        }
        .faq-item h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: #3e2723;
        }
        .faq-item p {
            color: #4e342e;
            font-size: 0.98rem;
        }
        .news-article {
            background: #faf5f0;
            padding: 24px;
            border-radius: 20px;
            margin-bottom: 24px;
            border: 1px solid #d7ccc8;
        }
        .news-article .date {
            font-size: 0.85rem;
            color: #8d6e63;
            display: inline-block;
            background: #d7ccc8;
            padding: 4px 14px;
            border-radius: 30px;
            margin-bottom: 12px;
        }
        .news-article h3 {
            font-size: 1.4rem;
            color: #3e2723;
            margin-bottom: 10px;
        }
        .news-article p {
            color: #4e342e;
        }
        footer {
            background: #3e2723;
            color: #d7ccc8;
            padding: 40px 20px;
            text-align: center;
            border-top: 4px solid #d7ccc8;
            margin-top: 60px;
        }
        footer a {
            color: #d7ccc8;
            text-decoration: none;
            margin: 0 12px;
            transition: 0.3s;
        }
        footer a:hover {
            color: #fff;
            text-decoration: underline;
        }
        footer .footer-links {
            margin: 20px 0;
            font-size: 0.95rem;
        }
        footer .friendship-links {
            margin: 20px 0;
            font-size: 0.9rem;
        }
        footer .friendship-links a {
            margin: 0 8px;
        }
        .geo-box {
            background: #efe7df;
            padding: 30px;
            border-radius: 24px;
            font-size: 1.05rem;
            color: #3e2723;
            border: 1px solid #d7ccc8;
        }
        .stats-number {
            font-size: 2.6rem;
            font-weight: 700;
            color: #3e2723;
            line-height: 1.2;
        }
        .stats-label {
            font-size: 1rem;
            color: #6d4c41;
        }
        .cta-section {
            background: linear-gradient(135deg, #4e342e, #6d4c41);
            color: #f5f0e8;
            text-align: center;
            padding: 60px 40px;
            border-radius: 40px;
        }
        .cta-section h2 {
            color: #f5f0e8;
            border-left: none;
        }
        .cta-section .btn {
            background: #d7ccc8;
            color: #3e2723;
            padding: 14px 48px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            display: inline-block;
            margin-top: 20px;
            transition: 0.3s;
        }
        .cta-section .btn:hover {
            background: #fff;
        }
        @media (max-width: 768px) {
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
            header h1 { font-size: 1.8rem; }
            .hero h2 { font-size: 2rem; }
            section { padding: 24px; }
        }