body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

:root {
    --primary-blue: #007bff; /* A standard, vibrant blue */
    --light-blue: #ADD8E6; /* Lighter blue for accents */
    --mint-green: #98FB98; /* A pleasant mint green */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-text: #333;
    --secondary-text: #555;
}

/* General Styles */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-text);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
}

a:hover {
    color: var(--light-blue);
    text-decoration: none;
}

.btn {
    font-weight: 600;
    border-radius: 0.375rem; /* Bootstrap default */
    text-decoration: none; /* Ensure no underline on buttons */
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-outline-primary {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-light {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary-blue);
}

.btn-light:hover {
    background-color: var(--light-gray);
    border-color: var(--light-gray);
    color: var(--primary-blue);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--mint-green);
    border-radius: 2px;
}

.bg-light-mint {
    background-color: #e6fff0; /* A very light mint */
}

.text-primary {
    color: var(--primary-blue) !important;
}

.text-mint {
    color: var(--mint-green) !important;
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

/* Header */
#main-navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

#main-navbar .navbar-brand .header-logo {
    height: 70px;
    width: 70px;
    object-fit: contain;
    margin: 0 !important;
}

#main-navbar .navbar-brand .brand-name {
    font-weight: 700;
    font-size: clamp(16px, 4vw, 22px);
    color: var(--primary-blue);
}

#main-navbar .nav-link {
    color: var(--dark-text);
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

#main-navbar .nav-link:hover,
#main-navbar .nav-link.active {
    color: var(--primary-blue);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-blue);
    color: var(--white);
    z-index: 1050;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.cookie-banner a {
    color: var(--mint-green);
}

.cookie-banner .btn-primary {
    background-color: var(--mint-green);
    border-color: var(--mint-green);
    color: var(--primary-blue);
}

.cookie-banner .btn-primary:hover {
    background-color: #76E076;
    border-color: #76E076;
}

.cookie-banner .btn-outline-primary {
    color: var(--mint-green);
    border-color: var(--mint-green);
}

.cookie-banner .btn-outline-primary:hover {
    background-color: var(--mint-green);
    color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/graphics/laundromat-hero-bg.jpg') no-repeat center center/cover;
    min-height: 80vh;
    padding-top: 100px; /* Adjust for fixed header */
    padding-bottom: 50px;
}

.hero-section h1 {
    font-size: 3.8rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-section .btn-primary {
    background-color: var(--mint-green);
    border-color: var(--mint-green);
    color: var(--primary-blue);
    font-weight: 700;
    padding: 0.8rem 2.5rem;
    font-size: 1.2rem;
}

.hero-section .btn-primary:hover {
    background-color: #76E076;
    border-color: #76E076;
    color: var(--primary-blue);
}

/* How It Works Section */
.icon-box {
    background-color: var(--white);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

/* Services Section (Tabs) */
.nav-tabs .nav-link {
    color: var(--primary-blue);
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    color: var(--primary-blue);
    border-color: var(--mint-green);
    background-color: var(--white);
}

.nav-tabs .nav-link:hover:not(.active) {
    color: var(--light-blue);
    border-color: var(--light-blue);
}

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

.service-list i {
    font-size: 1.1rem;
}

/* About Us Section */
/* No specific styles needed beyond general typography and spacing */

/* Key Features/Benefits Section */
.feature-card {
    background-color: var(--white);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.feature-card i {
    color: var(--primary-blue);
}

/* Pricing & Offers Section */
.price-card {
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.price-card.border-primary {
    border: 2px solid var(--primary-blue) !important;
}

.card-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.card-price small {
    font-size: 0.7em;
    font-weight: 400;
    color: var(--secondary-text);
}

.price-card ul li {
    margin-bottom: 0.5rem;
}

.price-card ul li i {
    color: var(--mint-green);
}

/* Our Equipment & Laundry Guides Section */
.nav-pills .nav-link {
    color: var(--primary-blue);
    background-color: var(--white);
    border: 1px solid var(--primary-blue);
    margin: 0 0.5rem;
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-blue);
    color: var(--white);
}

.nav-pills .nav-link:hover:not(.active) {
    background-color: var(--light-blue);
    color: var(--white);
    border-color: var(--light-blue);
}

.equipment-card img {
    height: 200px;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/graphics/laundry-basket-cta.png') no-repeat center center/cover;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section h2 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cta-section i {
    color: var(--mint-green);
}

/* Testimonials Section */
.testimonial-card {
    background-color: var(--white);
    border: 1px solid #e9ecef;
    padding: 2rem;
    border-left: 5px solid var(--primary-blue);
}

.testimonial-card .blockquote-footer {
    color: var(--secondary-text);
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: var(--primary-blue);
    border-radius: 50%;
    padding: 1.2rem;
}

/* Contact Section */
.contact-form-container {
    border: 1px solid #e9ecef;
}

.contact-info {
    border: 1px solid #e9ecef;
}

.contact-details li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-details i {
    font-size: 1.5rem;
    vertical-align: middle;
}

.form-control:focus {
    border-color: var(--mint-green);
    box-shadow: 0 0 0 0.25rem rgba(152, 251, 152, 0.25);
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.footer .footer-brand .footer-logo {
    height: 40px;
    width: auto;
}

.footer .footer-brand .brand-name {
    font-weight: 700;
    font-size: clamp(18px, 4vw, 24px);
    color: var(--white);
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--mint-green);
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.2rem 0;
    display: inline-block;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--mint-green);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title::after {
        width: 60px;
    }

    .nav-tabs .nav-link,
    .nav-pills .nav-link {
        padding: 0.5rem 1rem;
        margin: 0.25rem;
        font-size: 0.9rem;
    }

    .tab-content .row {
        flex-direction: column;
    }

    .tab-content .col-lg-6.order-lg-2 {
        order: 0 !important;
    }

    .tab-content .col-lg-6.order-lg-1 {
        order: 1 !important;
    }

    .contact-info {
        margin-top: 2rem;
    }

    .footer-brand, .footer-heading {
        text-align: center;
    }

    .footer-links {
        text-align: center;
        padding: 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .hero-section .btn-lg {
        padding: 0.6rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .navbar-brand .brand-name {
        font-size: 1.2rem;
    }

    .navbar-brand .header-logo {
        height: 35px;
    }

    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner p {
        margin-bottom: 10px !important;
    }

    .cookie-banner .d-flex {
        width: 100%;
        justify-content: center;
    }

    .cookie-banner .btn-sm {
        flex-grow: 1;
    }
}
/* Parent container for legal documents, providing overall spacing and centering */
.legalFoldBox {
    margin-top: 40px; /* Top margin for the entire box */
    padding-inline: 20px; /* Horizontal padding for content within the box */
    max-width: 800px; /* Optional: Limits the maximum width for better readability */
    margin-inline: auto; /* Optional: Centers the box horizontally on the page */
}

/* Heading 1 styles within the legal content */
.legalFoldBox h1 {
    font-size: 28px; /* Moderate font size for main headings */
    font-weight: 700; /* Bold font weight */
    margin-top: 30px; /* Space above H1 */
    margin-bottom: 20px; /* Space below H1 */
    line-height: 1.2; /* Line height for better readability */
}

/* Heading 2 styles within the legal content */
.legalFoldBox h2 {
    font-size: 24px; /* Moderate font size for sub-headings */
    font-weight: 600; /* Slightly less bold than H1 */
    margin-top: 25px; /* Space above H2 */
    margin-bottom: 15px; /* Space below H2 */
    line-height: 1.3;
}

/* Heading 3 styles within the legal content */
.legalFoldBox h3 {
    font-size: 20px; /* Moderate font size for section titles */
    font-weight: 600;
    margin-top: 20px; /* Space above H3 */
    margin-bottom: 10px; /* Space below H3 */
    line-height: 1.4;
}

/* Heading 4 styles within the legal content */
.legalFoldBox h4 {
    font-size: 18px; /* Moderate font size for sub-section titles */
    font-weight: 500; /* Standard font weight */
    margin-top: 18px; /* Space above H4 */
    margin-bottom: 8px; /* Space below H4 */
    line-height: 1.4;
}

/* Heading 5 styles within the legal content */
.legalFoldBox h5 {
    font-size: 16px; /* Moderate font size, close to body text */
    font-weight: 500;
    margin-top: 16px; /* Space above H5 */
    margin-bottom: 6px; /* Space below H5 */
    line-height: 1.5;
}

/* Paragraph styles for general text within the legal content */
.legalFoldBox p {
    font-size: 16px; /* Base font size for paragraphs */
    line-height: 1.6; /* Generous line height for good readability */
    margin-bottom: 1em; /* Space between paragraphs */
}

/* Unordered list styles within the legal content */
.legalFoldBox ul {
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 25px; /* Indent for bullet points */
    list-style-type: disc; /* Standard disc bullets */
}

/* List item styles within unordered lists in legal content */
.legalFoldBox li {
    font-size: 16px; /* Font size for list items, matching paragraph text */
    line-height: 1.6; /* Line height for readability */
    margin-bottom: 0.5em; /* Space between individual list items */
}


.card-img-top{
 width: 100%;
 height: 280px;
 object-fit: cover;
}

@media (max-width: 575px){
    #main-navbar .navbar-brand .header-logo{
        width: 40px;
        height: 40px;
    }

    .navbar-toggler-icon{
        width: 20px;
        height: 20px;
    }
    .navbar-brand.d-flex.align-items-center{
        margin-right: 3px;
    }
    .navbar-toggler{
        padding: 4px;
    }
}

#hero{
    padding-top: 180px;
}