        :root {
            --primary-color: #8B0000;      
            --secondary-color: #800020;     
            --accent-color: #A52A2A;        
            --light-color: #FFD5D5;       
            --border-color: #D2B48C; 
            --text-color: #333;
            --light-bg: #FFF5F5;  
        }
        
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            color: var(--text-color);
            background-color: #FFF9F9;
            line-height: 1.6;
        }
        
        .header {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 15px 0;
            background: linear-gradient(to right, #FFF5F5, #FFE5E5);
            box-shadow: 0 2px 5px rgba(139, 0, 0, 0.1);
            border-bottom: 1px solid var(--border-color);
        }
        
        .logo {
            margin-bottom: 15px;
        }
        
        .logo img {
            height: 60px;
            max-width: 100%;
        }
        
        .nav-center {
            display: flex;
            justify-content: center;
            width: 100%;
        }
        
        .main-nav ul {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .main-nav li {
            margin: 0 15px;
        }
        
        .main-nav a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
            font-size: 16px;
        }
        
        .main-nav a:hover {
            color: var(--primary-color);
            border-bottom-color: var(--accent-color);
        }
           main p,h3, li {
            color: var(--primary-color);
        }
        .language-switcher {
            margin-top: 15px;
        }
        
        .language-switcher select {
            border: 1px solid var(--accent-color);
            color: var(--primary-color);
            padding: 5px 10px;
            border-radius: 4px;
            background-color: #FFE5E5;
            font-size: 14px;
        }
        
        .gallery-section-fap {
            padding: 10px 15px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .gallery-section-fap h1,
		.gallery-section-fap h2 {
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 25px;
            font-size: 28px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .gallery-section-fap h1:after ,
		.gallery-section-fap h2:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent-color);
        }
        
        .gallery-grid-fap {
            column-count: 4;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        
        .gallery-item-fap {
            text-align: center;
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
            break-inside: avoid;
            page-break-inside: avoid;
        }
        
        .gallery-item-fap:hover {
            transform: translateY(-5px);
        }
        
        .gallery-item-fap a {
            text-decoration: none;
            color: var(--text-color);
            display: block;
        }
        
        .gallery-item-fap img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 1px;
            border: 1px solid var(--border-color);
            box-shadow: 0 2px 8px rgba(139, 0, 0, 0.1);
        }
        .gallery-caption {
            font-size: 15px;
            color: var(--primary-color);
            padding: 0 5px;
			margin-bottom: 5px;
            font-weight: 600;
        }
        
        .links-section {
            padding: 10px 15px;
            background: linear-gradient(to right, #FFE5E5, #FFD5D5);
            margin-top: 30px;
            border-top: 1px solid var(--accent-color);
            border-bottom: 1px solid var(--accent-color);
        }
        
        .links-section h1,
		.links-section h2 {
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 25px;
            font-size: 28px;
        }
        
        .links-grid-fap {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            max-width: 1200px;
            margin: 20px auto 0;
        }
        
        .links-grid-fap a {
            display: block;
            padding: 12px;
            background: white;
            border-radius: 5px;
            text-align: center;
            text-decoration: none;
            color: var(--primary-color);
            font-weight: 600;
            transition: all 0.3s;
            border: 1px solid var(--border-color);
        }
        
        .links-grid-fap a:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(139, 0, 0, 0.2);
        }
        
        .footer {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: var(--light-color);
            padding: 40px 15px 30px;
            text-align: center;
        }
        
        .footer-banners {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        
        .footer-logo img {
            height: 60px;
            opacity: 0.9;
            transition: opacity 0.3s;
        }
        
        .footer-logo img:hover {
            opacity: 1;
        }
        
        .footer-banner img {
			height: 25px;
            border-radius: 3px;
        }
        
        .footer-links {
            margin-top: 25px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .footer-links a {
            color: var(--light-color);
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
            padding: 5px 0;
        }
        
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        
        .copyright {
            margin-top: 25px;
            font-size: 14px;
            color: rgba(255, 213, 213, 0.8);
        }
        
        @media (max-width: 768px) {
            .main-nav li {
                margin: 5px 10px;
            }
            
            .gallery-grid-fap {
				column-count: 2;
			grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 15px;
            }
            
            .links-grid-fap {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
            
            .footer-banners {
                flex-direction: column;
                gap: 15px;
            }
            
            .gallery-section-fap h1, 
            .links-section h1, 
            .gallery-section-fap h2, 
            .links-section h2			{
                font-size: 24px;
            }
        }
        @media (max-width: 450px) {
            .gallery-grid-fap {
				column-count: 1;
                gap: 10px;
            }

        }
 