/* Photo Gallery Styles */
#photo-gallery {
    display: block;
    background: #ffffff;
    padding: 40px 0;
}

.about-section-content {
    padding: 60px 0;
}

.about-section-content h2 {
    color: #043370;
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-section-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

/* Page header styling */
.top_site_main {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    text-align: center;
    position: relative;
    margin-top: 70px; /* Account for fixed header */
}

.top_site_main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.top_site_main h1 {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 2.5em;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .top_site_main {
        padding: 60px 0;
        margin-top: 60px;
    }
    
    .top_site_main h1 {
        font-size: 1.8em;
    }
    
    .about-section-content {
        padding: 40px 0;
    }
    
    .about-section-content h2 {
        font-size: 1.6em;
    }
}