body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Global Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #212529;
}

/* Responsive Typography */
.site-name, .site-name-footer {
    font-size: 1rem; /* Default for desktop */
}

h1 {
    font-size: 3rem; /* Desktop */
}

h2 {
    font-size: 2.5rem; /* Desktop */
}

h3 {
    font-size: 2rem; /* Desktop */
}

@media (min-width: 768px) and (max-width: 1023px) {
    .site-name, .site-name-footer {
        font-size: 1rem;
    }
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .site-name, .site-name-footer {
        font-size: 1rem; /* Mobile */
    }
    h1 {
        font-size: 1.8rem; /* Mobile */
    }
    h2 {
        font-size: 1.5rem; /* Mobile */
    }
    h3 {
        font-size: 1.25rem; /* Mobile */
    }
}

/* Navbar */
.navbar-brand .site-logo {
    height: 40px;
    width: auto;
}

@media screen and (max-width: 578px) {
    .navbar-brand .site-logo {
        height: 20px;
    }
}

.navbar-brand .site-name {
    color: #28a745;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: #28a745 !important;
}

.offcanvas-body {
    overflow-x: auto;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('uploads/uploads/solar-roof-sunset_2.jpg') no-repeat center center/cover;
    min-height: 80vh;
    position: relative;
    padding-top: 120px;
    padding-bottom: 100px;
}

.hero-section h1 {
    color: #fff;
}

.hero-section p {
    color: #e9ecef;
}

.btn-primary {
    background-color: #28a745;
    border-color: #28a745;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
}

/* About Section */
#about .bi-check-circle-fill {
    color: #20c997; /* Teal/Cyan-like color */
    font-size: 1.2rem;
}

#about ul li span {
    color: #555;
}

#about .img-fluid {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

/* Benefits Section */
.bg-light-green {
    background-color: #28a745;
}

#benefits h2, #benefits p {
    color: #fff;
}

#benefits .card {
    border-radius: 10px;
    background-color: #fff;
}

#benefits .benefit-icon {
    font-size: 3rem;
    color: #28a745;
}

#benefits .card-title {
    color: #212529;
}

#benefits .card-text {
    color: #6c757d;
}

/* How It Works Section */
.bg-light-gray {
    background-color: #f0f2f5;
}

#how-it-works .step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #28a745;
    line-height: 1;
    margin-bottom: 1rem;
}

#how-it-works .card {
    border-radius: 10px;
}

/* Testimonials Section */
.testimonial-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #fff;
}

#testimonials .card {
    border-radius: 10px;
}

#testimonials .card-text {
    color: #495057;
}

#testimonials .text-warning {
    color: #ffc107 !important;
}

/* Savings Calculator & Contact Form */
#calculator .card, #contact .card {
    border-radius: 10px;
}

#calculationResults {
    border-color: #28a745 !important;
}

.email-break {
    word-break: break-all;
}

/* Footer */
.footer {
    background-color: #212529 !important;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

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

.footer .site-name-footer {
    color: #fff;
    font-weight: 600;
}

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

.footer a:hover {
    color: #28a745;
}

.footer .border-top {
    border-color: #495057 !important;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .navbar-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 60vh;
        padding-top: 120px;
        padding-bottom: 80px;
    }

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

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

    .btn-lg {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }

    .footer .d-flex.flex-column.flex-md-row {
        text-align: center;
    }

    .footer .mb-3.mb-md-0 {
        width: 100%;
        justify-content: center;
    }

    .footer .d-flex.flex-column.flex-md-row.align-items-center {
        width: 100%;
        justify-content: center;
    }
}
/* Styles for the main container of the privacy policy or similar content */
.privacyNestZone {
    padding-top: 20px;    /* Top padding for the content area */
    padding-left: 20px;   /* Left padding for the content area */
    padding-right: 20px;  /* Right padding for the content area */
}

/* Heading 1 styles - Not overly large, maintains hierarchy */
.privacyNestZone h1 {
    font-size: 1.8em;       /* Slightly larger than body text, but not huge */
    line-height: 1.2;       /* Good readability for headings */
    margin-top: 1.5em;      /* Space above the heading */
    margin-bottom: 0.8em;   /* Space below the heading */
    font-weight: bold;      /* Ensures heading stands out */
}

/* Heading 2 styles */
.privacyNestZone h2 {
    font-size: 1.6em;       /* Smaller than h1 */
    line-height: 1.2;
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    font-weight: bold;
}

/* Heading 3 styles */
.privacyNestZone h3 {
    font-size: 1.4em;       /* Smaller than h2 */
    line-height: 1.3;
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    font-weight: bold;
}

/* Heading 4 styles */
.privacyNestZone h4 {
    font-size: 1.2em;       /* Smaller than h3 */
    line-height: 1.4;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    font-weight: bold;
}

/* Heading 5 styles - Close to body text size, but bold */
.privacyNestZone h5 {
    font-size: 1.1em;       /* Smallest heading, slightly larger than paragraph */
    line-height: 1.4;
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    font-weight: bold;
}

/* Paragraph styles */
.privacyNestZone p {
    font-size: 1em;         /* Standard paragraph font size (e.g., 16px if body is 16px) */
    line-height: 1.6;       /* Optimal line height for readability */
    margin-bottom: 1em;     /* Space between paragraphs */
}

/* Unordered list styles */
.privacyNestZone ul {
    margin-top: 1em;        /* Space above the list */
    margin-bottom: 1em;     /* Space below the list */
    padding-left: 25px;     /* Indentation for bullet points */
    list-style-type: disc;  /* Default bullet style */
}

/* List item styles */
.privacyNestZone li {
    font-size: 1em;         /* Standard list item font size */
    line-height: 1.6;       /* Consistent line height with paragraphs */
    margin-bottom: 0.5em;   /* Space between individual list items */
}


.footer-contacts-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

    .divider {
        display: inline-block;
        margin-inline: 5px;
    }
}