body {
    background-color: #fafefa; /* Light background */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    flex-direction: row; /* Align items in a row */
    justify-content: space-between; /* Space between logo and nav */
    align-items: center; /* Align items vertically centered */
    background-color: #ffffff; /* White background for contrast */
    padding: 10px 5%;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    flex: 0 1 auto; /* Logo takes necessary space */
    margin-right: 1em; /* Space between logo and menu */
}

.logo img {
    width: 20vw; /* Responsive logo size */
    max-width: 250px; /* Sets a max-width for large screens */
    height: auto;
}


.nav-container {
    display: flex; /* Flex container for the nav */
    justify-content: flex-end; /* Align the nav to the right */
    width: 100%; /* Full width for nav container */
}

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

nav ul li {
    margin: 0 15px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #000000; /* Black text for nav links */
    font-size: 1.4em; /* Increase font size */
    font-weight: bold;
}

nav ul .dropdown {
    display: none; /* Initially hide the dropdown */
    position: absolute;
    top: 100%; /* Align below the menu item */
    left: 0;
    background-color: white;
    border: 1px solid #6b6666;
    padding: 10px;
    list-style: none;
    min-width: 150px; /* Set a minimum width for the dropdown */
}

nav ul li:hover .dropdown {
    display: block; /* Show dropdown on hover */
}

nav ul .dropdown li {
    margin: 0.5em; /* No margin for list items */
    padding: 2px 0; /* Add padding for better spacing */
}

nav ul .dropdown li a {
    text-decoration: none;
    color: #000000; /* Text color for dropdown items */
    font-size: 1em; /* Ensure consistency in font size */
    font-weight: normal; /* Regular weight for dropdown items */
    display: block; /* Ensure the entire area is clickable */
    white-space: nowrap; /* Prevent text from wrapping */
}

/* Separator line styling */
.separator-line {
    width: 100%;
    height: 5px; /* Adjust thickness as needed */
    background-color: #63d150; /* Solid color for the line */
    margin: 10px 0; /* Space above and below the line */
}

/* Video Section */
.video-section {
    display: flex;
    justify-content: center; /* Center the video */
    padding: 20px 0;
}

.video-section .full-width-video {
    width: 60%; /* Set video width to 80% of the screen */
    height: auto;
    border-radius: 8px; /* Optional: Add a slight border radius for styling */
}


/* About Section */
.about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%; /* Add left and right padding */
}

.about-content {
    flex: 1;
    padding-right: 10px;
    margin-left: 10%; /* Moves the text content slightly toward the center */
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.2rem;
    word-spacing: 2px; /* Increases space between words */
    line-height: 1.5; /* Adjusts line spacing */
}

.about-image {
    flex: 1;
    text-align: right;
    margin-right: 5%; /* Adjust this value to control how close it moves to the center */
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
}

.more-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #63d150;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Additional Content Section */
.additional-content {
    display: flex; /* Use flexbox for the overall layout */
    justify-content: center; /* Space out content items */
    padding: 50px; /* Optional padding for the section */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

.content-item {
    position: relative;
    display: flex; /* Use flexbox for each content item */
    cursor: pointer; /* Change cursor to pointer to indicate clickable items */
    border: 2px solid transparent; /* Transparent border for hover effect */
    transition: border 0.3s; /* Smooth transition for border */
    align-items: center; /* Center align items vertically */
    text-align: center; /* Center text */
    margin: 0 7%; /* Optional: adjust the left and right margins */
    max-width: 500px; /* Set a max width for each item */
}

.content-item:hover {
    border: 2px solid #63d150; /* Change border color on hover */
    border-radius: 8px;
}


.content-item img {
    max-width: 150px; /* Adjust width as needed */
    border-radius: 8px;
    margin-bottom: 50px; /* Space between image and text */
}

.text-container {
    display: flex;
    flex-direction: column; /* Stack paragraphs vertically */
    align-items: flex-start; /* Align text to the start */
    margin-left: 10%; /* Optional: Space between text and image */
    flex-grow: 1; /* Allow text container to grow and fill available space */
}

.number {
    font-size: 2rem; /* Larger font size for the number */
    font-weight: bold; /* Bold styling for the number */
    margin-bottom: 1px; /* Smaller space between the number and weeded text */
}

.weeded-text {
    font-size: 1rem; /* Smaller font size for weeded text */
    font-weight: bold; /* Bold styling for weeded text */
}

/* Tooltip Styles */
.tooltip {
    display: none; /* Hidden by default */
    position: absolute; /* Position the tooltip */
    background-color: #333; /* Dark background */
    color: #fff; /* White text */
    padding: 8px; /* Padding around the text */
    border-radius: 4px; /* Rounded corners */
    z-index: 10; /* Make sure it appears above other elements */
    top: 100%; /* Position above the content item */
    left: 50%; /* Center the tooltip */
    transform: translateX(-50%); /* Adjust to center tooltip */
    white-space: nowrap; /* Prevent text from wrapping */
    transition: opacity 0.3s; /* Smooth transition for tooltip */
}

/* Show the tooltip on hover */
.content-item:hover .tooltip {
    display: block; /* Show the tooltip */
    opacity: 1; /* Make tooltip visible */
}


/* Product Section */
.product-section {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    padding: 1%;
    max-width: 100%;
    margin: auto;
}

.section-header {
    background-color: #63d150; /* Green background */
    color: rgb(0, 0, 0); /* Black text color */
    font-size: 2.5rem; /* Large font size */
    padding: 10px; /* Padding around the header */
    margin-bottom: 5%; /* Space below the header */
    text-align: center; /* Center text */
    width: 100%; /* Full width */
    border-radius: 8px; /* Optional: add rounded corners */
}

.product-container {
    display: flex; /* Flexbox for product items */
    justify-content: space-between; /* Space out items evenly */
    width: 100%; /* Full width for the container */
}

.product-item {
    text-align: center;
    width: 50%; /* Set width for each product item */
    margin: 0 80px; /* Horizontal margin for spacing between products */
}

.product-item img {
    width: 100%;
    max-width: 300px; /* Set max width for images */
    border-radius: 8px;
    margin-bottom: 20px; /* Space between image and text */
}

.product-item h3 {
    font-size: 1.5rem; /* Font size for product names */
    margin-bottom: 10px; /* Space below product name */
}

.product-description {
    font-size: 1rem; /* Font size for descriptions */
    margin-bottom: 15px; /* Space below description */
}



/* Contact Section */
.contact-section {
    padding: 50px;
    background-color: #fafefa; /* Light background for the section */
}

.contact-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    gap: 5%;
}

.contact-info, .contact-form {
    width: 45%; /* Split container width */
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 2rem;
    color: #63d150;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.contact-item .icon {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #63d150;
}

.contact-form h3 {
    font-size: 1.5rem;
    color: #63d150;
    margin-bottom: 20px;
}

.contact-form label {
    font-size: 1rem;
    display: block;
    margin-top: 15px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 95%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #63d150;
    color: #010101;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

.contact-form button:hover {
    background-color: #4ca03d;
}

.popup-message {
    background-color: #e0f7fa; /* Light blue background */
    color: #00695c; /* Dark teal text */
    padding: 10px 15px; /* Padding around the text */
    border: 1px solid #004d40; /* Darker border */
    border-radius: 5px; /* Rounded corners */
    margin-bottom: 15px; /* Space below the pop-up */
    display: flex; /* Flex to center align text */
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    font-weight: bold; /* Bold text for emphasis */
}


/* Support and Partners Section */
.support-partners-section {
    padding: 50px;
    text-align: center; /* Center the header text */
}

.Supportsection-header {
    background-color: #63d150; /* Green background */
    color: rgb(0, 0, 0); /* Black text color */
    font-size: 2.5rem; /* Large font size */
    padding: 10px; /* Padding around the header */
    margin-bottom: 5%; /* Space below the header */
    text-align: center; /* Center text */
    width: 65%; /* Full width */
    border-radius: 8px; /* Optional: add rounded corners */
    margin-left: auto; /* Automatically margin left */
    margin-right: auto; /* Automatically margin right */
}

.partners-container {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space images evenly */
    align-items: center; /* Center align images vertically */
    max-width: 1200px; /* Limit the width of the container */
    margin: auto; /* Center the container */
}

.partner {
    flex: 1; /* Allow each partner item to grow and fill the space */
    padding: 0 10px; /* Space between images */
}

.partner img {
    max-width: 100%; /* Make images responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: shadow for effect */
}


/* Footer Section */
footer {
    padding: 20px; /* Padding for the footer */
    background-color: #333; /* Dark background for the footer */
    color: #fff; /* White text color */
}

.footer-container {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space items evenly */
    align-items: center; /* Center align items vertically */
    max-width: 1200px; /* Limit the width of the container */
    margin: auto; /* Center the container */
}

.footer-info p {
    margin: 20px 0; /* Space between paragraphs */
    text-align: left; /* Center the text */
    font-weight: bold;
    font-size: 1.2rem;
}

.social-media {
    display: flex; /* Use flexbox for social media icons */
    gap: 20px; /* Space between icons */
}

.social-media img {
    width: 40px; /* Size of the social media icons */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.3s; /* Transition for hover effect */
}

.social-media img:hover {
    transform: scale(1.1); /* Slightly enlarge icons on hover */
}


html {
    scroll-behavior: smooth;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    display: none; /* Hidden by default */
}

.cookie-consent button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.cookie-consent button:hover {
    background-color: #45a049;
}
/* Style links in the cookie consent popup */
.cookie-consent a {
    color: #4CAF50; /* Green color for links */
    text-decoration: none; /* Remove underline */
    font-weight: bold;
}

/* Container to center the content and add spaces from the sides */
.lad_container {
    max-width: 1200px; /* Adjust as needed */
    margin: 0 auto;
    padding: 20px;
    text-align: justify;
}

/* Styling for the content inside the container */
.lad-project-content {
    background-color: #f9f9f9; /* Optional background for contrast */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.lad-project-content h2 {
    margin-bottom: 20px;
    color: #333;
}

.lad-project-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.lad_image-container{
    margin-top: 30px;
    text-align: center; /* Ensures the image is centered */ 
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    header {
        flex-direction: column; /* Stack elements vertically on smaller screens */
        align-items: center; /* Center items on smaller screens */
    }

    .nav-container {
        justify-content: center; /* Center nav on smaller screens */
        width: 100%; /* Full width for nav container */
    }

    nav {
        text-align: center; /* Center nav text on smaller screens */
    }

    nav ul {
        flex-direction: column; /* Stack nav items vertically on smaller screens */
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }
    nav ul li a {
        font-size: 1.0em; /* Smaller font size for mobile */
    }

    .logo img {
        width: 20vw; /* Keep logo responsive */
        max-width: 150px;
    }
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) { /* For tablets and mobile devices */
    .additional-content {
        padding: 20px; /* Reduce padding on smaller screens */
    }

    .content-item {
        flex: 1 1 100%; /* Make items stack vertically */
        max-width: none; /* Remove max width to fill the container */
    }

    .number {
        font-size: 1.5rem; /* Smaller font size for the number */
    }

    .weeded-text {
        font-size: 0.9rem; /* Smaller font size for weeded text */
    }
}

@media (max-width: 480px) { /* For mobile devices */
    .additional-content {
        padding: 10px; /* Further reduce padding on mobile */
    }

    .number {
        font-size: 1.25rem; /* Even smaller font size for the number */
    }

    .weeded-text {
        font-size: 0.8rem; /* Even smaller font size for weeded text */
    }

    .lad_container {
        padding: 15px;
    }
    .lad-project-content {
        padding: 20px;
    }
}

