/* Reset and Basic Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Color Palette */
:root {
    --primary-color: #00695c;
    --secondary-color: #00897b;
    --accent-color: #ff6f61;
    --light-color: #ffffff;
    --dark-color: #004d40;
    --gray-color: #757575;
    --light-gray-color: #e0e0e0;
}
/* Testimonials Section */
.testimonials {
    position: relative;
    padding: 60px 0;
    background-color: var(--light-gray-color);
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 2.5em;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    padding: 0 60px; /* Add padding to make space for arrows */
}

.testimonial-slide {
    display: none;
    padding: 0 20px;
    min-height: 200px;
    transition: opacity 1s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}



.testimonial-slide p {
    font-size: 1.2em;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.5;
}

.testimonial-slide h3 {
    font-size: 1.1em;
    color: var(--accent-color);
}

.testimonials button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    font-size: 2em;
    color: var(--accent-color);
    cursor: pointer;
    transition: color 0.3s;
}

.testimonials button:hover {
    color: var(--primary-color);
}

.testimonial-prev {
    left: 20%;
}

.testimonial-next {
    right: 20%;
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
    .testimonials button {
        font-size: 1.5em;
    }
    .testimonial-slider {
        padding: 0 30px;
    }
    .testimonial-prev {
        left: 5%;
    }
    
    .testimonial-next {
        right: 5%;
    }
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--light-color);
    color: var(--dark-color);
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}


.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    margin-right: 10px;
}

.brand .website-name {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
}

.brand .slogan {
    font-size: 0.9em;
    margin-top: 2px;
    color: var(--gray-color);
}

nav {
    position: relative;
}

.menu {
    list-style: none;
    display: flex;
    align-items: center;
}

.menu li {
    margin: 0 15px;
    position: relative;
}

.menu li a {
    padding: 8px 0;
    transition: color 0.3s;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1em;
    color: var(--dark-color);
}

.menu li a:hover {
    color: var(--accent-color);
}

.menu li::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.menu li:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: var(--dark-color);
    margin: 4px 0;
    transition: all 0.3s;
}

/* Slider Styles */
.slider {
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    height: 600px;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.6, 0, 0.4, 1); /* Changed duration to 1.2s */
}


.slide {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}
/* ... [Your existing CSS] ... */

/* Styles for the checkbox container */
/* Adjusting the Checkbox Container Styles */
.checkbox-container {
    display: inline-flex;
    gap: 2px;
    margin-top: 5px;
    margin-bottom: 0px;
}
.btn-map {
  
    background-color: blue;
    color: var(--light-color);
    border: none;
    width: 200px;
    border-radius: 10px;
  
    margin-top: 20px;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 5px;
}
/* Style adjustments for the popup form */
.popup-form {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    width: 400px;
    background-color: #fff;
    border-radius: 8px;
    text-align: left; /* Ensure the text is left-aligned */
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.popup-content h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.popup-content .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.popup-content form label {
    display: block;
    font-weight: bold;
    margin: 10px 0 5px;
}

.popup-content form input,
.popup-content form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #000000;
    border-radius: 5px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

.popup-content form input[type="file"] {
    padding: 5px;
}

.popup-content form button {
    display: inline-block;
    width: 100%;
    padding: 10px;
    background-color: #ff5b5b;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.popup-content form button:hover {
    background-color: #ff4343;
}

/* Adjust mobile view */
@media (max-width: 768px) {
    .popup-content {
        width: 90%;
    }
}

/* Map Popup Styles */
.map-popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.map-popup-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 700px;
    position: relative;
}

.map-popup .close {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.map-popup .close:hover,
.map-popup .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Contact Section Button Styles */
.contact .btn-map {
    background-color: #e65b50;
    color: var(--light-color);
    border: none;
    width: 200px;
    border-radius: 10px;

    margin-bottom: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.contact .btn-map:hover {
    background-color: rgb(71, 71, 255);
    transform: translateY(-3px);
}

/* ... [Rest of your existing CSS] ... */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 77, 64, 0.6);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    max-width: 80%;
    color: var(--light-color);
}

.slide-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: #e65b50;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: black;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    transform: translateY(-3px);
    color: black;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--accent-color);
}

/* Services Overview */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    padding: 0px 0;
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-box {
    text-align: center;
    border-right: 1px solid var(--light-gray-color);
    border-bottom: 1px solid var(--light-gray-color);
    background-color: var(--light-color);
    transition: background-color 0.3s;
    padding: 40px 20px;
}

.service-box:hover {
    background-color: var(--light-gray-color);
}

.service-icon {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-box h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 1.5em;
}

.service-box p {
    font-size: 1em;
    color: var(--gray-color);
    padding: 0 10px;
}
@media (max-width: 768px) {
    .services {
        grid-template-columns: 1fr; /* Single-column layout */
        justify-items: center;      /* Center the service-boxes in the grid */
    }

    .service-box {
        width: 100%; /* Ensure the boxes don't stretch across the whole screen */
        margin: 0 auto; /* Center each box */
    }
}

/* About Us Section */
.about-us {
    padding: 60px 0;
    background-color: var(--light-color);
}

.about-box {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    margin: auto;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.about-box h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 2.5em;
}

.about-box p {
    margin-bottom: 20px;
    font-size: 1.2em;
    color: var(--gray-color);
}

.about-box ul {
    list-style: none;
    text-align: center;
    margin-bottom: 30px;
}

.about-box ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--gray-color);
    position: relative;
    padding-left: 25px;
}

.about-box ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
}

.about-box .btn-primary {
    padding: 15px 35px;
    background-color: var(--accent-color);
    color: var(--light-color);
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.about-box .btn-primary:hover {
    background-color: #e65b50;
    transform: translateY(-3px);
}

/* Services Detail Section */
.services-detail {
    padding: 60px 0;
    background-color: var(--light-gray-color);
}

.services-detail-content {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.services-detail .text {
    width: 100%;
    max-width: 600px;
    padding-right: 20px;
}

.services-detail .text h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 2.5em;
}

.services-detail .text p {
    margin-bottom: 20px;
    font-size: 1.2em;
    color: var(--gray-color);
}

.services-detail .image {
    width: 100%;
    max-width: 600px;
}

.services-detail .image img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

/* Pricing Section */
.pricing {
    padding: 60px 0;
    background-color: var(--light-color);
    text-align: center;
}

.pricing h2 {
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 2.5em;
}

.pricing-table {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    align-items: stretch; /* Add this line */
}


.pricing-box {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    border: 1px solid var(--light-gray-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
    display: flex;                /* Add this line */
    flex-direction: column;       /* Add this line */
    justify-content: space-between; /* Add this line */
}


.pricing-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pricing-box h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: 1.8em;
}

.pricing-box p {
    margin-bottom: 10px;
    color: var(--gray-color);
    font-size: 1em;
}

.price {
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.pricing-box a {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--accent-color);
    color: var(--light-color);
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.pricing-box a:hover {
    background-color: #e65b50;
    transform: translateY(-3px);
}

.pricing-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background-color: var(--accent-color);
    color: var(--light-color);
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.pricing-button:hover {
    background-color: #e65b50;
    transform: translateY(-3px);
}

/* Order Form Styles */
.order-form {
    padding: 60px 0;
    background-color: var(--light-color);
}

.order-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 2.5em;
}

.order-form p {
    text-align: center;
    font-size: 1.2em;
    color: var(--gray-color);
    margin-bottom: 40px;
}

.order-form form {
    max-width: 600px;
    margin: auto;
}

.order-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--dark-color);
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid black;
    border-radius: 5px;
    font-size: 1em;
}

.order-form button {
    width: 100%;
    padding: 15px;
    background-color: var(--accent-color);
    color: var(--light-color);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.order-form button:hover {
    background-color: #e65b50;
    transform: translateY(-3px);
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: var(--light-gray-color);
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 2.5em;
}

.contact p {
    font-size: 1.2em;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.contact ul {
    list-style: none;
    margin-bottom: 40px;
}

.contact ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--dark-color);
}

.contact ul li a {
    color: var(--primary-color);
}

.contact ul li a:hover {
    text-decoration: underline;
}

.contact form {
    max-width: 600px;
    margin: auto;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--light-gray-color);
    border-radius: 5px;
    font-size: 1em;
}

.contact button {
    width: 100%;
    padding: 15px;
    background-color: var(--accent-color);
    color: var(--light-color);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.contact button:hover {
    background-color: #e65b50;
    transform: translateY(-3px);
}
/* Footer Styles *//* Footer Styles */
footer {
    background-color: var(--dark-gray);
    color: var(--light-gray);
    padding: 60px 0 20px;
    font-size: 0.9em;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1 1 300px;
    margin: 20px;
}

.footer-section.about,
.footer-section.links {
    max-width: 500px;
}

.footer-section h3 {
    color: var(--coral);
    margin-bottom: 20px;
    font-size: 1.5em;
}

.footer-section p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #0a645a;
}

.footer-section .socials a {
    margin-right: 15px;
    color: var(--light-gray);
    font-size: 1.2em;
    transition: color 0.3s;
}

.footer-section .socials a:hover {
    color: #0a645a;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #555;
    padding-top: 20px;
    color: #aaa;
    font-size: 0.8em;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin: 10px 0;
    }

    .footer-section h3 {
        text-align: center;
    }
}

/* Language Switcher Styles */
.language-switcher {
    display: flex;
    align-items: center;
    margin-right: 20px;
}


.language-button {
    display: flex;
    align-items: center;
    color: var(--white-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: color 0.3s;
}
/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: transparent;
    color: black;          /* Start with black icon */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 1.5em;
    display: none;
    cursor: pointer;
    z-index: 1000;
    line-height: 50px;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s, color 0.3s;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}


.language-button:hover {
    color: var(--coral);
}
/* Success Message */
.success-message {
    margin-top: 20px;
    padding: 15px;
    background-color: #d4edda;
    color: #155724;
    border-left: 5px solid #28a745;
    border-radius: 5px;
}

/* Error Message */
.error-message {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8d7da;
    color: #721c24;
    border-left: 5px solid #dc3545;
    border-radius: 5px;
}

.flag-icon {
    width: 24px;
    height: auto;
    margin-right: 8px;
}
/* Cookie Consent Popup */
#cookieConsent {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f1f1f1;
    border-top: solid 1px black;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

#cookieConsent .cookie-consent-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#cookieConsent p {
    margin: 0;
}

#cookieConsent .cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Cookie Settings Popup */
.cookie-settings-popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 0.1%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border: solid black 0.4px;
}

.cookie-settings-popup .close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.cookie-option {
    margin-bottom: 10px;
}
#cookieSettingsLink {
    color: #007BFF; /* Blue color */
    font-weight: bold; /* Bold text */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease;
}

#cookieSettingsLink:hover {
    color: #0056b3; /* Darker blue on hover */
    text-decoration: underline; /* Underline on hover */
}
/* Center the entire team-photos container */
.team-photos {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px auto 0; /* Centers the container horizontally */
    align-items: center;  /* Centers the team-member items */
}

/* Existing styles for team-member */
.team-member {
    display: flex;
    align-items: flex-start;
    background-color: #f9f9f9;
    border-radius: 15px;
    border-top: solid 1px black;
    overflow: hidden;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

/* Hover effect */
.team-member:hover {
    transform: translateY(-10px);
    box-shadow:
    /* Top shadow */
    0 -10px 20px -10px rgba(0, 0, 0, 0.3),
    /* Left shadow */
    -10px 0 20px -10px rgba(0, 0, 0, 0.3),
    /* Right shadow */
    10px 0 20px -10px rgba(0, 0, 0, 0.3);

}

/* Styles for the team-photo */
.team-photo {
    width: 40%; /* Adjust image size as needed */
    height: auto;
    object-fit: cover;
}

/* Styles for the member-info */
.member-info {
    padding: 20px;
    width: 70%;
    text-align: left; /* Default text alignment */
}

/* Style for headings in member-info */
.member-info h3, .member-info h4 {
    font-size: 1.6em;
    color: #333;
    margin-bottom: 10px;
}

/* Style for paragraphs in member-info */
.member-info p {
    font-size: 1em;
    color: #666;
    line-height: 1.5;
}

/* Reverse layout for every even team member */
.team-member:nth-child(even) {
    flex-direction: row-reverse;
}

/* --- Specific styles for the team member with right-aligned text --- */

/* Reverse layout for the team member with 'align-right' class */
.team-member.align-right {
    flex-direction: row-reverse;
}

/* Align text to the right within member-info */
.team-member.align-right .member-info {
    text-align: right;
}

/* --- Center the entire section --- */

/* Ensure the team-member doesn't exceed its max-width and is centered */
.team-member {
    width: 100%;
    max-width: 800px; /* Adjust as needed */
    margin: 0 auto;    /* Centers each team-member */
}

@media (max-width: 768px) {
    #cookieConsent .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    #cookieConsent p {
        margin-bottom: 15px;
        font-size: 14px;
    }

    #cookieConsent .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-settings-popup {
        width: 90%;
        padding: 15px;
    }

    .cookie-settings-popup .cookie-option {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    #cookieConsent .cookie-consent-content {
        flex-direction: column;
        align-items: center;
    }

    #cookieConsent .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-settings-popup {
        padding: 10px;
    }

    .cookie-settings-popup .cookie-option {
        font-size: 13px;
    }
}
/* Responsive Styles */
@media (max-width: 1024px) {
    .services-detail .text, .services-detail .image {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .services-detail-content {
        flex-direction: column;
    }
}

/* Existing Mobile Styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu {
        position: absolute;
        top: 70px;
        left: 0;
        background-color: var(--light-color);
        flex-direction: column;
        width: 120px;
        display: none;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 999; /* Ensure the menu appears above other elements */
    }

    .menu.active {
        display: flex;
    }

    /* Adjusted Menu List Items */
    .menu li {
        margin: 0; /* Remove default margins */
        width: 100%; /* Ensure full width */
    }

    /* Adjusted Menu Links */
    .menu li a {
        display: block;
        width: 100%;
        padding: 15px 20px;
        color: var(--dark-color);
        border-bottom: 1px solid var(--light-gray-color);
    }

    /* Hover Effect for Menu Links */
    .menu li a:hover {
        background-color: var(--light-gray-color);
        color: var(--accent-color);
    }

    /* Hamburger Menu Display */
    .hamburger {
        display: flex;
    }

    .hamburger.toggle .bar:nth-child(1) {
        transform: rotate(45deg) translate(10px, 5px);
    }
    
    .hamburger.toggle .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.toggle .bar:nth-child(3) {
        transform: rotate(-45deg) translate(10px, -5px);
    }
    

}


@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 2em;
    }

    .slide-content p {
        font-size: 1em;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 1em;
    }

    .about-box h2 {
        font-size: 1.8em;
    }

    .about-box p {
        font-size: 1em;
    }
}
section {
    scroll-margin-top: 80px; /* Adjust this value depending on header size */
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
