* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background-color: #f9f2e0;
            color: #3e2c1b;
            line-height: 1.7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #2d6a4f 0%, #8b6b3a 100%);
            color: #f5edd6;
            padding: 20px 0;
            border-bottom: 5px solid #c49a6c;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        header .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            letter-spacing: 3px;
            text-shadow: 2px 2px 0 #3a2a1a;
            color: #f3d9a0;
        }
        .logo span {
            color: #e8c382;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .nav-links a {
            color: #f5edd6;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(2px);
            border: 1px solid #c49a6c;
            font-size: 0.95rem;
            transition: all 0.3s;
            letter-spacing: 0.5px;
        }
        .nav-links a:hover {
            background: #c49a6c;
            color: #1e3a2b;
            border-color: #f3d9a0;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin: 50px 0 20px;
            color: #2d6a4f;
            text-shadow: 3px 3px 0 #dcc9a0;
            letter-spacing: 2px;
            word-break: break-word;
        }
        .geo-section {
            background: #ede3ca;
            padding: 30px 25px;
            border-radius: 30px 10px 30px 10px;
            border-left: 8px solid #2d6a4f;
            margin: 30px 0;
            box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
            font-size: 1.02rem;
        }
        .geo-section p {
            margin-bottom: 15px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 6px 16px rgba(0,0,0,0.1);
            border: 1px solid #cfb587;
        }
        .grid-2col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        .card {
            background: #fcf6e7;
            padding: 25px 20px;
            border-radius: 25px 8px 25px 8px;
            border: 1px solid #dcc9a0;
            box-shadow: 6px 6px 0 #b4946a;
            transition: all 0.2s;
        }
        .card h2 {
            color: #2d6a4f;
            border-bottom: 2px dashed #c49a6c;
            padding-bottom: 8px;
            margin-bottom: 16px;
            font-size: 1.8rem;
        }
        .card img {
            width: 100%;
            margin-bottom: 12px;
            border-radius: 12px;
        }
        .card ul, .card ol {
            padding-left: 20px;
            margin-top: 10px;
        }
        .card li {
            margin-bottom: 8px;
        }
        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 20px;
            margin: 30px 0;
        }
        .stat-item {
            background: #2d6a4f;
            color: #f3edd0;
            padding: 20px;
            border-radius: 50% 20% 50% 20%;
            min-width: 140px;
            text-align: center;
            box-shadow: 4px 4px 0 #6b4f2a;
        }
        .stat-item h3 {
            font-size: 2.4rem;
            color: #f3d9a0;
        }
        .faq-item {
            background: #f5ecda;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 20px 4px 20px 4px;
            border-left: 6px solid #2d6a4f;
        }
        .faq-item h3 {
            color: #1e4d38;
            font-size: 1.4rem;
        }
        .news-list article {
            background: #fcf6e7;
            padding: 20px;
            margin-bottom: 30px;
            border-radius: 20px 6px 20px 6px;
            border: 1px solid #d4bc8a;
            box-shadow: 4px 4px 0 #b4946a;
        }
        .news-list article h3 {
            color: #2d6a4f;
            font-size: 1.6rem;
        }
        .news-list article .date {
            color: #7a5c36;
            font-style: italic;
            margin: 5px 0 10px;
            display: block;
            font-size: 0.9rem;
        }
        .news-list article p {
            margin-bottom: 10px;
        }
        .cta-box {
            background: #2d6a4f;
            color: #f9f2e0;
            padding: 40px 30px;
            text-align: center;
            border-radius: 60px 10px 60px 10px;
            margin: 40px 0;
        }
        .cta-box h2 {
            font-size: 2rem;
        }
        .cta-box a {
            display: inline-block;
            background: #c49a6c;
            color: #1e3a2b;
            padding: 14px 40px;
            border-radius: 50px;
            font-weight: bold;
            text-decoration: none;
            margin-top: 15px;
            border: 2px solid #f3d9a0;
            transition: 0.2s;
        }
        .cta-box a:hover {
            background: #f3d9a0;
            border-color: #2d6a4f;
        }
        .testimonial-item {
            background: #f5ecda;
            padding: 20px;
            border-radius: 30px 6px 30px 6px;
            font-style: italic;
            border: 1px solid #c49a6c;
            margin-bottom: 20px;
        }
        .testimonial-item strong {
            color: #2d6a4f;
        }
        footer {
            background: #2d6a4f;
            color: #f0e5ca;
            padding: 40px 0 20px;
            margin-top: 60px;
            border-top: 5px solid #c49a6c;
        }
        footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
        }
        footer .footer-links a {
            color: #f3d9a0;
            text-decoration: none;
            margin: 0 10px 10px 0;
            display: inline-block;
        }
        footer .footer-links a:hover {
            text-decoration: underline;
        }
        footer .copyright {
            text-align: center;
            width: 100%;
            margin-top: 30px;
            border-top: 1px solid #5f7a5a;
            padding-top: 20px;
            font-size: 0.9rem;
        }
        .friend-links {
            text-align: center;
            padding: 20px 0;
            background: #1e3a2b;
            margin-top: 20px;
        }
        .friend-links a {
            color: #e8c382;
            margin: 0 8px;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .grid-2col { grid-template-columns: 1fr; }
            .nav-links { margin-top: 10px; }
        }
        .badge {
            display: inline-block;
            background: #c49a6c;
            color: #1e3a2b;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: bold;
        }