        /* General Style */
        body {
            font-family: Arial, Helvetica, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            background-color: #f9f9f9; /* Light neutral background */
            color: #333;
        }
        
/* Header Styles */
header {
    display: flex;
    justify-content: space-between; /* Space between the sections */
    align-items: center; /* Vertically align items */
    background-color: #ffffff;
    border-bottom: 2px solid #cccccc;
    padding: 0 20px;
    height: 200px; /* Consistent header height */
    position: relative;
    overflow: hidden; /* Prevent any overflow */
}

/* Left Section (Empty for Balance) */
.header-left {
    flex: 1; /* Takes up space to balance layout */
}

/* Centered Logo Section */
.tree-rings {
    flex: 1;
    display: flex;
    justify-content: center; /* Center logo horizontally */
    align-items: center; /* Center logo vertically */
}

.tree-rings picture, .tree-rings img {
    max-height: 150px; /* Prevent logo from being too large */
    width: auto; /* Maintain aspect ratio */
    height: auto; /* Ensure proper scaling */
    display: block;
}

        /* Certifications Section */
        header .certifications {
            flex: 1;
            text-align: right;
            font-size: 0.9rem;
        }
        
        /* Medium Screens */
        @media (max-width: 1024px) {
            header {
                height: auto;
            }
        
            .tree-rings img {
                max-height: 120px; /* Smaller logo for medium screens */
            }
        
            header .certifications {
                max-width: 50%; /* Keep certifications compact */
            }
        }
        
        /* Small Screens */
        @media (max-width: 768px) {
            header {
                flex-wrap: wrap; /* Allow wrapping */
                height: auto; /* Dynamic height */
            }
        
            .header-left {
                display: none; /* Hide left section on small screens */
            }
        
            .tree-rings {
                width: 100%; /* Full width for logo */
            }
        
            .tree-rings picture img {
                max-width: 90%; /* Ensure logo fits within the screen */
                height: auto;
                margin: 0 auto; /* Center the logo */
            }
        
            header .certifications {
                position: static; /* Move below the header */
                margin-top: 10px;
                text-align: center; /* Center-align certifications */
                width: 100%; /* Full width for better alignment */
            }
        }

/* Storm Damage Banner */
.storm-damage-banner {
    width: 100%; /* Full width */
    max-width: 100vw; /* Prevent overflow beyond the viewport */
    background: linear-gradient(90deg, #ff4d4d, #ff0000); /* Eye-catching gradient */
    color: #ffffff; /* White text for contrast */
    text-align: center;
    padding: 10px 20px; /* Add padding for spacing */
    font-size: 1.2rem; /* Readable text size */
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    position: relative; /* Ensure it stays in flow */
    z-index: 999; /* Keep it above other content */
    overflow: hidden; /* Prevent horizontal scrolling */
    margin: 0 auto; /* Center align within the page */
    box-sizing: border-box; /* Include padding in width calculation */
}

/* Responsive Design */
@media (max-width: 768px) {
    .storm-damage-banner {
        font-size: 1rem; /* Adjust text size for smaller screens */
        padding: 8px 15px; /* Adjust padding */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .storm-damage-banner {
        font-size: 1rem; /* Adjust text size for smaller screens */
        padding: 8px 15px; /* Adjust padding */
    }
}



        /* Navigation */
        nav {
            background-color: #ffffff;
            border-top: 2px solid #cccccc;
            border-bottom: 2px solid #cccccc;
            position: relative;
            z-index: 1000; /* Ensure it appears above content */
        }
        
        nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        nav ul li {
            padding: 10px 20px;
        }
        
/* Navigation Links */
nav ul li a {
    color: #555555; /* Default color */
    text-decoration: none;
    font-size: 1.2rem; /* Default font size */
    text-transform: uppercase;
    font-family: 'Playfair Display', serif; /* Elegant font */
    font-weight: 600; /* Semi-bold by default */
    transition: transform 0.2s ease, font-weight 0.2s ease; /* Smooth transition */
}

nav ul li a:hover {
    font-weight: 700; /* Slightly bolder on hover */
    transform: scale(1.05); /* Slight zoom effect */
    text-decoration: none; /* No underline */
    color: #555555; /* Keep the same color */
}

/* Prevent Nav Bar Resizing */
nav ul li {
    display: inline-block;
    line-height: 1; /* Consistent height to prevent resizing */
}

        

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
        }
        
        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: #333;
            margin: 4px 0;
        }
        
        .nav-menu {
            display: flex;
            flex-direction: row;
            align-items: center;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
                margin-left: 10px;
            }
        
            .nav-menu {
                display: none;
                flex-direction: column;
                align-items: center;
                background-color: #ffffff;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                border: 2px solid #cccccc;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            }
        
            .nav-menu.active {
                display: flex;
            }
        
            nav ul li {
                width: 100%;
                text-align: center;
            }
        
            nav ul li a {
                display: block;
                width: 100%;
                padding: 10px 0;
            }
        }

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    overflow: hidden; /* Prevent content overflow */
    display: flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    color: #ffffff; /* White text for contrast */
    text-align: center;
    box-sizing: border-box; /* Ensure padding/borders don't exceed width */
    padding-top: 40px; /* Add padding to prevent content from sticking to the top */
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video fills the section */
    z-index: -1; /* Places the video behind other content */
    overflow: hidden; /* Prevents video from extending beyond container */
}

/* Hero Content */
.hero-content {
    z-index: 1; /* Ensure content is above the video */
    margin-bottom: 20px; /* Adjust space between hero content and note */
    padding: 20px; /* Add padding for better spacing */
}

/* Hero Content Title */
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Shadow for better readability */
}

.hero-note {
    z-index: 1;
    background: linear-gradient(90deg, #ff4d4d, #ff0000); /* Gradient for dynamic effect */
    color: #ffffff;
    padding: 15px 30px; /* Increase padding for emphasis */
    border-radius: 10px; /* Slightly more rounded corners */
    font-size: 1.2rem; /* Larger text */
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Stronger shadow for depth */
    animation: pulse 2s infinite; /* Subtle pulsing animation */
    margin-top: -20px; /* Move the note up slightly */
    position: relative; /* Ensure proper positioning */
}


/* Hover Effect */
.hero-note:hover {
    background: linear-gradient(90deg, #ff0000, #b30000); /* Slightly darker gradient on hover */
    transform: scale(1.05); /* Scale up slightly on hover */
    transition: all 0.3s ease;
}

/* Pulsing Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }
    100% {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: auto; /* Allow height to adjust for content */
        padding: 20px 10px; /* Add padding for smaller screens */
    }

    .hero-content h1 {
        font-size: 2rem; /* Adjust text size for smaller screens */
    }

    .hero-note {
        font-size: 1rem; /* Reduce text size for better fit */
        padding: 10px 20px; /* Adjust padding for smaller screens */
        margin-top: 20px; /* Add space between hero content and note */
    }
}

//Sticky Note was here

        
/* General Section Styling */
.estimate-section, #services {
    width: 100%; /* Full width for both sections */
    background-color: #ffffff; /* Unified white background */
    padding: 40px 20px; /* Consistent padding for both sections */
    text-align: center; /* Center-align content */
    border: none; /* Remove separators between sections */
    box-sizing: border-box; /* Ensure padding is included in width */
}

/* Headings for Both Sections */
.estimate-section h2, #services h2 {
    font-family: 'Playfair Display', serif; /* Consistent font */
    font-size: 2.5rem; /* Large, bold heading */
    font-weight: 600;
    text-transform: uppercase; /* Match nav bar style */
    color: #555555; /* Dark gray for consistency */
    margin-bottom: 20px;
}

/* Estimate Button */
.estimate-section button {
    padding: 15px 30px;
    background-color: #375635; /* Dark green for a more elegant look */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.5rem;
    cursor: pointer;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.estimate-section button:hover {
    background-color: #004d00; /* Slightly darker green on hover */
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Framed Estimate Section */
.estimate-frame {
    border: 2px solid #cccccc; /* Light gray border for the frame */
    border-radius: 8px; /* Rounded corners for a modern look */
    padding: 20px; /* Add space inside the frame */
    background-color: #ffffff; /* White background for consistency */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    max-width: 800px; /* Control the width of the frame */
    margin: 40px auto; /* Center the frame within the container */
    text-align: center; /* Center-align content inside the frame */
}

.estimate-frame h2 {
    font-family: 'Playfair Display', serif; /* Match other section titles */
    font-size: 2rem; /* Slightly smaller than main section titles */
    font-weight: 600; 
    text-transform: uppercase; /* Consistent style with other titles */
    color: #555555; /* Dark gray for contrast */
    margin-bottom: 20px;
}

.estimate-frame p {
    font-size: 1.2rem; /* Readable text size */
    line-height: 1.6; /* Improve readability */
    margin-bottom: 20px;
    color: #333333; /* Slightly darker text */
}

.estimate-frame button {
    padding: 15px 30px;
    background-color: #375635; /* Dark green to match the theme */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    max-width: 300px; /* Keep the button size reasonable */
    margin: 0 auto;
    display: block;
}

.estimate-frame button:hover {
    background-color: #004d00; /* Slightly darker green on hover */
    transform: scale(1.05); /* Subtle zoom effect on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .estimate-section, #services {
        padding: 20px 10px; /* Reduce padding on smaller screens */
    }

    .estimate-section h2, #services h2 {
        font-size: 2rem; /* Adjust heading size for smaller screens */
    }

    .estimate-section button {
        font-size: 1.2rem; /* Adjust button size for smaller screens */
        padding: 10px 20px; /* Reduce padding */
    }

    .estimate-frame {
        max-width: 100%; /* Ensure frame fits within the viewport */
        padding: 15px; /* Adjust padding for smaller screens */
    }

    .estimate-frame h2 {
        font-size: 1.8rem; /* Adjust heading size for mobile */
    }

    .estimate-frame p {
        font-size: 1rem; /* Adjust paragraph size for mobile */
    }

    .estimate-frame button {
        font-size: 1.2rem; /* Adjust button font size */
        padding: 10px 20px; /* Adjust button padding */
    }
}


/* Overall Section Styling */
#services {
    text-align: center; /* Ensure the entire section centers its content */
    margin: 0 auto;
    padding: 20px 0;
}

/* Services Heading */
#services h2 {
    font-family: 'Playfair Display', serif; /* Consistent with other headings */
    font-size: 2.5rem; /* Larger size for emphasis */
    font-weight: 600; /* Bold text */
    text-transform: uppercase; /* Match heading style */
    color: #555555; /* Dark gray text */
    text-align: center; /* Center-align the heading */
    margin-bottom: 20px; /* Space below the heading */
}

/* Service Cards Container */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center-align the service cards */
    gap: 20px; /* Consistent spacing between cards */
    max-width: 1200px; /* Aligns with container width */
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background-color: #ffffff;
    border: 2px solid #cccccc;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(30% - 20px); /* Dynamically sized cards */
    min-width: 250px;
    max-width: 350px; /* Consistent width */
    min-height: 350px; /* Ensure height fits content */
    position: relative; /* Needed for the "More" indicator */
    overflow: hidden; /* Prevent content overflow */
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* Hover Effect for Service Cards */
.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Service Images */
.service-image {
    width: 100%;
    height: 150px; /* Consistent image height */
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Service Titles */
.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 10px;
}

/* Service Descriptions */
.service-card p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.5;
    margin-top: 10px;
}

/* More Indicator Styling */
.more-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.9rem;
    color: #555555; /* Subtle gray color */
    cursor: pointer;
}



/* Ensure Modals are Full-Screen */
div.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%; /* Full screen width */
    height: 100%; /* Full screen height */
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    overflow: auto; /* Scroll if content exceeds height */
}

/* Modal Content Styling */
.modal-content {
    background-color: #ffffff;
    margin: 5% auto; /* Center the modal vertically and horizontally */
    padding: 20px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Drop shadow for depth */
    width: 80%; /* Wider modal (80% of the screen) */
    max-width: 1200px; /* Limit max width on large screens */
    overflow-y: auto; /* Scrollable if content overflows */
    max-height: 90%; /* Prevent modal from exceeding viewport height */
    box-sizing: border-box; /* Include padding in width calculation */
}

/* Close Button */
div.modal-content .close {
    color: #333333;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    margin-top: -10px;
}

div.modal-content .close:hover {
    color: #555555;
}

/* Modal Image Styling */
.modal-content img {
    width: 100%; /* Full width inside modal */
    max-width: 600px; /* Limit maximum size */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Subtle drop shadow */
    display: block;
    margin: 20px auto; /* Center the image */
}

/* Service Image Styling */
.service-image {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    border-radius: 5px; /* Rounded corners */
    margin-bottom: 15px;
}

/* General Submit Button Style */
.modal button {
    padding: 15px 30px;
    background-color: #375635; /* Dark green for consistency */
    color: #ffffff;
    border: none;
    border-radius: 5px; /* Rounded corners */
    font-size: 1.2rem; /* Slightly smaller than main buttons */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    max-width: 300px; /* Manageable button width */
    margin: 20px auto 0; /* Center the button */
    display: block; /* Ensure centered alignment */
}

/* Hover Effect */
.modal button:hover {
    background-color: #004d00; /* Slightly darker green on hover */
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .modal-content {
        width: 95%; /* Slightly smaller modal width on mobile */
        padding: 15px; /* Reduce padding for smaller screens */
    }

    .modal-content img {
        max-width: 100%; /* Ensure images fit within modal on mobile */
        height: auto; /* Maintain aspect ratio */
    }

    .modal button {
        font-size: 1rem; /* Adjust button font size for smaller screens */
        padding: 10px 20px; /* Reduce padding */
        max-width: 250px; /* Slightly smaller button width */
    }
}



/* Community Section */
.community-section {
    width: 100%; /* Full-width section */
    background-color: #ffffff; /* White background for consistency */
    padding: 40px 20px; /* Consistent padding */
    border-top: 2px solid #cccccc; /* Optional top border for separation */
    border-bottom: 2px solid #cccccc; /* Optional bottom border for separation */
    box-sizing: border-box; /* Include padding in width calculation */
}

/* Container for Content */
.community-section .container {
    max-width: 1200px; /* Centered content with controlled width */
    margin: 0 auto;
    text-align: left; /* Left-align text for readability */
    padding: 0 10px; /* Prevent content from touching screen edges */
}

/* Section Title */
.community-section h2 {
    font-family: 'Playfair Display', serif; /* Match other section titles */
    font-size: 2.5rem; /* Large and bold */
    font-weight: 600; 
    text-transform: uppercase; /* Consistent style with other titles */
    color: #555555; /* Dark gray for contrast */
    text-align: center; /* Center-align the title */
    margin-bottom: 20px;
}

/* Paragraphs */
.community-section p {
    font-size: 1.2rem; /* Slightly larger for readability */
    line-height: 1.6; /* Improve readability */
    margin-bottom: 20px;
    color: #333333; /* Darker text for readability */
}

/* Buttons Container */
.community-section .buttons {
    display: flex;
    gap: 20px; /* Space between buttons */
    justify-content: center; /* Center-align buttons */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    margin-top: 20px;
}

/* Individual Buttons */
.community-link {
    padding: 15px 30px; /* Match padding with Get an Estimate button */
    background-color: #375635; /* Dark green background */
    color: #ffffff;
    border: none;
    border-radius: 5px; /* Rounded corners */
    font-size: 1.5rem; /* Match font size */
    font-weight: bold;
    text-transform: uppercase; /* Consistent style */
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: auto; /* Allow buttons to size dynamically */
    max-width: 300px; /* Set a reasonable max width */
}

/* Hover Effect */
.community-link:hover {
    background-color: #004d00; /* Slightly darker green on hover */
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .community-section {
        padding: 20px 10px; /* Reduce padding for smaller screens */
    }

    .community-section h2 {
        font-size: 2rem; /* Adjust title size for smaller screens */
    }

    .community-section p {
        font-size: 1rem; /* Reduce paragraph size for readability */
    }

    .community-link {
        font-size: 1.2rem; /* Adjust button font size */
        padding: 10px 20px; /* Reduce padding */
        max-width: 100%; /* Ensure buttons fit within the viewport */
    }
}
/* Initiative Frame Style */
.initiative-frame {
    border: 2px solid #cccccc; /* Light gray border for the frame */
    border-radius: 8px; /* Rounded corners for a modern look */
    padding: 20px; /* Add space inside the frame */
    background-color: #ffffff; /* White background for contrast */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    max-width: 800px; /* Control the width of the frame */
    margin: 30px auto; /* Center the frame within the container */
    text-align: left; /* Align text to the left for readability */
}

/* Section Title */
.initiative-frame h3 {
    font-family: 'Playfair Display', serif; /* Match other section titles */
    font-size: 1.8rem; /* Slightly smaller than main section titles */
    font-weight: 600;
    color: #375635; /* Dark green for contrast */
    margin-bottom: 15px;
    text-align: center; /* Center-align the title */
}

/* List Styling */
.initiative-frame ul {
    padding-left: 20px; /* Indent list items */
    font-size: 1rem; /* Standard font size for readability */
    color: #333333; /* Dark gray text */
}

.initiative-frame ul li {
    margin-bottom: 10px; /* Add space between list items */
    line-height: 1.5; /* Improve readability */
}




        /* FAQs Button Style */
        .faq-button {
            background-color: #ffffff;
            color: #333333;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            text-transform: uppercase;
            font-weight: bold;
            border: 2px solid #cccccc;
            cursor: pointer;
            margin-top: 20px; /* Add spacing */
            transition: background-color 0.3s ease, transform 0.2s ease; /* Add smooth transitions */
        }
        
        .faq-button:hover {
            background-color: #eeeeee;
            color: #333333;
            transform: scale(1.05); /* Slight zoom on hover */
        }
        
        /* FAQs Section */
        .faqs-section {
            padding: 40px 20px;
            background-color: #f4f4f4; /* Light gray background for clarity */
            border-top: 2px solid #cccccc;
            text-align: left;
            box-sizing: border-box; /* Include padding in width calculation */
        }
        
        /* Section Title */
        .faqs-section h2 {
            text-align: center;
            font-family: 'Playfair Display', serif; /* Elegant font for titles */
            font-size: 2.5rem; /* Larger title for emphasis */
            text-transform: uppercase;
            margin-bottom: 20px;
            color: #333333;
        }
        
        /* FAQ Items */
        .faq-item {
            margin-bottom: 15px;
            border-bottom: 1px solid #cccccc;
            padding-bottom: 10px;
        }
        
        /* FAQ Question Buttons */
        .faq-question {
            width: 100%;
            background-color: #ffffff;
            color: #333333;
            text-align: left;
            font-size: 1.2rem;
            font-weight: bold;
            border: none;
            outline: none;
            cursor: pointer;
            padding: 10px 15px;
            transition: background-color 0.3s ease, color 0.3s ease;
            border-radius: 5px; /* Add rounded corners for consistency */
        }
        
        .faq-question:hover {
            background-color: #eeeeee;
            color: #555555;
        }
        
        /* FAQ Answers */
        .faq-answer {
            display: none; /* Hidden by default */
            padding: 10px 15px;
            background-color: #ffffff;
            color: #555555;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin-top: 10px; /* Add spacing above answers */
        }
        
        .faq-answer ul {
            margin: 0;
            padding-left: 20px;
        }
        
        .faq-answer ul li {
            margin-bottom: 10px;
            list-style-type: disc;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .faqs-section {
                padding: 20px 10px; /* Reduce padding for smaller screens */
            }
        
            .faqs-section h2 {
                font-size: 2rem; /* Adjust title size for smaller screens */
            }
        
            .faq-question {
                font-size: 1rem; /* Adjust question size for mobile */
                padding: 8px 12px; /* Adjust padding */
            }
        
            .faq-answer {
                font-size: 0.9rem; /* Adjust answer text size for readability */
                padding: 8px 12px; /* Reduce padding */
            }
        }


        
/* About Us Section */
.about-us {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
    text-align: left;
    background-color: #f9f9f9; /* Optional: Set background color */
    gap: 20px; /* Add spacing between elements */
    position: relative; /* Ensure proper layout stacking */
    z-index: 1; /* Lower than Post-it Note */
}
/* About Us Section Title */
.about-us h2 {
    font-family: 'Playfair Display', serif; /* Consistent with other titles */
    font-size: 2.5rem; /* Large and bold */
    font-weight: 600;
    text-transform: uppercase; /* Matches other section titles */
    color: #555555; /* Consistent dark gray color */
    text-align: left; /* Left-align the title */
    margin-bottom: 20px;
}

.about-us .about-text {
    flex: 1;
    min-width: 300px; /* Ensure it doesn't shrink too much */
}

.about-us .about-image {
    flex: 1;
    max-width: 400px; /* Set a maximum width for the image */
    text-align: center; /* Center-align image in its column */
}

.about-us .about-image img {
    width: 100%;
    max-width: 400px; /* Limit image size */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add shadow */
}
/* General Container */
.container {
    max-width: 1200px; /* Default width for all sections */
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

        /* Specific Styling for Services Section */
        #services .container {
            max-width: 1400px; /* Increase the width specifically for the services section */
        }
                
        /* Nomination Modal */
        #nominationModal.modal {
            display: none;
            position: fixed;
            z-index: 1000; /* Ensure it's above all other elements */
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
            overflow: auto; /* Allow scrolling inside the modal if needed */
        }
        
        #nominationModal .modal-content {
            background-color: #ffffff;
            margin: 5% auto;
            padding: 20px;
            border: 2px solid #cccccc;
            border-radius: 8px;
            width: 90%; /* Set responsive width */
            max-width: 600px; /* Limit max width for smaller modals */
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
            position: relative; /* Ensure it's positioned within the modal */
        }
        
        #nominationModal .modal-content .close {
            color: #333333;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        
        #nominationModal .modal-content .close:hover {
            color: #555555;
        }


/* Considerations Section */
.considerations {
    width: 100%; /* Full-width section */
    background-color: #f4f4f4; /* Light gray background */
    padding: 40px 20px; /* Consistent padding */
    border-top: 2px solid #cccccc; /* Optional top border for separation */
    border-bottom: 2px solid #cccccc; /* Optional bottom border for separation */
    box-sizing: border-box; /* Include padding in width calculation */
}

/* Main Title Styling */
.considerations h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; /* Main title size */
    font-weight: 600;
    color: #555555;
    text-align: center;
    margin-bottom: 20px;
}

/* Subheading Styling */
.considerations .subheading {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; /* Slightly smaller than main title */
    font-weight: 500; /* Lighter weight for distinction */
    color: #555555;
    text-align: left; /* Left-aligned for readability */
    margin-bottom: 15px;
    line-height: 1.5; /* Improve readability */
}

/* Container for Content */
.considerations .container {
    max-width: 1200px; /* Centered content with controlled width */
    margin: 0 auto;
    text-align: left; /* Default text alignment for content */
    padding: 0 10px; /* Add padding to prevent edge overflow */
}

/* Paragraphs and List Items */
.considerations p {
    font-size: 1.2rem; /* Larger for readability */
    margin-bottom: 20px;
    color: #333333; /* Slightly darker text for readability */
}

.considerations ul {
    padding-left: 20px; /* Indent lists */
    margin-top: 10px;
    font-size: 1.1rem; /* Slightly larger list font */
    color: #333333;
}

.considerations ul li {
    margin-bottom: 15px; /* Space between list items */
    line-height: 1.6; /* Improve readability */
}

.considerations ul li ul {
    margin-top: 5px;
    padding-left: 20px;
    list-style-type: disc; /* Nested lists with bullets */
}

        /* Responsive Design */
        @media (max-width: 768px) {
            .considerations {
                padding: 20px 10px; /* Adjust padding for smaller screens */
            }
        
            .considerations h2 {
                font-size: 2rem; /* Adjust title size for smaller screens */
            }
        
            .considerations .subheading {
                font-size: 1.5rem; /* Adjust subheading size */
            }
        
            .considerations p,
            .considerations ul li {
                font-size: 1rem; /* Reduce text size for readability */
            }
        }
        
//Certificates was here

        /* FAQs Section */
        .faqs-section {
            width: 100%; /* Full-width section */
            background-color: #f4f4f4; /* Light gray background for separation */
            padding: 40px 20px; /* Consistent padding */
            border-top: 2px solid #cccccc; /* Optional top border for separation */
            border-bottom: 2px solid #cccccc; /* Optional bottom border for separation */
        }
        
        .faqs-section .container {
            max-width: 1200px; /* Centered content with controlled width */
            margin: 0 auto;
            text-align: left; /* Left-align text for readability */
        }
        
        /* Section Title */
        .faqs-section h2 {
            font-family: 'Playfair Display', serif; /* Match other section titles */
            font-size: 2.5rem; /* Large and bold */
            font-weight: 600; 
            text-transform: uppercase; /* Consistent style with other titles */
            color: #555555; /* Dark gray for contrast */
            text-align: center; /* Center-align the title */
            margin-bottom: 20px;
        }
        
        /* Paragraphs */
        .faqs-section p {
            font-size: 1.2rem; /* Slightly larger for readability */
            line-height: 1.6; /* Improve readability */
            margin-bottom: 20px;
            color: #333333; /* Darker text for readability */
        }
        
        /* FAQ Items */
        .faq-item {
            margin-bottom: 20px;
        }
        
        .faq-question {
            display: block;
            width: 100%;
            font-size: 1.2rem;
            padding: 10px 20px;
            background-color: #ffffff; /* White background for contrast */
            border: 2px solid #cccccc;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        
        .faq-question:hover {
            background-color: #eeeeee; /* Slightly darker gray on hover */
            transform: scale(1.02); /* Slight zoom effect */
        }
        
        .faq-answer {
            display: none; /* Initially hidden */
            margin-top: 10px;
            padding: 10px 20px;
            background-color: #f9f9f9; /* Slightly different gray for contrast */
            border-radius: 5px;
            border: 1px solid #cccccc;
        }
        
        .faq-answer p, .faq-answer ul, .faq-answer ol {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .faq-answer ul {
            padding-left: 20px;
            list-style-type: disc;
        }


/* Footer Styles */
footer {
    background-color: #375635; /* Dark green background */
    padding: 40px 20px;
    color: #ffffff; /* White text */
    text-align: center;
    border-top: 2px solid #004d00; /* Slightly darker green for separation */
}

footer a {
    color: #ffffff; /* White links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #cccccc; /* Light gray on hover */
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #ffffff; /* White icons */
    font-size: 1.5rem; /* Icon size */
    transition: transform 0.2s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #cccccc; /* Light gray on hover */
    transform: scale(1.2); /* Slight zoom effect */
}

/* Responsive Footer Adjustments */
@media (max-width: 768px) {
    footer {
        padding: 30px 10px; /* Reduce padding on smaller screens */
    }

    .social-icons a {
        font-size: 1.2rem; /* Slightly smaller icons for small screens */
    }
}