
        :root {
            --primary-color: #0056A3;
            --secondary-color: #2E7D32;
            --accent-color: #F57C00;
            --text-dark: #1A1A1A;
            --text-light: #666666;
            --background-light: #F8F9FA;
            --white: #FFFFFF;
            --border-light: #E0E0E0;
            --shadow: 0 4px 20px rgba(0, 86, 163, 0.1);
            --shadow-hover: 0 8px 30px rgba(0, 86, 163, 0.15);
        }
      
 .hero {
    background-image: url('/public/images/hero-gallery.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: black;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s 
ease;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3); 
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}


    

        .header-image {
            width: 100%;
            height: 550px;
            object-fit: cover;
            border-radius: 0 0 10px 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .content {
            background: white;
            padding: 40px;
            margin-top: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        
        h2 {
            color: #34495e;
            margin: 20px 0 12px;
        }
        
        h3 {
            color: #34495e;
            margin: 20px 0 12px;
        }
        
        h4 {
            color: #5d6d7e;
            margin: 18px 0 10px;
        }
        
        h5 {
            color: #7f8c8d;
            margin: 15px 0 8px;
        }
        
        h6 {
            color: #95a5a6;
            margin: 12px 0 6px;
        }
        
        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-gray);
        }
        
        ul {
            margin: 15px 0;
            padding-left: 30px;
        }
        
        li {
            margin-bottom: 8px;
             font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-gray);
        }
        
        .intro {
            font-size: 1.1em;
            color: #555;
            margin-bottom: 25px;
        }
        
        @media (max-width: 768px) {
            .header-image {
                height: 250px;
            }
            
            .content {
                padding: 20px;
            }
        }