* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: #f5efe6;
            color: #2c2c2c;
            line-height: 1.8;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a3a1a 0%, #7c5c3a 100%);
            color: #f5efe6;
            padding: 40px 0 30px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        h1 {
            font-size: 2.6rem;
            letter-spacing: 4px;
            font-weight: 700;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
            margin-bottom: 10px;
        }
        .nav-bar {
            background: #2d4a2d;
            border-top: 1px solid #8b7a5a;
            border-bottom: 1px solid #8b7a5a;
            padding: 12px 0;
            margin-top: 20px;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px 25px;
        }
        .nav-links a {
            color: #f5efe6;
            text-decoration: none;
            font-size: 1.05rem;
            padding: 6px 14px;
            border-radius: 30px;
            background: rgba(255,255,255,0.08);
            transition: all 0.3s;
            letter-spacing: 1px;
        }
        .nav-links a:hover {
            background: #8b7a5a;
            color: #1a3a1a;
        }
        section {
            margin: 50px 0;
        }
        h2 {
            font-size: 2rem;
            color: #1a3a1a;
            border-left: 6px solid #7c5c3a;
            padding-left: 18px;
            margin-bottom: 30px;
            font-weight: 600;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .card {
            background: #fffbf5;
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            border: 1px solid #d9cdb0;
            background-image: repeating-linear-gradient(45deg, rgba(139,122,90,0.03) 0px, rgba(139,122,90,0.03) 8px, transparent 8px, transparent 16px);
            transition: transform 0.2s;
        }
        .card:hover {
            transform: translateY(-5px);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 15px;
            background: #e8e0d0;
        }
        .btn {
            display: inline-block;
            background: #1a3a1a;
            color: #f5efe6;
            padding: 12px 30px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 1px;
            transition: 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: #7c5c3a;
        }
        .flex-row {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: center;
        }
        .flex-row .text {
            flex: 1 1 55%;
        }
        .flex-row .img-box {
            flex: 1 1 40%;
        }
        .img-box img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 25px;
            text-align: center;
        }
        .stat-item {
            background: #fffbf5;
            border-radius: 20px;
            padding: 30px 15px;
            border: 1px solid #d9cdb0;
            background-image: repeating-linear-gradient(45deg, rgba(139,122,90,0.03) 0px, rgba(139,122,90,0.03) 8px, transparent 8px, transparent 16px);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: #1a3a1a;
        }
        .stat-label {
            color: #7c5c3a;
            font-size: 1rem;
            margin-top: 8px;
        }
        .faq-item {
            background: #fffbf5;
            border: 1px solid #d9cdb0;
            border-radius: 14px;
            margin-bottom: 16px;
            padding: 20px 25px;
            cursor: pointer;
            background-image: repeating-linear-gradient(45deg, rgba(139,122,90,0.03) 0px, rgba(139,122,90,0.03) 8px, transparent 8px, transparent 16px);
        }
        .faq-question {
            font-weight: 600;
            color: #1a3a1a;
            font-size: 1.1rem;
        }
        .faq-answer {
            margin-top: 12px;
            color: #3d3d3d;
            line-height: 1.9;
        }
        .news-item {
            background: #fffbf5;
            border-radius: 16px;
            padding: 20px 25px;
            margin-bottom: 20px;
            border-left: 6px solid #7c5c3a;
            background-image: repeating-linear-gradient(45deg, rgba(139,122,90,0.03) 0px, rgba(139,122,90,0.03) 8px, transparent 8px, transparent 16px);
        }
        .news-date {
            color: #7c5c3a;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 6px;
        }
        .news-title {
            font-size: 1.3rem;
            color: #1a3a1a;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .news-summary {
            color: #4a4a4a;
        }
        .partner-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .partner-item {
            background: #fffbf5;
            border: 1px solid #d9cdb0;
            border-radius: 40px;
            padding: 14px 30px;
            font-weight: 500;
            color: #1a3a1a;
        }
        footer {
            background: #1a3a1a;
            color: #d9cdb0;
            padding: 40px 0 30px;
            margin-top: 60px;
            text-align: center;
            font-size: 0.95rem;
        }
        footer a {
            color: #cbb88a;
            text-decoration: none;
        }
        footer a:hover {
            color: #f5efe6;
            text-decoration: underline;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 20px;
            margin: 20px 0 15px;
        }
        .footer-links a {
            padding: 4px 8px;
        }
        .footer-info {
            line-height: 2;
        }
        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; }
            .nav-links a { font-size: 0.9rem; padding: 5px 10px; }
        }