header {
    background-color: #023560;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    margin-right: 20px;
}

nav {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: space-between;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a:focus {
    color: #7AE8F5; /* Secondary color for hover and focus */
}

nav ul li a:active {
    color: #7AE8F5; /* Secondary color for active state */
}

.menu-toggle {
    display: none;
    background-color: #023560;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    align-self: center;
}

.hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #f4f4f4;
}

.hero h1 {
    font-size: 36px;
    color: #023560;
}

.hero p {
    font-size: 20px; /* Increased by 2 points */
    color: #555;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    background-color: #fff;
}

.service {
    text-align: center;
    width: 45%;
    margin-bottom: 20px;
}

.service h2 {
    font-size: 24px;
    color: #023560;
}

.image-container {
    width: 100%;
    max-width: 300px;
    height: 300px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.images img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.image-placeholder {
    font-size: 20px; /* Increased by 2 points */
    width: 100%;
    height: 200px;
    background-color: #ddd;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #023560;
}

.contact-form input,
.contact-form textarea {
    font-size: 18px; /* Increased by 2 points */
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #023560;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #023560;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #7AE8F5;
}

.whatsapp-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

.whatsapp-button-container {
    text-align: center;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background-color: #f4f4f4;
}

.brand-logos img {
    height: 50px;
    margin: 10px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background-color: #f4f4f4;
}

.payment-methods img {
    height: 50px;
    margin: 10px;
}

@media (max-width: 600px) {
    nav {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .menu.show {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .services {
        flex-direction: column;
        align-items: center;
    }

    .service {
        width: 100%;
        margin-bottom: 20px;
    }

    .image-container {
        max-width: 100%;
        height: auto;
    }

    .service-image {
        max-width: 100%;
    }

    .images {
        flex-direction: column;
        align-items: center;
    }

    .brand-logos {
        justify-content: center;
    }

    .brand-logos img {
        margin: 10px;
    }

    .payment-methods {
        justify-content: center;
    }

    .payment-methods img {
        margin: 10px;
    }
}
