/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Header and Logo */
.header {
    text-align: center;
    padding: 2rem;
    background-color: #001f3f;
    color: #fff;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.logo {
    height: 100px;
    margin: 0 1rem;
}

.divider {
    font-size: 2rem;
    color: #fff;
    margin: 0 1rem;
}

.title {
    font-size: 2.5rem;
    margin: 0.5rem 0;
}

.subtitle {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    font-weight: 300;
    color: #ccc;
}

/* Gallery Styles */
.gallery-container {
    padding: 3rem;
    background-color: #f4f4f4;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 3rem;
}

.gallery-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: #001f3f;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

h5 {
    text-align: center;
}

h6 {
    text-align: center;
}