body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #2d3748;
    background-color: #ffffff;
}

*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --primary-color: #0f4c81; /* Deep ocean blue */
    --primary-light: #1a6cb3;
    --primary-dark: #0a3d66;
    --secondary-color: #f59e0b; /* Warm amber/orange */
    --secondary-light: #fbbf24;
    --accent-gradient: linear-gradient(135deg, #0f4c81 0%, #1a6cb3 50%, #f59e0b 100%);
    --dark-overlay: rgba(15, 76, 129, 0.85);
    --light-gray: #f7fafc;
    --light-blue: #ebf4ff;
    --warm-cream: #fffbeb;
    --text-dark: #1a202c;
    --text-light: #fff;
    --text-muted: #718096;
    --shadow-sm: 0 2px 8px rgba(15, 76, 129, 0.08);
    --shadow-md: 0 8px 30px rgba(15, 76, 129, 0.12);
    --shadow-lg: 0 20px 50px rgba(15, 76, 129, 0.15);
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
}

.navbar-logo {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.site-title {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
}

.offcanvas-body .nav-link.btn {
    color: var(--text-light) !important;
}

.offcanvas-body .nav-link.btn:hover {
    color: var(--text-light) !important;
    background-color: var(--primary-light);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(15, 76, 129, 0.3);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 76, 129, 0.4);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.btn-warning {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    transition: var(--transition);
    text-decoration: none;
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
    color: var(--text-dark);
}

.hero-section {
    background: url('photos/pics/hero-solar-bg.jpg') no-repeat center center/cover;
    position: relative;
    color: var(--text-light);
    padding: 12rem 0 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.92) 0%, rgba(26, 108, 179, 0.85) 50%, rgba(245, 158, 11, 0.3) 100%);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-section h1 span {
    color: var(--secondary-color);
}

.hero-section p.lead {
    font-size: 1.35rem;
    opacity: 0.95;
    max-width: 500px;
}

.hero-image {
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* General Section Styling */
section {
    padding: 6rem 0;
}

h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-header {
    margin-bottom: 4rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--light-blue) 100%);
}

.about-section .milestone-item {
    position: relative;
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 0;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.about-section .milestone-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.about-section .milestone-item:nth-child(even) .milestone-content {
    text-align: right;
}

.about-section .milestone-number {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 1rem;
}

.about-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.about-section .milestone-content {
    padding: 2rem;
}

.about-section img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

/* Why Solar Section (Problem-Solution) */
.why-solar-section {
    background: var(--warm-cream);
    position: relative;
}

.why-solar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--light-blue) 0%, transparent 100%);
}

.problem-solution-row {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.problem-solution-row:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.problem-block, .solution-block {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.problem-block {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-right: none;
    position: relative;
}

.problem-block::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 3px;
    background: linear-gradient(180deg, transparent, #ef4444, transparent);
}

.solution-block {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    position: relative;
}

.solution-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
}

.problem-icon {
    color: #ef4444;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.solution-icon {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.problem-solution-row h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

/* Services Section */
.services-section {
    background: #ffffff;
}

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, var(--light-gray) 100%);
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 1rem;
}

/* Features Section */
.features-section {
    background: linear-gradient(180deg, var(--light-gray) 0%, #ffffff 100%);
}

.feature-card {
    background: #ffffff;
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border: none;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .icon-wrapper {
    transform: rotate(5deg) scale(1.1);
}

.feature-icon {
    font-size: 2.2rem;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

/* Stats Section */
.stats-section {
    background: url('photos/pics/solar-field-bg.jpg') no-repeat center center/cover;
    position: relative;
    color: var(--text-light);
    padding: 8rem 0;
}

.stats-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.9) 0%, rgba(26, 108, 179, 0.85) 50%, rgba(245, 158, 11, 0.4) 100%);
}

.stat-item {
    position: relative;
    padding: 2rem;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--secondary-color), transparent);
}

.stat-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.3));
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.stats-section p {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    background: var(--light-gray);
}

.team-member-card {
    background: #ffffff;
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    padding: 2rem !important;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-member-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.2);
    transition: var(--transition);
}

.team-member-card:hover img {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.team-member-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.25rem;
}

.team-member-card p {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--light-blue) 100%);
}

.accordion-item {
    border: none;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: #ffffff;
}

.accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    background-color: #ffffff;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    border-radius: var(--border-radius) !important;
    position: relative;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--light-blue), #ffffff);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-light);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f4c81'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 1.5rem;
    background-color: #ffffff;
    border-top: 1px solid var(--light-blue);
    color: var(--text-muted);
    line-height: 1.8;
}

/* Contact Section (Calculator) */
.contact-section {
    background: url('photos/pics/solar-roof-bg.jpg') no-repeat center center/cover;
    position: relative;
    padding: 8rem 0;
    color: var(--text-light);
}

.contact-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.92) 0%, rgba(26, 108, 179, 0.88) 50%, rgba(245, 158, 11, 0.3) 100%);
}

.contact-section h2 {
    color: var(--text-light);
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.solar-assessment-form {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
}

.solar-assessment-form .form-control, .solar-assessment-form .form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text-light);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    transition: var(--transition);
}

.solar-assessment-form .form-control::placeholder, .solar-assessment-form .form-select {
    color: rgba(255, 255, 255, 0.7);
}

.solar-assessment-form .form-control:focus, .solar-assessment-form .form-select:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
    color: var(--text-light);
}

.solar-assessment-form .form-select option {
    color: var(--text-dark);
    background-color: #ffffff;
}

/* Contact Info Section */
#contact {
    background: var(--light-gray);
}

.contact-info-card {
    background: #ffffff;
    border: none;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-info-card .contact-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--secondary-color);
}

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

/* Footer */
.footer-section {
    background: linear-gradient(180deg, var(--light-gray) 0%, #e8f4fd 100%);
    color: var(--text-muted);
    padding-top: 5rem;
    padding-bottom: 2rem;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-section h3 {
    color: var(--text-dark);
    font-weight: 700;
}

.newsletter-form .newsletter-input {
    max-width: 350px;
    border-radius: 50px 0 0 50px;
    border: 2px solid var(--primary-light);
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
}

.newsletter-form .newsletter-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.newsletter-form .newsletter-btn {
    border-radius: 0 50px 50px 0;
    padding: 0.75rem 1.5rem;
}

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

.footer-nav, .footer-legal-links {
    padding-left: 0;
}

.footer-nav li, .footer-legal-links li {
    margin-bottom: 0.75rem;
}

.footer-nav a, .footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.footer-nav a::after, .footer-legal-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.footer-nav a:hover::after, .footer-legal-links a:hover::after {
    width: 100%;
}

.footer-nav a:hover, .footer-legal-links a:hover {
    color: var(--primary-color);
}

/* Responsive Typography */
@media (min-width: 1024px) {
    .site-title {
        font-size: 2rem;
    }
    h1 {
        font-size: 3.5rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    h3 {
        font-size: 1.75rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .site-title {
        font-size: 1.8rem;
    }
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .navbar-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
}

@media (max-width: 767px) {
    .navbar-logo {
        height: 35px;
    }
    .site-title {
        font-size: 1.25rem;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    .hero-section {
        padding: 8rem 0;
        min-height: 550px;
        margin-top: 66px;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p.lead {
        font-size: 1rem;
    }
    .hero-image {
        max-height: 300px;
    }
    .milestone-item .col-md-6.order-md-2, .milestone-item .col-md-6.order-md-1 {
        order: initial !important;
    }
    .problem-block, .solution-block {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .problem-solution-row .col-md-6.order-md-2 {
        order: initial;
    }
    .problem-solution-row .col-md-6.order-md-1 {
        order: initial;
    }
    .stat-item:not(:last-child)::after {
        display: none;
    }
    .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 1rem;
    }
    .stat-item:last-child {
        border-bottom: none;
    }
    .offcanvas-body {
        padding-top: 1rem;
    }
    .offcanvas-body .nav-link {
        padding: 0.75rem 1rem;
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    .offcanvas-body .nav-link:last-child {
        border-bottom: none;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form .newsletter-input {
        margin-right: 0 !important;
        margin-bottom: 1rem;
        width: 100%;
    }
    .newsletter-form .newsletter-btn {
        width: 100%;
        border-radius: 0.25rem !important;
    }
    .footer-nav, .footer-legal-links {
        margin-top: 1.5rem;
    }
}

@media (min-width: 1100px) {
    .navbar-nav {
        flex-wrap: nowrap;
        overflow-x: visible;
    }
}

/* Offcanvas specific styling */
.offcanvas {
    background-color: var(--text-light);
}

.offcanvas-header {
    border-bottom: 1px solid #eee;
}

.offcanvas-title {
    color: var(--text-dark);
    font-weight: 600;
}
/* Container block styles */
.legalDomeBlock {
    margin-top: 40px;   /* Top margin for the entire block */
    padding: 20px 25px; /* Padding on top/bottom and left/right for content inside */
}

/* Heading styles */
.legalDomeBlock h1 {
    font-size: 2.2rem;    /* Moderate font size for main heading */
    margin-bottom: 0.8em; /* Space below heading */
    font-weight: 600;     /* Slightly bolder */
    line-height: 1.2;     /* Improved readability */
}

.legalDomeBlock h2 {
    font-size: 1.8rem;    /* Sub-heading font size */
    margin-bottom: 0.7em;
    font-weight: 600;
    line-height: 1.3;
}

.legalDomeBlock h3 {
    font-size: 1.5rem;    /* Section heading font size */
    margin-bottom: 0.6em;
    font-weight: 500;
    line-height: 1.4;
}

.legalDomeBlock h4 {
    font-size: 1.2rem;    /* Sub-section heading font size */
    margin-bottom: 0.5em;
    font-weight: 500;
    line-height: 1.5;
}

.legalDomeBlock h5 {
    font-size: 1.1rem;    /* Minor heading font size */
    margin-bottom: 0.4em;
    font-weight: 500;
    line-height: 1.6;
}

/* Paragraph styles */
.legalDomeBlock p {
    font-size: 1rem;      /* Standard paragraph font size */
    line-height: 1.6;     /* Good readability for body text */
    margin-bottom: 1em;   /* Space between paragraphs */
}

/* List styles */
.legalDomeBlock ul {
    list-style-type: disc; /* Default bullet style */
    margin-top: 0;         /* Remove default top margin */
    margin-bottom: 1em;    /* Space below the list */
    padding-left: 25px;    /* Indent for bullet points */
}

.legalDomeBlock li {
    margin-bottom: 0.5em;  /* Space between list items */
    line-height: 1.5;      /* Line height for list item text */
}



#why-solar{

    .problem-solution-row  {
        gap: 20px; /* расстояние между картами */
        background-color: transparent;
        box-shadow: none;
    }
}

@media (min-width: 768px) {
    #why-solar{

        .col-md-6 {
            flex: 0 0 auto;
            width: calc(50% - 10px);
        }
  }
}

.offcanvas{
    bottom: auto !important;
      width: 100%;
  height: 100vh;
  text-align: center;
}

section{
    overflow: hidden;
}

.wr{
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.main{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}