/* General Reset */

:root {
    /* --logo-dark:#1F4677;  A shade of blue */
    /* --logo-light:#409EC5;  A shade of blue */
    --logo-dark:darkslategray;
    --logo-light:#FE9500;
}



body, ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Poppins', Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f4f4f9;
    margin: 0; /* Remove default body margin if needed */
    padding-top: 0; /* Adjust to the navbar’s height */
}

header {
    width: 100%;
}

.menu {
    position: fixed;top:0;left:0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin:0;
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 9999; 
}

.logo img {
    max-height: 36px; /* Set maximum height for logo */
    height: auto;
    padding-left: 1rem;
    padding-right: 3rem;
}

.menu-items {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    gap: 1.5rem;
}

.menu-item a {
    display: flex;
    align-items: center;
    text-decoration: none; /* Remove underline from links */
    color: inherit; /* Inherit text color */
}

.menu-item a img {
    max-height: 36px; 
    height: auto;
    margin-right: 0.5rem;
}

.menu-item a span {
    font-size: 1rem;
    font-weight: bold; /* Optional: make the text bold */
    text-decoration: none;
}

.menu-item:hover a {
    color: #007bff; /* Change text color on hover */
    border-bottom: 0px solid var(--logo-light); /* Add hover effect for underline */
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    position: relative;
    font-weight: bold; 
}

.menu-item img {
    max-height: 36px; 
    height: auto;
    margin-right: 0.5rem;
}

.menu-item span {
    font-size: 16px;
    color: #333;
    text-decoration: none;
}

.menu-item:hover {
    border-bottom: 2px solid var(--logo-light);;
}

.menu-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    border-right: 1px dotted #ccc;
}

/* Hamburger Icon */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    padding-right: 20px; 
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease-in-out;
}

/* Rotate for Open Menu Effect */
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Adjustments */
@media screen and (max-width: 1080px) {
    .menu-item img {
        width: 24px;
        height: 24px;
    }

    .menu-item span {
        font-size: 10px;
    }

    .overlay-text h1 {
        font-size: 2rem;
    }

    .overlay-text p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .menu {
        justify-content: space-between;
        padding: 1rem;
    }

    .menu-items {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        flex-direction: column;
        text-align: center;
        z-index: 1000;
    }

    .menu-items.active {
        display: flex;
    }

    .hamburger-menu {
        display: flex;
    }
}

/* Image with Overlay */
.image-overlay {
    position: relative;
    width:100%;
    display: block;
    text-align: center;
    margin-top: 70px;
    margin:0;
    padding:0;
    top:0;
}

.centered-image {
    display: block;
    margin: 0 auto; 
    padding: 0;
    max-height: 100vh;/*  Image height limited to 60% of the viewport */
    width: 100%; /* Maintain responsiveness */
    height: auto; /* Maintain aspect ratio */
    opacity: 30%;
    object-fit: cover; /* Crop the image to fill the container without distortion */
    object-position: top; /* Keep the top part of the image visible */
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 20px; 
    /*color: #003399; EU Flag*/
    /*color: #ffffff;*/
    /*color:darkslategray;*/
    /*text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);*/
    text-align: center;
}

.overlay-text h1 {
    font-size: 3rem;
    margin: 0;
    line-height: 1.1;
}

.overlay-text h2 {
    font-size: 2rem;
    margin-top: 10px;
    line-height: 1.1;
}

.overlay-text h3 {
    font-size: 1.5rem;
    margin-top: 10px;
    line-height: 1.1;
}


.overlay-text p {
    font-size: 1.2rem;
    margin-top: 10px 0 0;
}

@media screen and (max-width: 768px) {
    .centered-image {
        max-height: none;  /* Increase image height to fill the viewport */
        height: 100%;       /* Ensure it takes up full height */
        object-fit: cover;  /* Cover the container without leaving gaps */
        margin: 0;
        padding: 0;
    }

    /*.centered-image {
        display:relative;
    }*/

    .overlay-text h1 {
        font-size: 1.5rem; /* Reduced from 2rem */
    }

    .overlay-text h2 {
        font-size: 1.25rem; /* Adjust if needed */
    }

    .overlay-text h3 {
        font-size: 1.25rem; /* Adjust if needed */
    }

    #overlay-text-subheading {
        display: none;
    }

    .overlay-text p {
        font-size: 0.9rem; /* Reduced from 1rem */
    }

    .overlay-text {
        width: 90%; /* Reduce width for better fit */
        padding: 0 5px; /* Reduce padding */
        top: 50%; /* Move text higher on the image */
        transform: translate(-50%, -20%);
    }

    .image-overlay {
        margin: 0;
        padding: 0;
    }

}

/* Overlay Container */
.scroll-down-overlay {
    position: absolute;
    bottom: 20px; /* Position it near the bottom of the image */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    color: var(--logo-dark);
    font-size: 1.2rem;
    font-weight: bold;
    animation: fadeIn 1.5s ease-in-out;
}

/* Arrow Icon Animation */
.scroll-down-overlay::after {
    content: "↓";
    display: block;
    font-size: 2rem;
    margin-top: 5px;
    animation: bounce 1.5s infinite;
}

/* Keyframe Animation for Bouncing Effect */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Smooth Fade-in Effect */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hide Overlay When User Scrolls Down */
@media screen and (max-width: 768px) {
    .scroll-down-overlay {
        font-size: 1rem;
    }
}

.scroll-down-hidden {
    display: none; /* Hide overlay after scrolling */
}


/* Button Container Styling */
.button-container {
    position: relative;
    margin-top: 10px; /* Add space under the overlay text */
    display: flex;
    justify-content: center; /* Center buttons in the container */
    gap: 20px; /* Add space between the buttons */
}

.overlay-button {
    padding: 10px;
    font-size: 1rem;
    font-weight: bold;
     color: #fff; 
    /*color: #FFCC00; EU gold */
    background-color: var(--logo-light);  /*Button color */
    /* background-color: #003399;  EU Flag color */
    text-decoration: none; /* Remove underline from links */
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    display: inline-block; /* Behave like a button */
}

.overlay-button:hover {
    background-color: var(--logo-dark); /* Darker blue on hover */
}

/* Styles for Customer Logos Section */
.customer-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
        background-color: white;
}

.customer-logos-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
    width: 100%;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    max-height: 60px;
    width: auto;
    transition: filter 0.3s ease-in-out;
}

.logo-img:hover {
    filter: grayscale(0%);
}

@media screen and (max-width: 768px) {
    .logos-container {
        justify-content: flex-start;
        overflow-x: auto;
        display: flex;
        flex-wrap: nowrap;
        scroll-behavior: smooth;
        max-width: 90vw;
    }

    .logo-item {
        flex: 0 0 auto;
        margin-right: 10px;
    }

    .logo-img {
        max-height: 50px;
    }
}
/* Additional Content Below the Image 
.additional-content {
    padding: 20px;
    text-align: center;
    font-size: 1rem;
    color: #333;
}*/

/* Section with Text and Image */
/* General Styles for Sections */
section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 10%;
}

section .content {
    flex: 1;
    text-align: center;
}

section .image {
    flex: 1;
    text-align: center;
}

section .image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: Rounded corners */
}

/* Specific Styles for Left Image Section */
.image-left-section, .image-right-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto; /* Adjust height dynamically */
    padding: 0;
    margin: 0;
}

.image-left-section .image-content, 
.image-right-section .image-content {
    width: 50vw; /* 50% of viewport width */
    max-width: 50vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.image-left-section .image-content img, 
.image-right-section .image-content img {
    width: 100%; /* Take full width of the container */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensures the image scales correctly */
    display: block;
    margin: 0;
    padding: 0;
}


.image-left-section .content, 
.image-right-section .content {
    flex: 0 0 50vw; /* Ensure image container takes exactly 50% width */
    max-width: 50vw; /* Explicitly limit width to half the screen */
    width: 50%; /* Make content take up 50% of the screen */
    object-fit: contain; /* Maintain aspect ratio */
    padding: 0; /* Remove any default padding */
    margin: 0; /* Remove any default margin */
}

.image-left-section {
    /* background-color: rgb(203, 241, 253);  Light blue background */
    background-color: rgb(250, 250, 250); /* Light gray background */
    /*background-color: #558AB3;
    background: linear-gradient(to bottom, #79C5FF,#B5DAFC ); 
    width: 100%;  */
}

.image-left-section .text-content {
    width: 50vw; 
    display: flex; /* Use flexbox for alignment */
    flex-direction: column; /* Stack text elements vertically */
    justify-content: center; /* Center text vertically */
    align-items: center; /* Center text horizontally */
    text-align: center; /* Ensure text alignment */
    margin: 0px; /* Remove any default margin */
}

.image-left-section .text-content h2 {
    margin-bottom: 0px; /* Reduce space below the heading */
}

.image-left-section .text-content p {
    margin-top: 0; /* Remove any default margin above the paragraph */
    
}

/* Specific Styles for Right Image Section */
.image-right-section {
    /* background-color: rgb(203, 241, 253);  Light blue background */
    background-color: white; /* Light gray background */
    /*background-color: #558AB3;
    background: linear-gradient(to bottom, #79C5FF,#B5DAFC ); 
    width: 100%;  */
}

.image-right-section .text-content {
    width: 50vw; 
    display: flex; /* Use flexbox for alignment */
    flex-direction: column; /* Stack text elements vertically */
    justify-content: center; /* Center text vertically */
    align-items: center; /* Center text horizontally */
    text-align: center; /* Ensure text alignment */
}

.image-right-section .text-content h2 {
    margin-bottom: 10px; /* Reduce space below the heading */
}

.image-right-section .text-content p {
    margin-top: 0; /* Remove any default margin above the paragraph */
}


@media screen and (max-width: 768px) {
    /* Stack image on top of text for both sections */
    .image-left-section,
    .image-right-section {
        display: flex;
        flex-direction: column; /* Stack content vertically */
        align-items: center;    /* Center align content */
        text-align: center;     /* Center text for better alignment */
    }

    /* Ensure the image comes first */
    .image-left-section .image,
    .image-right-section .image {
        order: -1; /* Moves the image to the top */
        width: 100%; /* Full width for responsiveness */
        max-width: 500px; /* Optional: Limit max image size */
        margin-bottom: 15px; /* Space between image and text */
    }

    /* Adjust text alignment */
    .image-left-section .text-content,
    .image-right-section .text-content {
        padding: 10px;
        order: 0; /* Ensure text stays below the image */
    }
}


/* Responsive Design 
@media screen and (max-width: 768px) {
    section {
        flex-direction: column;
    }

    section .content,
    section .image {
        order: unset; 
    }

    section .content {
        text-align: center; 
    }
}*/

/* Submenu Styling */
.submenu {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    position: absolute;
    top: 100%; /* Position submenu below the parent menu item */
    left: 0;
    background-color: var(--logo-light);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: none; /* Hide submenu by default */
    z-index: 1000; /* Ensure submenu is above other elements */
}

.submenu li {
    padding: 5px 20px;
}

.submenu li a {
    color: white;/*TODO move style color white from HTML to CSS*/
    text-decoration: none;
    display: block;
    padding: 5px 10px;
}

.submenu li a:hover {
    background-color: var(--logo-dark);
}

/* Show Submenu on Hover */
.menu-item:hover .submenu {
    display: block; /* Show the submenu */
}

/* Interactive Image Section */
.interactive-image-section {
    padding: 40px 10%;
    text-align: center;
}

.interactive-image-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    background-color: #ffffff;
}

.interactive-image-heading-lg {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    background-color: #f8f8f8;
}

.interactive-image-container {
    display: flex;
    justify-content: center;
}

.interactive-image {
    max-width: 100%;
    height: auto;
    /*border: 2px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
}

/* Area Highlight (Optional for Debugging) */
area {
    outline: none;
}

/* Centered Heading Section */
.centered-heading-section {
    text-align: center; /* Center-align the entire section */
    padding: 20px 5%; /* Add padding around the section */
    background-color: white; /* f8f8f8 Light gray background */
    display: flex;
    flex-direction: column; /* Stack the heading and image vertically */
    align-items: center; /* Center both heading and image horizontally */
}

.centered-heading {
    font-size: 2.5rem; /* Larger font size for emphasis */
    font-weight: bold;
    margin-bottom: 5px; /* Space between heading and image */
    color: #333;
    text-align: center; /* Ensure the heading text is centered */
    
}

.centered-heading-3 {
    font-size: 1.5rem; /* Larger font size for emphasis */
    font-weight: bold;
    margin-bottom: 5px; /* Space between heading and image */
    color: #333;
    text-align: center; /* Ensure the heading text is centered */
}


.centered-text {
    font-size: 1rem; /* Larger font size for emphasis */
    font-weight: bold;
    margin-bottom: 5px; /* Space between heading and image */
    color: #333;
    text-align: center; /* Ensure the heading text is centered */
}

.centered-div {
    display: flex;
    justify-content: center; /* Centers elements horizontally */
    align-items: center;    /* Centers elements vertically */
}

.centered-image-container {
    width: 100%; /* Make the image container full width */
    max-width: 1200px; /* Limit the maximum width */
    margin: 0 auto; /* Center the container */
}

.centered-image-heading {
    display: block;
    width: 100%; /* Make the image fill the container */
    height: auto; /* Maintain aspect ratio */
    /* border-radius: 8px;  Optional: Rounded corners */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  Optional: Subtle shadow */

    margin: 0 auto;
    max-height: 85vh;  /*Image height limited to 60% of the viewport */
    object-fit: cover; /* Crop the image to fill the container without distortion */
    object-position: top; /* Keep the top part of the image visible */
}


/* Testimonial Section */
.testimonial-section {
    padding: 40px 10%; /* Padding for top/bottom and 10% for left/right */
    background-color: #f8f8f8; /* Light background for contrast */
    text-align: center;
}

.testimonial-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-between;  Ensure boxes are evenly spaced */ 
    justify-content: center; 
    gap: 20px; /* Add space between the boxes */
    padding: 0 10px; /* Add padding to prevent overflow */
    box-sizing: border-box;
}

.testimonial-box {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    border-radius: 8px;
    padding: 20px;
    flex: 1 1 300px; /* Make boxes flexible to fit evenly */
    margin: 0 10px; /* Add margin for spacing */
    max-width: calc(33.333% - 20px); /* Ensure three boxes fit evenly in one row */
    text-align: left;
    box-sizing: border-box;
}

.testimonial-header {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    display: flex; /* Enables flexbox */
    align-items: center; /* Aligns items vertically */
    gap: 10px; /* Adds space between elements */
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1;
    color: #333;
}

.testimonial-title {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1;
    color: #666;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #444;
}

/* Button Styling */
.testimonial-button {
    margin-top: 30px;
}

.see-more-btn {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #007bff; /* Blue background */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.see-more-btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Link Styling */
.see-more-link {
    text-decoration: none; /* Remove underline from the link */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .testimonial-container {
        flex-direction: column; /* Stack the boxes vertically on smaller screens */
        padding: 0 5px; /* Reduce side padding */
    }

    .testimonial-box {
        width: 100%; /* Full width on smaller screens */
        /*max-width: none;  Remove the max-width constraint */
        max-width: 100%;
    }
}

/* Two-Sided Section */
.two-sided-section {
    display: flex;
    flex-wrap: wrap; /* Ensure responsiveness */
    gap: 20px;
    padding: 40px 10%;
    background-color: white;
}

.left-side, .right-side {
    flex: 1; /* Ensure both sides take equal width */
    max-width: 50%; /* Equal widths for both sides */
    padding: 0 20px; /* Add consistent padding on both sides */
}

.left-side {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content at the top */
    
}

.contact_testimonial-box {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.contact_testimonial-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.contact_testimonial-title {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 10px;
    color: #666;
}

.contact_testimonial-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #444;
}

.right-side {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content at the top */
    padding: 0 20px;
}

.form-heading {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    margin-top: -15px; /* Adjust the form heading to align with the first testimonial */
}

.contact-section {
    padding: 10% 5%;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column; /* Stack the heading and image vertically */
    align-items: center;
}

.contact-section .header {
    text-align: center;
    margin-bottom: 20px;
}

.contact-section .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-section img {
    width: 50%;
    /*height: 200px;*/
    margin-right: 20px;
}

.contact-section form {
    flex: 1;
}

.contact-section form input,
.contact-section form textarea,
.contact-section form button {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    box-sizing: border-box;
}

.contact-section form button {
    background-color: blue;
    color: white;
    border: none;
    cursor: pointer;
}
/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .two-sided-section {
        flex-direction: column; /* Stack sections vertically on smaller screens */
    }

    .left-side, .right-side {
        max-width: 100%; /* Full width on smaller screens */
    }

    .form-heading {
        margin-top: 0; /* Reset margin on smaller screens */
    }
}


.circular-image-li {
    width: 30px;  /* Adjust size as needed */
    height: 30px; /* Ensure it's a square */
    border-radius: 50%; /* Makes it a perfect circle */
    object-fit: cover; /* Ensures the image covers the area properly */
    display: block;
    border: 1px solid var(--logo-dark); /* Optional: Adds a border around the circle */
}

/* Footer Styling */
.site-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 10%;
    background-color: #333;
    color: #fff;
}

.footer-section {
    flex: 1;
    max-width: 30%; /* Ensure three sections fit side-by-side */
    margin: 10px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ffcc00; /* Highlight on hover */
}

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

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

.footer-links li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #ffcc00; /* Highlight on hover */
}

.footer-form label {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: bold;
}

.footer-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.footer-submit-btn {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color:var(--logo-light);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-submit-btn:hover {
    background-color: var(--logo-dark);
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer-section {
        max-width: 100%; /* Stack sections vertically on smaller screens */
        margin-bottom: 20px;
    }
}


/* Custom Section */
.custom-section {
    padding: 40px 10%;
    background-color: #f8f8f8;
    text-align: center;
    flex-direction: column;
}

/* Row 1: Main Heading */
.custom-main-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}

/* Row 2: Text and Image */
.custom-row-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.custom-text-container {
    flex: 1;
    text-align: left;
}

.custom-text-container h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.custom-text-container p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #555;
}

.custom-image-container {
    flex: 1;
    text-align: center;
}

.custom-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Row 3: Boxes */
.custom-boxes-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px;
    padding: 0 10px;
    margin-bottom: 40px;
    width: 100%;
    box-sizing: border-box; 
}

.custom-boxes-container-3boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns */
    gap: 20px;
    padding: 0 10px;
    margin-bottom: 40px;
    width: 100%;
    box-sizing: border-box; 

}

.custom-box {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 100%;          /* Ensures it doesn't exceed container width */
    max-width: 100%;      /* Prevents it from overflowing */
    box-sizing: border-box; /* Includes padding and border in width */
    margin: 0 auto;       /* Centers the box if necessary */
    overflow-wrap: break-word; /* Prevents long words from overflowing */
}

.custom-box h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.custom-box .subheading {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #777;
}

.custom-box p {
    font-size: 1rem;
    color: #555;
}

/* Row 4: Button */
.custom-button-container {
    margin-top: 20px;
}

.custom-main-button {
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-main-button:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .custom-row-container {
        flex-direction: column; /* Stack text and image vertically */
    }

    .custom-text-container {
        text-align: center;
    }

    .custom-boxes-container  {
        grid-template-columns: 1fr; /* 1 column on small screens */
    }

    .custom-boxes-container-3boxes {
        grid-template-columns: 1fr; /* 1 column on small screens */
    }

    .custom-box {
        width: 100%;  /* Full width */
        max-width: 100%;
        margin: 0 auto;
    }

}


.new-section {
  padding: 20px;
  background-color: #f9f9f9;
}

.content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.heading {
  font-size: 2rem;
  margin-bottom: 10px;
}

.subheading {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #555;
}

.section-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-container {
  max-width: 400px;
  width: 100%;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input, textarea, button {
  width: 100%;
  padding: 10px;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .section-body {
    flex-direction: column;
  }
}

.new-section {
  padding: 20px;
  background-color: #f9f9f9;
}

.content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.heading {
  font-size: 2rem;
  margin-bottom: 10px;
}

.subheading {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #555;
}

.section-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.image-container {
  flex: 1;
  max-width: 500px;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-container {
  flex: 1;
  max-width: 500px;
  width: 100%;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input, textarea, button {
  width: 100%;
  padding: 10px;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .section-body {
    flex-direction: column;
  }

  .image-container, .form-container {
    max-width: 100%;
  }
}


#cookie-banner {
    font-size: 14px;
}
#cookie-banner button {
    background-color: var(--logo-light);
    border: none;
    color: white;
    cursor: pointer;
    font-size: 14px;
}

/* Popup Styling */
.popup {
    display: none; /* Hidden on load */
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50%vw;
    height: 50%vh;
    z-index: 1000;
    transform: translate(-50%, -50%);
    justify-content: center;
    align-items: center;
    border: #000;
    border-color: #000;
}

/* Popup Content: Two-Column Layout */
.popup-content {
    display: flex;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    border: 3px solid var(--logo-dark);
    overflow: hidden; /* Ensures image does not overflow */
}

/* Left Side: Text and Button */
.popup-left {
    width: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    vertical-align: top;
}

.popup-left h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.popup-button {
    background-color: var(--logo-light); /* Orange Button */
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    text-align: center;
}

.popup-button:hover {
    background-color: var(--logo-dark); /* Darker on hover */
}

/* Small Close Link */
.popup-close-link {
    margin-top: 10px;
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    cursor: pointer;
}

.popup-close-link:hover {
    text-decoration: underline;
}

/* Right Side: Image */
.popup-right {
    width: 50%;
}

.popup-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the right side */
}

/* Close Button (X) */
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 50%;
    font-weight: bold;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .popup-content {
        flex-direction: column;
        width: 90%;
        height: auto;
    }

    .popup-left, .popup-right {
        width: 100%;
        text-align: center;
    }

    .popup-right {
        padding: 10px;
    }

    .popup-image {
        max-height: 200px;
        width: auto;
    }
}
