body {
    font-family: 'Calibri', sans-serif;
    margin: 0;
    padding: 0;
    color: #1B263B;
    background-color: #FFFFFF;
}

header {
    background-color: #FB8500;
    color: #023047;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    margin: 0;
    font-family: 'Calibri', serif;
}

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

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #023047;
    text-decoration: none;
    font-weight: bold;
}

.hero-section {
    position: relative;
    background-color: #8ECAE6;
    color: #023047;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.hero-overlay {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.overlay-image {
    width: 340px;
    height: auto;
    margin-bottom: 20px;
    position: absolute;
    top: -140px;
    left: -40px;
}

.hero-content {
    position: relative;
    text-align: left;
    max-width: 600px;
    margin-left: 350px;
    margin-top: 30px;
}

.hero-content h2 {
    margin: 0;
    font-size: 3em;
    font-family: 'Calibri', serif;
    color: #023047;
}

.hero-content p {
    font-size: 1.5em;
    font-family: 'Calibri', sans-serif;
    color: #0D1B2A;
}

.middle-section, .about-section, .products-section, .contact-section, .subscribe-section {
    padding: 50px 0;
    text-align: center;
}

.middle-section {
    background-color: #8ECAE6;
    color: #1B263B;
    font-size: 1.5em;
    font-family: 'Calibri', serif;
}

.about-section {
    background-color: #FFFFFF;
    color: #1B263B;
    text-align: left;
    font-family: 'Calibri', serif;
}

.about-section h2 {
    font-size: 2.5em;
    text-align: center;
    width: 100%;
    color: #023047;
}

.about-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    width: 40%;
    height: auto;
    margin-right: 20px;
}

.about-text {
    width: 60%;
    font-size: 1.2em;
}

.about-text h3 {
    background-color: #023047;
    color: #FFFFFF;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.about-text p {
    margin: 10px 0;
}

.products-section {
    background-color: #FFFFFF;
}

.products-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #023047;
}

.swiper-container {
    width: 100%;
    padding: 60px 0;
    position: relative;
    height: auto;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
}

#imageModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

#modalImage {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close {
    color: #f1f1f1;
    position: absolute;
    top: 15px;
    right: 35px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.swiper-button-next, .swiper-button-prev {
    color: #0D1B2A;
}

.swiper-pagination {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 20px;
}

.contact-section {
    background-color: #219EBC;
    color: #1B263B;
}

.contact-section h2 {
    font-size: 2.5em;
    color: #023047;
}

.contact-section p {
    font-size: 1.2em;
    margin: 20px 0;
}

.subscribe-section {
    background-color: #219EBC;
    color: #1B263B;
}

.subscribe-section h2 {
    font-size: 2.5em;
    color: #023047;
}

.subscribe-section p {
    font-size: 1.2em;
    margin: 20px 0;
}

.subscribe-section form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.subscribe-section input[type="email"] {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #1B263B;
    border-radius: 5px;
    margin-right: 10px;
}

.subscribe-section button {
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    background-color: #219EBC;
    color: #023047;
    border-radius: 5px;
    cursor: pointer;
}

.subscribe-section button:hover {
    background-color: #415A77;
}

footer {
    background-color: #FB8500;
    color: #1B263B;
    padding: 2em 0;
    text-align: center;
}

.footer-content {
    font-family: 'Calibri', serif;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin: 0;
    font-size: 1.2em;
}

a {
    color: #FFFFFF;
}

a:hover {
    color: #FFFFFF;
}

a:visited {
    color: #023047;
}

section {
    position: relative;
    padding: 20px;
    color: #1B263B;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 10px;
    }

    nav ul li {
        margin: 0 10px;
    }

    .hero-overlay {
        align-items: center;
        text-align: center;
    }

    .overlay-image {
        position: static;
        width: 220px;
        margin: 0 auto 20px;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2em;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image, .about-text {
        width: 100%;
        margin-right: 0;
    }

    .about-image {
        margin-bottom: 20px;
    }
}
