body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background-color: #ffffff;
    color: #0a2540;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.logo {
    width: 300px;
}

.about {
    max-width: 700px;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
}

.about h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.about p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

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

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

footer {
    text-align: center;
    padding: 30px;
    font-size: 14px;
    color: #888;
}

/* RESPONSIVE MOBILE */
@media (max-width: 600px) {

    .hero {
        height: 200px;
    }

    .logo {
        width: 300px;
    }

    .about {
        padding: 15px;
    }

    .about h1 {
        font-size: 22px;
    }

    .about p {
        font-size: 16px;
    }

    .gallery {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .gallery img {
        height: 200px;
    }

    footer {
        font-size: 12px;
        padding: 20px;
    }
}