* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: linear-gradient(135deg, #3e2723 0%, #5d4037 30%, #8d6e63 60%, #d7ccc8 100%);
            color: #3e2723;
            line-height: 1.8;
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background: rgba(255, 248, 240, 0.92);
            box-shadow: 0 8px 40px rgba(62, 39, 35, 0.4);
            border-radius: 12px;
            backdrop-filter: blur(2px);
        }
        header {
            background: linear-gradient(145deg, #4e342e 0%, #3e2723 100%);
            color: #efebe9;
            padding: 30px 20px;
            border-radius: 12px 12px 0 0;
            text-align: center;
            border-bottom: 4px solid #a1887f;
        }
        h1 {
            font-size: 2.6rem;
            letter-spacing: 2px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
            background: linear-gradient(90deg, #d7ccc8, #efebe9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 18px;
            margin: 25px 0 10px;
            padding: 10px 0;
            border-top: 1px solid #8d6e63;
            border-bottom: 1px solid #8d6e63;
        }
        .nav-links a {
            color: #efebe9;
            text-decoration: none;
            font-weight: bold;
            padding: 8px 20px;
            border-radius: 30px;
            background: rgba(161, 136, 127, 0.25);
            transition: all 0.3s ease;
            font-size: 1rem;
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            background: #a1887f;
            color: #2c1a16;
            border-color: #d7ccc8;
            transform: translateY(-2px);
        }
        section {
            margin: 40px 0;
            padding: 30px;
            background: rgba(255, 248, 240, 0.7);
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(62, 39, 35, 0.1);
            border-left: 6px solid #8d6e63;
        }
        h2 {
            font-size: 2rem;
            color: #3e2723;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid #a1887f;
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            color: #4e342e;
            margin: 20px 0 15px;
        }
        .grid-2, .grid-3 {
            display: grid;
            gap: 30px;
        }
        .grid-2 { grid-template-columns: 1fr 1fr; }
        .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
        .card {
            background: #fff8f0;
            padding: 25px;
            border-radius: 16px;
            box-shadow: 0 6px 18px rgba(62, 39, 35, 0.12);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #d7ccc8;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(62, 39, 35, 0.2);
        }
        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 15px;
            filter: sepia(0.15);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: bold;
            color: #4e342e;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 1rem;
            color: #6d4c41;
            letter-spacing: 1px;
        }
        .news-item {
            padding: 20px;
            margin-bottom: 20px;
            background: #fff8f0;
            border-radius: 12px;
            border-left: 4px solid #8d6e63;
        }
        .news-item .date {
            font-size: 0.9rem;
            color: #8d6e63;
            margin-bottom: 6px;
            font-style: italic;
        }
        .news-item h3 {
            margin-top: 0;
        }
        .faq-item {
            margin-bottom: 25px;
            padding: 20px;
            background: #fff8f0;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(62,39,35,0.08);
        }
        .faq-item h3 {
            color: #3e2723;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        .faq-item p {
            color: #4e342e;
        }
        .geo-text {
            font-size: 1.1rem;
            padding: 20px;
            background: rgba(215, 204, 200, 0.3);
            border-radius: 12px;
            border: 1px dashed #a1887f;
        }
        .btn {
            display: inline-block;
            padding: 14px 38px;
            background: linear-gradient(145deg, #4e342e, #3e2723);
            color: #efebe9;
            text-decoration: none;
            border-radius: 40px;
            font-weight: bold;
            transition: all 0.3s;
            border: 1px solid #a1887f;
            font-size: 1.1rem;
        }
        .btn:hover {
            background: #6d4c41;
            transform: scale(1.04);
            box-shadow: 0 6px 20px rgba(62,39,35,0.3);
        }
        footer {
            margin-top: 50px;
            padding: 30px 20px;
            background: linear-gradient(145deg, #3e2723, #4e342e);
            color: #d7ccc8;
            border-radius: 0 0 12px 12px;
            text-align: center;
            font-size: 0.95rem;
        }
        footer a {
            color: #d7ccc8;
            text-decoration: underline;
            transition: color 0.3s;
        }
        footer a:hover {
            color: #efebe9;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
        }
        .footer-links a {
            padding: 4px 12px;
            border-radius: 20px;
            background: rgba(215,204,200,0.15);
        }
        @media (max-width: 768px) {
            .grid-2, .grid-3 { grid-template-columns: 1fr; }
            h1 { font-size: 1.8rem; }
            section { padding: 20px; }
        }