* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background-color: #f9f4e8;
            color: #3b2a1c;
            line-height: 1.7;
            background-image: repeating-linear-gradient(45deg, rgba(45, 106, 79, 0.03) 0px, rgba(45, 106, 79, 0.03) 2px, transparent 2px, transparent 8px);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #2d6a4f, #5c8a6c);
            padding: 20px 0;
            border-bottom: 6px solid #b98a4b;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        header h1 {
            color: #f5e6c8;
            font-size: 2.2rem;
            text-align: center;
            letter-spacing: 3px;
            text-shadow: 3px 3px 0 #1b4d3a;
            font-weight: normal;
            margin-bottom: 10px;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-top: 10px;
        }
        .nav-links a {
            color: #f9efd8;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 6px 16px;
            border: 1px solid rgba(255,215,140,0.4);
            border-radius: 30px;
            background: rgba(27, 77, 58, 0.5);
            transition: 0.3s;
            letter-spacing: 1px;
        }
        .nav-links a:hover {
            background: #b98a4b;
            color: #2d2a1c;
            border-color: #b98a4b;
        }
        .hero-section {
            background: linear-gradient(180deg, #3b2a1c 0%, #2d6a4f 100%);
            padding: 60px 20px;
            text-align: center;
            border-bottom: 4px solid #b98a4b;
            position: relative;
        }
        .hero-section h2 {
            color: #f5e6c8;
            font-size: 2rem;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }
        .hero-section p {
            color: #e3d5b8;
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        .hero-btn {
            background: #b98a4b;
            color: #2d2a1c;
            padding: 14px 40px;
            border: none;
            border-radius: 40px;
            font-size: 1.2rem;
            cursor: pointer;
            font-weight: bold;
            transition: 0.3s;
            box-shadow: 0 6px 0 #7d5e31;
            text-decoration: none;
            display: inline-block;
        }
        .hero-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 0 #7d5e31;
        }
        .geo-intro {
            background: #f0e6d8;
            padding: 50px 20px;
            border-bottom: 1px solid #d4c5a6;
        }
        .geo-intro h2 {
            color: #2d6a4f;
            font-size: 1.8rem;
            margin-bottom: 20px;
            border-left: 6px solid #b98a4b;
            padding-left: 20px;
        }
        .geo-intro p {
            font-size: 1.05rem;
            color: #3b2a1c;
            max-width: 1000px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            padding: 40px 0;
        }
        .card {
            background: #faf3e6;
            border: 1px solid #dcc9ae;
            border-radius: 12px;
            padding: 30px 25px;
            box-shadow: 6px 6px 0 #c9b696;
            transition: 0.3s;
        }
        .card:hover {
            transform: translate(-3px, -3px);
            box-shadow: 9px 9px 0 #b98a4b;
        }
        .card h3 {
            color: #2d6a4f;
            font-size: 1.5rem;
            margin-bottom: 15px;
            border-bottom: 2px dashed #b98a4b;
            padding-bottom: 8px;
        }
        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 20px;
            padding: 40px 0;
        }
        .stat-item {
            background: #2d6a4f;
            color: #f5e6c8;
            padding: 30px 20px;
            border-radius: 12px;
            text-align: center;
            min-width: 160px;
            flex: 1;
            border: 2px solid #b98a4b;
        }
        .stat-item .number {
            font-size: 2.8rem;
            font-weight: bold;
            color: #f7d98b;
        }
        .faq-item {
            background: #faf3e6;
            border: 1px solid #dcc9ae;
            border-radius: 8px;
            margin-bottom: 20px;
            padding: 20px 25px;
            box-shadow: 3px 3px 0 #c9b696;
        }
        .faq-item h3 {
            color: #2d6a4f;
            font-size: 1.3rem;
            margin-bottom: 10px;
            cursor: pointer;
        }
        .faq-item p {
            color: #4a3a2a;
        }
        .news-card {
            background: #faf3e6;
            border: 1px solid #dcc9ae;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 25px;
            box-shadow: 4px 4px 0 #c9b696;
        }
        .news-card .date {
            color: #b98a4b;
            font-size: 0.9rem;
            font-weight: bold;
            margin-bottom: 6px;
        }
        .news-card h3 {
            color: #2d6a4f;
            font-size: 1.4rem;
            margin-bottom: 10px;
        }
        .news-card p {
            color: #3b2a1c;
        }
        .image-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            padding: 30px 0;
        }
        .image-showcase img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            border: 3px solid #b98a4b;
            filter: sepia(0.2);
            transition: 0.4s;
        }
        .image-showcase img:hover {
            filter: sepia(0);
            transform: scale(1.02);
        }
        footer {
            background: #2d2a1c;
            color: #d4c5a6;
            padding: 40px 20px 20px;
            margin-top: 50px;
            border-top: 6px solid #b98a4b;
        }
        footer .footer-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 20px;
        }
        footer a {
            color: #f7d98b;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            padding: 15px 0;
            border-top: 1px solid #4a3f2e;
            margin-top: 15px;
        }
        .footer-bottom {
            text-align: center;
            font-size: 0.9rem;
            color: #a6957a;
        }
        @media (max-width: 768px) {
            header h1 { font-size: 1.6rem; }
            .nav-links { gap: 12px; }
            .nav-links a { font-size: 0.95rem; padding: 5px 12px; }
        }