* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f0f0f0;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.nav-floating {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #e67e22;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e67e22;
}

.hero-offset {
    display: flex;
    min-height: 100vh;
    align-items: center;
    padding: 120px 60px 60px;
    background-color: #fafafa;
}

.hero-content-left {
    flex: 0 0 45%;
    padding-right: 80px;
    transform: translateY(-40px);
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.7;
}

.hero-image-right {
    flex: 1;
    position: relative;
    transform: translateY(60px) rotate(-2deg);
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #e0e0e0;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background-color: #e67e22;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.cta-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.intro-asymmetric {
    padding: 100px 60px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-block-small {
    flex: 0 0 40%;
    transform: translateX(60px);
}

.intro-block-small h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-block-small p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.intro-stats-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transform: translateY(80px);
}

.stat-card {
    background-color: #f8f8f8;
    padding: 35px 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    border-left: 5px solid #e67e22;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #e67e22;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.benefits-irregular {
    padding: 80px 60px;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.benefit-column-left {
    display: flex;
    gap: 40px;
    align-items: center;
    transform: translateX(-30px);
}

.benefit-column-left img {
    flex: 0 0 50%;
    border-radius: 15px;
    object-fit: cover;
    height: 400px;
    background-color: #e0e0e0;
}

.benefit-column-left h3 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.benefit-column-left p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.benefit-column-right-offset {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-direction: row-reverse;
    transform: translateX(30px);
}

.benefit-column-right-offset img {
    flex: 0 0 50%;
    border-radius: 15px;
    object-fit: cover;
    height: 400px;
    background-color: #e0e0e0;
}

.benefit-column-right-offset h3 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.benefit-column-right-offset p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.benefit-full-width {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 80px;
    border-radius: 20px;
    transform: rotate(-1deg);
    margin: 40px 0;
}

.benefit-full-width h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.benefit-full-width p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.citation {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e67e22;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.services-showcase {
    padding: 120px 60px;
    background-color: #ffffff;
}

.services-showcase h2 {
    font-size: 48px;
    margin-bottom: 80px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    background-color: #f8f8f8;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-large {
    flex: 0 0 calc(60% - 20px);
    transform: translateX(-20px);
}

.service-medium {
    flex: 0 0 calc(50% - 20px);
}

.service-medium-offset {
    flex: 0 0 calc(35% - 20px);
    transform: translateY(60px) rotate(1deg);
}

.service-small {
    flex: 0 0 calc(45% - 20px);
    transform: translateX(40px);
}

.service-offset-bottom {
    flex: 0 0 calc(48% - 20px);
    transform: translateY(-40px);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #d0d0d0;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    margin: 0 25px 20px;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 800;
    color: #e67e22;
    margin: 0 25px 20px;
    display: block;
}

.select-service {
    margin: 0 25px 25px;
    padding: 14px 30px;
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #d35400;
}

.form-section-overlap {
    padding: 100px 60px;
    background-color: #fafafa;
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
}

.form-container {
    flex: 0 0 55%;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(40px) rotate(-1deg);
    z-index: 2;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-selection-display {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #e67e22;
}

.service-selection-display.active {
    background-color: #fff3e6;
}

.service-selection-display p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.service-selection-display strong {
    color: #e67e22;
    font-size: 18px;
}

.solar-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.solar-form input,
.solar-form textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-row input {
    flex: 1;
}

.solar-form input:focus,
.solar-form textarea:focus {
    outline: none;
    border-color: #e67e22;
}

.cta-submit {
    padding: 18px 40px;
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-submit:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.form-image-overlap {
    flex: 1;
    transform: translateX(-60px) translateY(40px) rotate(2deg);
    z-index: 1;
}

.form-image-overlap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background-color: #e0e0e0;
}

.trust-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.trust-content h2 {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.testimonial-card {
    flex: 1;
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #e67e22;
}

.testimonial-offset {
    transform: translateY(40px);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #666;
    font-weight: 600;
    display: block;
}

.final-cta-asymmetric {
    padding: 120px 60px;
    background-color: #1a1a1a;
}

.cta-content-irregular {
    max-width: 700px;
    transform: translateX(80px) rotate(-1deg);
}

.cta-content-irregular h2 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 800;
}

.cta-content-irregular p {
    font-size: 20px;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-large {
    display: inline-block;
    padding: 22px 55px;
    background-color: #e67e22;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s;
}

.cta-large:hover {
    background-color: #d35400;
    transform: translateY(-3px);
}

.footer-asymmetric {
    background-color: #0d0d0d;
    color: #cccccc;
    padding: 80px 60px 30px;
}

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

.footer-brand {
    flex: 1.5;
    transform: translateY(-20px);
}

.footer-links-offset {
    transform: translateY(20px);
}

.footer-col h3 {
    font-size: 24px;
    color: #e67e22;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-col a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #e67e22;
}

.footer-references {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.footer-references h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-references p {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

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

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

.footer-disclaimer {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #999;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 25px 60px;
    display: none;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cookie-content p {
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #e67e22;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #d35400;
}

.cookie-reject {
    background-color: #555;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #444;
}

.service-selected {
    background-color: #d35400;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        padding: 100px 40px 60px;
    }

    .hero-content-left {
        flex: 1;
        padding-right: 0;
        transform: none;
        margin-bottom: 40px;
    }

    .hero-image-right {
        transform: none;
        width: 100%;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 80px 40px;
    }

    .intro-block-small {
        transform: none;
    }

    .intro-stats-offset {
        transform: none;
    }

    .services-grid-asymmetric {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
        transform: none;
    }

    .form-section-overlap {
        flex-direction: column;
        padding: 80px 40px;
    }

    .form-container {
        flex: 1;
        transform: none;
    }

    .form-image-overlap {
        transform: none;
        width: 100%;
    }

    .testimonial-grid {
        flex-direction: column;
    }

    .testimonial-offset {
        transform: none;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand {
        transform: none;
    }

    .footer-links-offset {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        top: 20px;
        padding: 12px 25px;
        gap: 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-content-left h1 {
        font-size: 36px;
    }

    .form-row {
        flex-direction: column;
    }

    .cta-content-irregular {
        transform: none;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}