/* General Styles */
body {
    font-family: 'Inter', sans-serif; /* Using a modern sans-serif font */
    margin: 0;
    padding: 0;
    background-color: #f3f4f6; /* Light gray background */
    color: #374151; /* Dark gray text */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container for consistent content width */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem; /* 16px */
    padding-right: 1rem; /* 16px */
}

/* Helper Classes for responsive spacing/alignment */
.mx-auto { margin-left: auto; margin-right: auto; }
.max-width-md { max-width: 768px; }
.max-width-sm { max-width: 640px; }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-8 { margin-top: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.hidden { display: none !important; }
.flex-buttons { display: flex; gap: 0.5rem; } /* For cookie banner buttons */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.space-y-2 > *:not([hidden]) ~ *:not([hidden]) { margin-top: 0.5rem; }
.space-x-2 > *:not([hidden]) ~ *:not([hidden]) { margin-left: 0.5rem; }
.space-x-4 > *:not([hidden]) ~ *:not([hidden]) { margin-left: 1rem; }
.space-x-6 > *:not([hidden]) ~ *:not([hidden]) { margin-left: 1.5rem; }

/* OVERLAY STYLES */
        /* OVERLAY STYLES */
        .promo-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7); /* Dark semi-transparent background */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000; /* Ensure it is on top of everything */
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .promo-overlay.hidden {
            display: none;
            opacity: 0;
        }

        .promo-content-container {
            background: #ffffff;
            color: #1f2937;
            padding: 2.5rem;
            border-radius: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
            max-width: 90%;
            width: 45%; /* Max width on desktop */
            text-align: center;
            border: 4px solid #059669; /* Primary Emerald Border */
            transform: scale(1);
            transition: transform 0.3s ease;
            position: relative;
            cursor: pointer; /* Indicate that clicking the white box does something */
        }

        /* Content Styling */
        .promo-title {
            font-size: 1.75rem;
            font-weight: 800;
            color: #059669; /* Primary Emerald */
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .promo-subtitle {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 1.5rem;
        }

        .promo-dates {
            font-size: 0.95rem;
            color: #4b5563;
            font-weight: 500;
            margin: 1rem 0;
            padding: 0.5rem;
            border: 1px dashed #d1d5db;
            border-radius: 0.5rem;
            display: inline-block;
        }

        .promo-image {
            width: 100%;
            max-width: 250px;
            height: auto;
            border-radius: 0.75rem;
            margin: 0.5rem auto 1.5rem auto;
            display: block;
            object-fit: cover;
            border: 2px solid #a7f3d0;
        }

        /* Primary Button Style */
        .button-primary {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background-color: #059669; /* Emerald 600 */
            color: white;
            text-decoration: none;
            border-radius: 0.5rem;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: background-color 0.2s, box-shadow 0.2s, transform 0.1s;
            box-shadow: 0 4px #047857; /* Darker emerald for depth */
            border: none;
            cursor: pointer; /* Override the container's pointer for buttons */
        }

        .button-primary:hover {
            background-color: #047857; /* Emerald 700 */
            box-shadow: 0 2px #047857;
            transform: translateY(2px);
        }

        .button-primary:active {
            background-color: #065f46; /* Emerald 800 */
            box-shadow: none;
            transform: translateY(4px);
        }

        .promo-dismiss-hint {
            font-size: 0.75rem;
            color: #9ca3af;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: #166534; /* Deeper green */
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 1rem 0; /* py-4 */
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Areas Served Section */
.area-served-banner {
    position: relative;
    width: 100%;
    height: 2.3rem; /* h-[60vh] */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #15803d; /* bg-green-700 */
    color: white;
    overflow: hidden;
}

.logo h1 {
	display: flex;
	position: relative;
    font-size: 2.25rem; /* text-3xl */
    font-weight: 800; /* font-extrabold */
    letter-spacing: -0.025em; /* tracking-tight */
    margin: 0;
    background-color: #CCFCD2; /* bg-green-BlueRomance */
    background-image: url('./images/logo-web-1.png'); /* logo top banner */
    background-size: cover;
    background-position: center;
	overflow: hidden;
    width: 150px;
	height: 103px;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.main-nav {
    display: none; /* Hidden by default on mobile */
    flex-grow: 1;
    justify-content: flex-end;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem; /* space-x-6 */
    font-size: 1.125rem; /* text-lg */
    font-weight: 900; /* heavy */
}

.nav-link {
    display: block;
    padding: 0.5rem 0.75rem; /* px-3 py-2 */
    border-radius: 0.375rem; /* rounded-md */
    color: #e2e8f0; /* text-gray-200 */
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.nav-link:hover {
    background-color: #CCFCD2; /* hover:bg-green-BlueRomance */
}

.nav-link.active {
    background-color: #15803d; /* bg-green-700 */
    color: white;
}

/* Mobile Menu Button */
.menu-button-wrapper {
    display: block; /* Show by default on mobile */
}

.mobile-menu-button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
}

.icon-menu, .icon-close {
    width: 2rem; /* w-8 */
    height: 2rem; /* h-8 */
}

/* Mobile Navigation Open State */
.main-nav.open {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
    gap: 0.5rem; /* space-y-2 */
    text-align: center;
}

.main-nav.open .nav-link {
    padding: 0.75rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 40vh; /* h-[40vh] */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #15803d; /* bg-green-700 */
    color: white;
    overflow: hidden;
    background-image: url('./images/rv-storage-image-1.jpg'); /* background lower banner */
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0; /* top:0, right:0, bottom:0, left:0 */
    background-color: black;
    opacity: 0.5; /* opacity-50 */
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 1rem; /* p-4 */
    max-width: 48rem; /* max-w-4xl */
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 700; /* font-bold */
    margin-bottom: 1rem; /* mb-4 */
}

.area-served-subtitle {
    font-size: 1rem; /* text-x1 */
    font-variant: small-caps; /* banner-top */
    margin-bottom: 1rem; /* mb-4 */
}

.hero-subtitle {
    font-size: 0.9rem; /* text-x1 */
    margin-bottom: 1rem; /* mb-4 */
}
.section-full-width {
	margin-left: 1rem; /*about 16px space left*/
	margin-right: 1rem; /*about 16px space left*/
}

/* Buttons */
.button-primary {
    display: inline-block;
    padding: 0.75rem 2rem; /* px-8 py-3 */
    background-color: white;
    color: #15803d; /* text-green-700 */
    font-weight: 600; /* font-semibold */
    border-radius: 9999px; /* rounded-full */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.button-primary:hover {
    background-color: #e5e7eb; /* hover:bg-gray-200 */
    transform: scale(1.05);
}

.button-secondary {
    display: inline-block;
    background-color: #16a34a; /* bg-green-600 */
    color: white;
    padding: 0.75rem 1.5rem; /* px-6 py-3 */
    border-radius: 9999px; /* rounded-full */
    font-weight: 600; /* font-semibold */
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button-secondary:hover {
    background-color: #15803d; /* hover:bg-green-700 */
}

.button-submit {
    background-color: #16a34a; /* bg-green-600 */
    color: white;
    font-size: 1.5rem; 
	font-weight: 700; /* font-bold */
    padding: 0.75rem 1.5rem; /* py-3 px-6 */
    border-radius: 9999px; /* rounded-full */
    border: none;
    cursor: pointer;
    width: 100%; /* w-full */
    transition: background-color 0.3s ease;
}

.button-submit:hover {
    background-color: #15803d; /* hover:bg-green-700 */
}

.button-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* Section Styling */
.section {
    padding-top: 2rem; /* py-16 */
    padding-bottom: 2rem; /* py-16 */
    background-color: white;
    border-bottom: 1px solid #e5e7eb; /* border-b border-gray-200 */
}
.bg-light-gray {
    background-color: #f9fafb; /* bg-gray-50 */
}
.section-header {
    text-align: center;
    margin-bottom: 1rem; /* mb-12 */
}
.section-title {
    font-size: 2.25rem; /* text-3xl */
    font-weight: 700; /* font-bold */
    color: #15803d; /* text-green-700 */
    margin-bottom: 0.75rem; /* mb-3 */
}

.section-subtitle {
    font-size: 1.25rem; /* text-xl */
    color: #4b5563; /* text-gray-600 */
}

.text-content {
    margin-bottom: 1rem; /* mb-4 */
}
.text-lg-mb-8 { /* Specific style for text-lg mb-8 that was in React */
    font-size: 1.125rem; /* text-lg */
    margin-bottom: 2rem; /* mb-8 */
}
.text-small-mt-8 { /* Specific style for text-md mt-8 text-gray-600 that was in React */
    font-size: 0.875rem; /* text-md */
    margin-top: 2rem; /* mt-8 */
    color: #4b5563; /* text-gray-600 */
}
.text-call-to-action { /* Specific style for text-2xl font-bold text-green-700 mb-6 */
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700; /* font-bold */
    color: #15803d; /* text-green-700 */
    margin-bottom: 1.5rem; /* mb-6 */
}

/* Generic Grid Layouts (used for pricing section) */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr; /* Default to single column on mobile */
    gap: 2rem; /* gap-8 */
}
.grid-layout.two-column-grid {
    grid-template-columns: 1fr; /* Default to single column on mobile */
}
.grid-layout.responsive-gallery {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
}
tr:nth-child(odd) {
  background-color: #D6EEEE;
}

/* Feature Card Grid (Specific to Benefits Section) */
.feature-cards-grid { /* NEW CLASS for feature cards container */
    display: grid;
    grid-template-columns: 1fr; /* Default to single column on mobile */
    gap: 2rem; /* gap-8 */
}


/* Feature Card */
.feature-card {
    background-color: #f9fafb; /* bg-gray-50 */
    padding: 1.5rem; /* p-6 */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
    border: 1px solid #f3f4f6; /* border border-gray-100 */
    text-align: center;
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem; /* mb-4 */
}

.icon-svg {
    height: 3rem; /* h-12 */
    width: 3rem; /* w-12 */
    color: #059669; /* text-green-600 */
}

.feature-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600; /* font-semibold */
    color: #166534; /* text-green-800 */
    margin-bottom: 0.75rem; /* mb-3 */
}

.feature-description {
    color: #374151; /* text-gray-700 */
}

/* Responsive Image Placeholders within Feature Cards */
.feature-image { /* NEW common class for image placeholders */
    width: 100%;
    padding-top: 66.66%; /* Maintain 3:2 aspect ratio (e.g., 300px wide, 200px tall) */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0.5rem; /* Match feature-card border-radius */
    overflow: hidden; /* Hide anything outside bounds */
    margin-bottom: 1rem; /* Space below image if other content follows */
}

.feature-image-rv4 {
	background-image: url('./images/rv-storage-4.jpg'); /*security camera on pole */
}
.feature-image-rv6 { /* NEW class name for clarity */
	background-image: url('./images/rv-storage-6.jpg'); /*wide open driveway */
}
.feature-image-rv_storage { /* NEW class name for clarity */
	background-image: url('./images/rv-storage.jpg'); /*variety of units */
}


/* Price Card */
.price-card {
    background-color: white;
    border: 1px solid #d1fae5; /* border-green-200 */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
    padding: 1.5rem; /* p-6 */
    text-align: center;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: scale(1.05);
}

.price-title {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700; /* font-bold */
    color: #15803d; /* text-green-700 */
    margin-bottom: 0.5rem; /* mb-2 */
}

.price-size {
    color: #059669; /* text-green-600 */
    font-size: 1.25rem; /* text-xl */
    font-weight: 600; /* font-semibold */
    margin-bottom: 1rem; /* mb-4 */
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem; /* mb-6 */
    color: #374151; /* text-gray-700 */
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* space-y-2 */
    align-items: center;
}

.price-features li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-check {
    height: 1.25rem; /* h-5 */
    width: 1.25rem; /* w-5 */
    color: #22c55e; /* text-green-500 */
    margin-right: 0.5rem; /* mr-2 */
}

/* Gallery */
.gallery-item {
    background-color: #e5e7eb; /* bg-gray-200 */
    border-radius: 0.5rem; /* rounded-lg */
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); /* shadow-md */
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 8rem; /* h-32 */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 0.5rem; /* p-2 */
    text-align: center;
    font-size: 0.875rem; /* text-sm */
    color: #4b5563; /* text-gray-600 */
}


/* Testimonials */
.testimonial-card {
    background-color: #f9fafb; /* bg-gray-50 */
    padding: 1.5rem; /* p-6 */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
    border: 1px solid #f3f4f6; /* border border-gray-100 */
}

.testimonial-quote {
    font-style: italic;
    color: #374151; /* text-gray-700 */
    margin-bottom: 1rem; /* mb-4 */
    font-size: 1.125rem; /* text-lg */
}

.testimonial-author {
    font-weight: 600; /* font-semibold */
    color: #1f2937; /* text-gray-800 */
}

/* Contact Form */
.contact-form-style {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 640px; /* max-w-xl from React, adjusting to sm */
    padding: 1.5rem; /* p-6 */
    background-color: white;
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
    border: 1px solid #e5e7eb; /* border border-gray-200 */
}

.form-group {
    margin-bottom: 1rem; /* space-y-4 */
}

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    color: #374151; /* text-gray-700 */
    font-size: 0.875rem; /* text-sm */
    font-weight: 700; /* font-bold */
    margin-bottom: 0.5rem; /* mb-2 */
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow */
    appearance: none;
    border: 1px solid #d1d5db; /* border */
    border-radius: 0.25rem; /* rounded */
    width: 100%;
    padding: 0.5rem 0.75rem; /* py-2 px-3 */
    color: #374151; /* text-gray-700 */
    line-height: 1.25; /* leading-tight */
    outline: none; /* focus:outline-none */
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #22c55e; /* focus:border-green-500 */
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25); /* focus:shadow-outline */
}

.hidden-field { /* For Web3Forms botcheck */
    display: none;
}

.form-status-message {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    text-align: center;
}

.form-status-message.success {
    color: #22c55e; /* text-green-500 */
}

.form-status-message.error {
    color: #ef4444; /* text-red-500 */
}


/* Footer */
.footer {
    background-color: #FFFFFF; /* bg-white */
	/* Removed linear-gradient as variables are not defined in plain CSS */
    color: black;
    padding-top: 0; /* Remove top padding to let footer-bar sit at top */
    padding-bottom: 2rem; /* py-8 for content below the bar */
    line-height: 1.5; /* Default line height for readability */
}

#footer-bar {
    height: 5px; /* Fixed height for the bar */
    background-color: #a3a3a3; /* Gray color for the bar */
    width: 100%; /* Ensure it's 100% wide */
    margin-bottom: 1rem; /* Space between the bar and the next content */
}

.footer-top-content {
    display: flex;
    flex-direction: column; /* Stack logo and text on small screens */
    align-items: center;
    text-align: center;
    margin-bottom: .2rem; /* Space before three-column section */
    padding-bottom: 0.2rem; /* Add some padding to the bottom of this section */
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */ /* Removed border for current color scheme */
}

.footer-logo-wrapper {
    margin-bottom: 0rem; /* Space between logo and text */
    padding: 0;
}

.footer-logo {
    width: 5rem; /* 80px */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensures it behaves as a block element for centering */
    margin: 0 auto; /* Center the image */
}

.footer-description {
    font-size: 0.875rem; /* text-sm */
    max-width: 600px; /* Limit width for readability */
}

/* Three-Column Container */
.three-column-container {
    display: grid; /* Use CSS Grid for better control */
    grid-template-columns: 1fr; /* Default to single column on mobile */
    gap: 1rem; /* Gap between columns */
    margin-bottom: 0; /* Space below this section */
    padding-bottom: 0; /* Add some padding to the bottom */
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */ /* Removed border for current color scheme */
}

.footer-column {
    /* Styles for individual columns */
    padding: .25rem; /* Internal padding for each column */
    text-align: center; /* Center content by default */
}

.footer-column h3 {
    font-size: 1.125rem; /* text-lg */
    font-weight: 700; /* font-bold */
    color: black; /* Light gray for headings */
    margin-bottom: .25rem; /* Space below heading */
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
	font-size: 0.95rem;
}

.footer-nav-list li {
    margin-bottom: 0rem; /* Space between list items */
}

.footer-nav-list a {
    color: #a0aec0; /* Lighter gray for links */
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-nav-list a:hover {
    color: black;
}

.contact-item {
    display: flex;
    align-items: flex-start; /* Align icon and text at the top */
    margin-bottom: 0rem;
    gap: 0.5rem; /* space-x-2 */
    text-align: left; /* Align text within the contact item */
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    /* Basic styling for custom icon classes */
    width: 1.5rem; /* icon size */
    height: 1.5rem; /* icon size */
    flex-shrink: 0; /* Prevent icon from shrinking */
    background-color: #a0aec0; /* Placeholder color for the icon shape */
    border-radius: 50%; /* Make it round */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937; /* Icon color */
    font-size: 0.8rem; /* Size of text inside placeholder circle */
    font-style: normal; /* Remove italic from <i> */
}

/* Example: Specific icon placeholders (replace with actual icons if needed) */
.contact-item .envelope::before { font-size: 1.2em; } /* Email emoji &#x1f4e7; */
.contact-item .phone::before { font-size: 1.2em; } /* Telephone Reciever &#128222; */
.contact-item .clock::before { font-size: 1.2em; } /* Alarm clock &#x23f0; */

.contact-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: black;
    margin: 0;
}

.contact-item p, .contact-item a {
    font-size: 0.875rem; /* text-sm */
    color: #a0aec0;
    text-decoration: none;
	margin:0;
	padding: 0;
}

.contact-item a:hover {
	color: black;
    text-decoration: none;
}

.footer-address {
    font-style: normal; /* Remove default italic for address */
    color: #a0aec0;
    font-size: 0.875rem;
}

.footer-address a {
    color: #a0aec0;
    text-decoration: none;
}

.footer-address a:hover {
    text-decoration: underline;
}


/* Copyright Section */
.copy-section {
    background-color: #111827; /* Darker background for copyright */
    padding: 1rem 0; /* py-4 */
    text-align: center;
    font-size: 0.8rem; /* text-xs */
    color: #cbd5e0; /* text-gray-300 */
}

.copy-content {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    align-items: center;
    gap: 0.5rem; /* space-y-2 */
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* space-x-2 */
    text-decoration: none;
    color: #cbd5e0;
}

.social-link:hover {
    color: white;
}

.social-link i {
    /* Placeholder for social icon */
    width: 1.5rem;
    height: 1.5rem;
    background-color: #a0aec0; /* Placeholder color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 0.8em;
    font-style: normal;
}

.social-link .facebook::before { content: "📘"; font-size: 1.2em; } /* Corrected emoji */


/* Cookie Consent Banner */
.fixed-bottom-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #111827; /* bg-gray-900 */
    color: white;
    padding: 1rem; /* p-4 */
    z-index: 9999;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1), 0 -2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-lg */
    display: flex;
    flex-direction: column; /* flex-col */
    align-items: center; /* items-center */
    justify-content: space-between; /* justify-between */
    gap: 0.75rem; /* space-y-3 */
}

.fixed-bottom-banner p {
    font-size: 0.875rem; /* text-sm */
    text-align: center;
}

.fixed-bottom-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 600; /* font-semibold */
}

.fixed-bottom-banner .button-accept,
.fixed-bottom-banner .button-decline {
    font-size: 0.875rem; /* text-sm */
    font-weight: 600; /* font-semibold */
    padding: 0.5rem 1rem; /* py-2 px-4 */
    border-radius: 0.375rem; /* rounded-md */
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    color: white;
}

.fixed-bottom-banner .button-accept {
    background-color: #059669; /* bg-green-600 */
}

.fixed-bottom-banner .button-accept:hover {
    background-color: #047857; /* hover:bg-green-700 */
}

.fixed-bottom-banner .button-decline {
    background-color: #374151; /* bg-gray-700 */
}

.fixed-bottom-banner .button-decline:hover {
    background-color: #4b5563; /* hover:bg-gray-600 */
}


/* Privacy Policy Section (can be toggled visible/hidden) */
.privacy-policy-section {
    padding: 2rem;
    margin: 2rem auto;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.privacy-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #15803d;
    margin-bottom: 1.5rem;
}

.privacy-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.privacy-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-list li {
    margin-bottom: 0.5rem;
}

.text-gray-small {
    color: #4b5563;
    font-size: 0.875rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 639px) { /* sm breakpoint */
    .nav-link {
		font-size: .6rem;
    }
	.not-mobile { 
		border: 0; 
		margin: 0; 
		gap: 0rem; 
		box-shadow: none; 
		font-size: 0;
		visibility: hidden;
		display: none; 
		}
	.area-served-banner {    height: 4.6rem; } /* h-[60vh] double height to allow wrap.*/
    .hero-title { font-size: 1.5rem; } /* sm:text-5xl */
    .hero-subtitle { font-size: 1rem; } /* sm:text-xl */
    .section-title { font-size: 1.5rem; } /* sm:text-4xl */
    .section-subtitle { font-size: 1.2rem; } /* sm:text-xl */
	.footer-column {
        text-align: left; /* Align column content left */
    }
}

@media (min-width: 640px) { /* sm breakpoint */
    .container {
        padding-left: 1.5rem; /* sm:px-6 */
        padding-right: 1.5rem; /* sm:px-6 */
    }
    .nav-link {
		font-size: .8rem;
    }
    .area-served-banner {    height: 4.6rem; } /* h-[60vh] double height to allow wrap.*/
	.hero-title { font-size: 1.5rem; } /* sm:text-5xl */
    .hero-subtitle { font-size: 1rem; } /* sm:text-xl */
    .section-title { font-size: 1.5rem; } /* sm:text-4xl */
    .section-subtitle { font-size: 1.2rem; } /* sm:text-xl */
    .fixed-bottom-banner {
        flex-direction: row; /* md:flex-row */
        gap: 1rem; /* md:space-x-4 */
        padding: 1rem;
    }
    .fixed-bottom-banner p {
        text-align: left; /* md:text-left */
        font-size: 1rem; /* md:text-base */
    }
    .fixed-bottom-banner .flex-buttons { /* Ensure buttons align correctly */
        flex-direction: row;
        gap: 0.5rem;
    }
    .gallery-image { height: 12rem; } /* md:h-48 */

    /* Footer adjustments for small screens (sm) - still stacking, but with better layout */
    .footer-top-content {
        flex-direction: row; /* Start arranging side-by-side */
        text-align: left;
        align-items: flex-start;
        gap: 2rem;
    }
    .footer-logo-wrapper {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .footer-description {
        text-align: left;
    }
    .footer-column {
        text-align: left; /* Align column content left */
    }
    .contact-item {
        text-align: left;
    }
    .copy-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    /* ABOUT SECTION: Two-Column Layout (Floats) at sm breakpoint and above */
    .two-column-container {
        overflow: hidden; /* Clearfix for floats */
        padding-top: 1rem;
        padding-bottom: 5px;
    }
    .column-left,
    .column-right {
        float: left;
        width: 48%; /* Adjusted for gutters with 4% margin */
        padding: 1rem; /* Consistent padding for content within columns */
        margin-bottom: 1rem; /* Spacing when stacked, will be fine when side-by-side */
        box-sizing: border-box; /* Crucial for floats + padding/border calculation */
    }
    .column-left {
        margin-right: 4%; /* Gutter between columns */
    }
    /* Responsive iframe map container */
    .map-container { /* Wrapper for the map */
        position: relative;
        width: 100%;
        padding-bottom: 75%; /* 4:3 Aspect Ratio (height / width * 100) */
        height: 0;
        overflow: hidden;
        margin-bottom: 1rem; /* Space below map */
        border-radius: 0.5rem; /* Match card radius if desired */
    }

    .map-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
}
@media (min-width: 768px) { /* md breakpoint */
    .header-container {
        flex-wrap: nowrap; /* md:flex-nowrap */
    }
    .menu-button-wrapper {
        display: none; /* md:hidden */
    }
    .main-nav {
        display: flex; /* md:flex */
    }
    .nav-link {
		font-size: 1rem;
    }
    .hero-section {
        height: 50vh; /* md:h-[50vh] */
    }
    .hero-title { font-size: 3.25rem; } /* md:text-6xl */
    .grid-layout { /* generic grids get 2 columns at md */
        grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
    }
    .grid-layout.responsive-gallery {
        grid-template-columns: repeat(3, 1fr); /* md:grid-cols-3 */
    }
    .grid-layout.two-column-grid {
        grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
    }

    /* Feature Card Grid: Explicitly define 2-column for feature cards at md breakpoint */
    .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns at md */
    }

    /* Footer: 3 columns on medium screens */
    .three-column-container {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on md */
    }
}

@media (min-width: 1024px) { /* lg breakpoint */
    .container {
        padding-left: 2rem; /* lg:px-8 */
        padding-right: 2rem; /* lg:px-8 */
    }
    .grid-layout { /* generic grids get 3 columns at lg */
        grid-template-columns: repeat(3, 1fr); /* lg:grid-cols-3 */
    }
    .grid-layout.responsive-gallery {
        grid-template-columns: repeat(4, 1fr); /* lg:grid-cols-4 */
    }

    /* Feature Card Grid: Explicitly define 3-column for feature cards at lg breakpoint */
    .feature-cards-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns at lg */
    }
}

/* Specific color for red text - no trailing '}' */
.red {
	color: #FF0000;
}