* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: linear-gradient(145deg, #3e2723 0%, #5d4037 40%, #8d6e63 70%, #d7ccc8 100%);
            color: #2c1a12;
            line-height: 1.7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 30px;
            background: rgba(255,248,240,0.92);
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
            border-radius: 24px;
            backdrop-filter: blur(2px);
        }
        header {
            border-bottom: 3px solid #6d4c41;
            padding-bottom: 15px;
            margin-bottom: 25px;
        }
        h1 {
            font-size: 2.1rem;
            color: #3e2723;
            text-shadow: 2px 2px 0 #d7ccc8;
            letter-spacing: 2px;
            margin-bottom: 5px;
            font-weight: 700;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 25px;
            justify-content: center;
            padding: 12px 0;
            background: #5d4037;
            border-radius: 40px;
            margin: 15px 0 20px;
            box-shadow: inset 0 2px 6px rgba(0,0,0,0.3);
        }
        .nav-links a {
            color: #efebe9;
            text-decoration: none;
            font-weight: bold;
            font-size: 1rem;
            padding: 6px 14px;
            border-radius: 20px;
            transition: 0.3s;
            background: rgba(255,255,240,0.08);
        }
        .nav-links a:hover {
            background: #d7ccc8;
            color: #3e2723;
            transform: scale(1.05);
        }
        .hero-section {
            background: linear-gradient(135deg, #5d4037, #8d6e63);
            padding: 40px 30px;
            border-radius: 30px;
            margin-bottom: 35px;
            color: #f5f0eb;
            box-shadow: 0 10px 30px rgba(62,39,35,0.4);
            text-align: center;
        }
        .hero-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }
        .cta-button {
            display: inline-block;
            background: #d7ccc8;
            color: #3e2723;
            padding: 14px 40px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            text-decoration: none;
            box-shadow: 0 6px 0 #4e342e;
            transition: 0.2s;
            margin-top: 15px;
        }
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 0 #4e342e;
        }
        .flex-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .card {
            background: #efebe9;
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 8px 20px rgba(62,39,35,0.2);
            transition: 0.3s;
            border-left: 6px solid #6d4c41;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 30px rgba(62,39,35,0.35);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 14px;
            margin-bottom: 12px;
            border: 2px solid #a1887f;
        }
        .news-item {
            background: #faf3eb;
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-bottom: 3px solid #8d6e63;
        }
        .news-date {
            color: #6d4c41;
            font-size: 0.9rem;
            font-weight: bold;
            background: #d7ccc8;
            display: inline-block;
            padding: 2px 14px;
            border-radius: 20px;
            margin-bottom: 8px;
        }
        .faq-item {
            background: #f5ede8;
            border-radius: 18px;
            padding: 20px;
            margin-bottom: 15px;
            border-left: 8px solid #5d4037;
        }
        .faq-item strong {
            color: #3e2723;
            font-size: 1.15rem;
        }
        .geo-address {
            background: #e8ddd5;
            padding: 20px;
            border-radius: 20px;
            margin: 30px 0;
            font-style: italic;
            color: #3e2723;
            border: 1px solid #a1887f;
        }
        footer {
            margin-top: 40px;
            padding-top: 25px;
            border-top: 3px solid #6d4c41;
            text-align: center;
            font-size: 0.9rem;
            color: #4e342e;
        }
        footer a {
            color: #5d4037;
            text-decoration: underline;
            margin: 0 6px;
        }
        .stats-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #3e2723;
            text-shadow: 1px 1px 0 #d7ccc8;
        }
        .badge {
            background: #6d4c41;
            color: #efebe9;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
        }
        h2, h3 {
            color: #3e2723;
        }
        @media (max-width: 600px) {
            .container { padding: 15px; }
            h1 { font-size: 1.5rem; }
        }