header {
    background-image: url('../img/header.JPG');
    background-size: cover;
    background-position: center center;
    color: white;
    text-align: center;
    height: 300px;
    padding: 100px 0;
}

header h1 {
    font-size: 30px;
    margin-left: 10%;
    text-align: left;
}
header p.title {
    font-size: 40px;
}
header p.subtitle {
    font-size: 30px;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
    background-color: #f0f0f0;
    margin-bottom: 20px;
}

section#contact {
    display: flex;
    align-items: flex-start;
    padding: 50px;
    background-color: #f0f0f0;
    margin-bottom: 20px;
    flex-direction: column;
}

#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    background-color: #f0f0f0;
    margin-bottom: 20px;
}

.about-image {
    max-width: 100%;
    margin-bottom: 20px;
}

.about-content {
    max-width: 100%;
}

.about-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

#gallery .image-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

#gallery .image-section img {
    max-width: 30%;
    margin: 10px;
}

@media screen and (max-width: 768px) {
    #gallery .image-section img {
        max-width: 90%;
        margin: 10px auto;
    }
}

#contact p {
    display: block;
    margin: 10px 0;
}

section#gallery {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
    background-color: #f0f0f0;
    margin-bottom: 20px;
    flex-direction: column;
}

@media screen and (min-width: 768px) {
    #about {
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        align-items: center;
    }

    .about-image {
        max-width: 45%;
        order: -1;
    }

    .about-content {
        max-width: 45%;
    }
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1b7e5b;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #00492f;
}
.menu-icon {
    display: none;
}

.menu {
    display: none;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu li {
    margin: 10px 0;
}

.menu li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
}

.menu-toggle:checked + .menu-icon .menu {
    display: block;
}

.menu-toggle:checked + .menu-icon .menu-icon span:before {
    content: '';
}

.menu-toggle:checked + .menu-icon .menu-icon span:after {
    content: '';
}

@media screen and (max-width: 768px) {
    .menu-icon {
        display: block;
        cursor: pointer;
    }

    .menu-toggle {
        display: none;
    }

    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #f0f0f0;
        width: 100%;
    }

    .menu-icon span {
        display: block;
        width: 30px;
        height: 3px;
        background-color: #333;
        margin: 5px auto;
    }
}
nav {
    text-align: center;
}
 
nav ul {
    margin: 0 ;
    padding: 0 ;
}
 
nav ul li{
    list-style: none;
    display: inline-block;
    width: 10%;
}
 
nav ul li a {
    text-decoration: none;
    color: #333;
}
 
nav li:hover{
    border-bottom: 2px solid #FF7A37;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li.active a {
    color: #ffc304;
}
footer nav ul li a {
    color: blue;
}