html,
body {
    height: 100%;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Header Styling */
header {
    background: linear-gradient(135deg, #0b6f91, #0a5f7a);
    color: white;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 3px solid #28a745;
}

/* Logo Styling */
header img.logo {
    max-width: 450px;
    height: auto;
}


/* Navigation Links Styling */
header nav {
    display: flex;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
}

header nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Link Hover Effects */
header nav a:hover {
    background-color: rgb(224, 43, 140);
    color: white;
}
.active {
    background-color: rgb(224, 43, 140);
    color: white;
}

/* Section Styling */
section {
    padding: 2rem;
}

/* Section Heading Styling */
section h2 {
    text-align: left;
    color: #0b6f91;
}

/* Content Text Justification */
section p {
    text-align: justify;
}

/* Button Styling */
button {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    margin: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Button Hover Effects */
button:hover {
    background-color: rgb(224, 43, 140);
}

/* Media Queries for Responsive Design */

/* Media Query for screens with a width of 768px or less */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    header img.logo {
        max-width: 300px; /* Adjust logo size for mobile */
    }

    header nav {
        flex-direction: row;
        justify-content: center;
        margin-top: 10px;
    }

    header nav a {
        margin: 0 5px;
        font-size: 14px;
    }

    section {
        padding: 1rem;
    }

    button {
        width: 100%;
        margin: 5px 0;
    }
}

/* Media Query for screens with a width of 480px or less */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    header {
        padding: 10px;
    }

    section {
        padding: 0.5rem;
    }

    button {
        padding: 8px 16px;
    }

    header img.logo {
        max-width: 200px;
    }
}

/* WhatsApp Button Styling */
.whatsapp-btn {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}

.whatsapp-btn:hover {
    background-color: #218838;
}

/* Table Styling */
.cost-summary {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.cost-summary th,
.cost-summary td {
    padding: 12px 15px;
    border: 1px solid #ccc;
    text-align: left;
}

.cost-summary th {
    background-color: #0b6f91;
    color: white;
}

.cost-summary tr:nth-child(even) {
    background-color: #f2f2f2;
}

.cost-summary tr:hover {
    background-color: #d9f0f5;
}

.cost-summary tfoot th {
    background-color: #0b6f91;
    color: white;
}

/* Contact Section Styling */
#contact {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
}

.contact-info {
    background-color: #ffffff;
    border: 1px solid #0b6f91;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-info strong {
    color: #0b6f91;
    font-size: 1.2em;
}

.contact-info address {
    font-style: normal;
    line-height: 1.6;
}

.contact-info a {
    color: #0b6f91;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer Styling */
footer {
    background-color: #0b6f91;
    color: white;
    text-align: center;
    padding: 0px;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 12px;
    border-top: 2px solid #fff;
}

footer p {
    margin: 0;
}

/* WhatsApp Popup Styling */
.whatsapp-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 1000;
}

.whatsapp-icon-popup {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

/* Divider */
.divider {
    border: 1px solid #dee2e6;
    margin: 40px 0;
}

/* General styles for mobile devices (default) */
img.responsive-image {
    max-width: 100%;
    height: auto;
}

/* Styles for larger screens (e.g., desktops) */
@media (min-width: 768px) {
    img.responsive-image {
        max-width: 450px;
        height: auto;
    }
}



/* Base styles for the image gallery */
.gallery-container {
    display: flex;
    flex-direction: column; /* Stack images vertically */
    align-items: center; /* Center images horizontally */
    padding: 10px;
}

.gallery-item {
    width: 100%; /* Take full width of the container */
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

.gallery-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px; /* Add spacing between images */
}

.image-description {
    margin-top: 10px;
    font-size: 14px;
}