* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    text-align: center;
}

header {
    position: relative;
    width: 100%;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 175px;
}
.activity-image {
    width: 500px;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto 20px auto;
}
.conclusion-image {
    width: 600px;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto 20px auto;
}
.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 90%;
}
h1 {
    font-size: clamp(20px, 5vw, 35px);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    margin: 0;
    z-index: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}
nav {
    background: #007bb5;
    padding: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 50px;
}

.nav-links {
    margin-right: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    padding: 8px 12px;
    border-radius: 5px;
}

nav a:hover {
    background-color: #ffcc00;
    color: black;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

main {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

section {
    margin-bottom: 30px;
}

h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #00416d;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: #ffcc00;
    margin: 10px auto 0;
    border-radius: 2px;
}


.cta-buttons a {
    display: inline-block;
    margin: 10px;
    padding: 12px 20px;
    color: white;
    background-color: #007bb5;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
}

.cta-buttons a.btn-secondary {
    background-color: #ffcc00;
    color: black;
}

.cta-buttons a:hover {
    background-color: #005f8b;
}

.cta-buttons a.btn-secondary:hover {
    background-color: #e6b800;
}


.highlight-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 30px 0;
}

.highlight {
    flex: 1;
    margin: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    text-align: center;
    max-width: 300px;
}

.highlight i {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #007bb5;
}

.highlight:hover {
    transform: scale(1.05);
}


.images-section {
    margin: 30px 0;
}

.images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.images img {
    max-width: 45%;
    margin: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.images img:hover {
    transform: scale(1.05);
}


footer {
    background: #00416d;
    color: white;
    text-align: center;
    padding: 15px;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 1em;
    margin-top: 30px;
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.2);
}

footer img.footer-logo {
    height: 35px;
    margin-left: 10px;
    vertical-align: middle;
}




@media (max-width: 768px) {
    header {
        font-size: 1.5em;
        padding: 0px;
    }


    .header-content {
        width: 95%;
        padding: 0 15px;
    }

 
    h2 {
        font-size: 1.6em;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        margin: 8px 0;
    }

    main {
        padding: 15px;
    }

    .highlight {
        max-width: 100%;
    }

    .images img {
        max-width: 90%;
    }
}
@media (max-width: 480px) {
    header {
        font-size: 1.3em;
        padding: 0px;
    }

    .header-content  {
        width: 100%;
        padding: 0 10px;
    }


    h2 {
        font-size: 1.3em;
    }

    nav a {
        font-size: 1em;
    }

    main {
        padding: 10px;
    }
}
