body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #277365;
    padding: 15px 30px;
    color: white;
}

header .logo img {
    height: 60px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #f8f8f8;
    text-decoration: underline;
}

.images-section {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.images-section img {
    width: 45%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.images-section img:hover {
    transform: scale(1.05);
}
.container {
    position: relative;
    overflow: hidden;
}

.container-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    animation: fadeIn 2s ease-in-out;
}

.container-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
    border-radius: 10px;
}

.container-text h1 {
    margin: 0;
    font-size: 40px;
    animation: slideDown 1.5s ease-in-out;
}

.container-text p {
    margin: 10px 0 0;
    font-size: 18px;
    animation: fadeIn 3.5s ease-in-out;
}


section {
    padding: 40px 20px;
    text-align: center;
}

.about img.section-img {
    width: 80%;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    animation: zoomIn 1.5s ease-in-out;
}

h2 {
    font-size: 28px;
    color: #277365;
    animation: slideInLeft 1.5s ease-in-out;
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin: 20px 0;
}

footer {
    text-align: center;
    background-color: #277365;
    color: white;
    padding: 10px 0;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


@media (max-width: 768px) {
    .hero-img {
        height: 300px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-text p {
        font-size: 14px;
    }

    section {
        padding: 20px 10px;
    }
}