* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
            background: #faf3e0;
            color: #3a2e20;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        a {
            color: #2d6a4f;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        a:hover {
            color: #b8860b;
            text-decoration: underline;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #2d6a4f;
            color: #fefae0;
            padding: 1rem 0;
            border-bottom: 5px solid #b8860b;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        header .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-area img {
            width: 48px;
            height: 48px;
            filter: sepia(0.3) brightness(0.95);
        }
        .logo-area h1 {
            font-size: 1.8rem;
            letter-spacing: 2px;
            font-weight: 600;
            color: #fefae0;
            text-shadow: 2px 2px 0 #3a2e20;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.25rem 1.5rem;
            background: rgba(255,255,240,0.1);
            padding: 0.6rem 1.2rem;
            border-radius: 40px;
            backdrop-filter: blur(1px);
        }
        .nav-links a {
            color: #fefae0;
            font-weight: 600;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            border-bottom-color: #b8860b;
            color: #ffe484;
        }
        section {
            background: #fffbf0;
            margin: 2rem auto;
            padding: 2rem 1.5rem;
            border-radius: 20px;
            box-shadow: 0 8px 20px rgba(45, 106, 79, 0.08);
            border: 1px solid #e6d7b8;
            position: relative;
        }
        section::before {
            content: '';
            position: absolute;
            top: -6px;
            left: 20px;
            right: 20px;
            height: 6px;
            background: linear-gradient(90deg, #2d6a4f, #b8860b);
            border-radius: 6px;
        }
        h2 {
            font-size: 2rem;
            color: #2d6a4f;
            border-left: 8px solid #b8860b;
            padding-left: 1rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        h3 {
            font-size: 1.4rem;
            color: #3a2e20;
            margin-bottom: 0.75rem;
        }
        .geo-highlight {
            background: #f5edd6;
            padding: 1.5rem;
            border-radius: 16px;
            font-size: 1.1rem;
            margin: 1rem 0 2rem 0;
            border-left: 6px solid #2d6a4f;
            line-height: 1.8;
        }
        .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: 1.8rem;
            margin: 1.5rem 0;
        }
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
        .grid-4 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
        .card {
            background: #fefcf5;
            border-radius: 20px;
            padding: 1.5rem 1.2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
            border: 1px solid #e6d7b8;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(45,106,79,0.1);
        }
        .card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 14px;
            margin-bottom: 0.8rem;
            filter: sepia(0.2) contrast(0.95);
            background: #e6d7b8;
        }
        .badge {
            display: inline-block;
            background: #2d6a4f;
            color: #fefae0;
            font-size: 0.75rem;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #2d6a4f;
            line-height: 1.2;
        }
        .faq-item {
            border-bottom: 1px dashed #dcc9a6;
            padding: 1.5rem 0;
        }
        .faq-item:last-child { border-bottom: none; }
        .faq-question {
            font-weight: 700;
            font-size: 1.2rem;
            color: #2d6a4f;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .faq-answer {
            margin-top: 0.8rem;
            padding-left: 1.8rem;
            color: #3a2e20;
        }
        .news-card {
            background: #fefcf5;
            border-radius: 20px;
            padding: 1.5rem;
            border: 1px solid #e6d7b8;
        }
        .news-card .date {
            font-size: 0.9rem;
            color: #8b7a62;
            display: block;
            margin-bottom: 0.4rem;
        }
        .news-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        .news-card p {
            font-size: 1rem;
            color: #4f3e2e;
        }
        .cta-box {
            background: linear-gradient(135deg, #2d6a4f 0%, #3d8b67 100%);
            color: #fefae0;
            text-align: center;
            padding: 3rem 2rem;
            border-radius: 40px;
        }
        .cta-box a {
            display: inline-block;
            background: #b8860b;
            color: #fefae0;
            font-weight: 700;
            padding: 0.8rem 2.2rem;
            border-radius: 60px;
            margin-top: 1.2rem;
            font-size: 1.2rem;
            border: 2px solid #fefae0;
        }
        footer {
            background: #2d6a4f;
            color: #e6d7b8;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 6px solid #b8860b;
        }
        footer a {
            color: #ffe484;
        }
        footer .links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        footer .meta {
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.9;
            line-height: 2;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem 1.8rem;
            background: #2a5e45;
            padding: 0.8rem 1rem;
            border-radius: 40px;
            margin: 1rem 0;
        }
        .friend-links a {
            color: #f5edd6;
        }
        hr {
            border: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #b8860b, transparent);
            margin: 1.5rem 0;
        }
        @media (max-width: 768px) {
            .logo-area h1 { font-size: 1.4rem; }
            .nav-links { gap: 0.2rem 0.8rem; padding: 0.4rem 1rem; }
            section { padding: 1.5rem 1rem; }
        }