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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #1a202c;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-notice {
    font-size: 0.75rem;
    color: #cbd5e0;
    padding: 0.35rem 0.75rem;
    border: 1px solid #4a5568;
    border-radius: 4px;
    background-color: #2d3748;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #63b3ed;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #f7fafc;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8%;
    background-color: #2c5282;
    color: #ffffff;
}

.hero-content-left h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e6fffa;
    max-width: 550px;
}

.hero-image-right {
    flex: 1;
    background-color: #e2e8f0;
}

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

.split-container {
    display: flex;
    align-items: center;
    gap: 0;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    background-color: #edf2f7;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.split-text {
    flex: 1;
    padding: 5rem 8%;
}

.split-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.split-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

.split-text ul {
    list-style: none;
    margin: 1.5rem 0;
}

.split-text ul li {
    padding: 0.75rem 0;
    color: #2d3748;
    font-size: 1.05rem;
}

.intro-alternating,
.services-preview,
.our-story,
.team-split,
.equipment-section,
.testimonials-split,
.contact-info-section {
    background-color: #ffffff;
}

.services-list {
    margin: 2rem 0;
}

.services-list li {
    padding: 0.85rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 0.95rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-primary {
    background-color: #2b6cb0;
    color: #ffffff;
}

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

.cta-secondary {
    background-color: #edf2f7;
    color: #2d3748;
    border: 2px solid #cbd5e0;
}

.cta-secondary:hover {
    background-color: #e2e8f0;
    border-color: #a0aec0;
}

.how-it-works,
.values-section {
    padding: 5rem 5%;
    background-color: #edf2f7;
}

.content-centered {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.content-centered h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.steps-grid,
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.step-card,
.value-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2b6cb0;
    margin-bottom: 1rem;
}

.step-card h3,
.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.step-card p,
.value-card p {
    color: #4a5568;
    font-size: 1rem;
}

.testimonial {
    background-color: #f7fafc;
    padding: 2rem;
    border-left: 4px solid #2b6cb0;
    margin: 1.5rem 0;
}

.testimonial p {
    font-style: italic;
    color: #2d3748;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    color: #718096;
    font-size: 0.95rem;
}

.cta-form-section {
    padding: 5rem 5%;
    background-color: #f7fafc;
}

.main-form {
    max-width: 600px;
    margin: 2rem auto 0;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.85rem;
    border: 2px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2b6cb0;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2b6cb0;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #2c5282;
}

.footer-split {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.footer-column p {
    color: #cbd5e0;
    font-size: 0.95rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #cbd5e0;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #63b3ed;
}

.footer-disclaimer {
    padding: 2rem 0;
    border-top: 1px solid #2d3748;
    border-bottom: 1px solid #2d3748;
    margin-bottom: 1.5rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #a0aec0;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #718096;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: #e2e8f0;
}

.cookie-content a {
    color: #63b3ed;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #2b6cb0;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2c5282;
}

.btn-reject {
    background-color: #718096;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #4a5568;
}

.page-hero-split,
.services-hero,
.contact-hero {
    padding: 5rem 5%;
    background-color: #2c5282;
    color: #ffffff;
    text-align: center;
}

.page-hero-split h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero-split p,
.services-hero p,
.contact-hero p {
    font-size: 1.25rem;
    color: #e6fffa;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-card-large {
    display: flex;
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-card-large.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 45%;
    background-color: #edf2f7;
}

.service-content {
    flex: 1;
    padding: 3rem;
}

.service-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.25rem;
}

.service-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.65rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #2d3748;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: 700;
}

.service-price {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e2e8f0;
}

.service-price .price {
    font-size: 2.25rem;
    font-weight: 800;
    color: #2b6cb0;
    display: block;
}

.service-price .price-unit {
    font-size: 0.95rem;
    color: #718096;
    display: block;
    margin-top: 0.5rem;
}

.services-grid-section {
    background-color: #f7fafc;
    padding: 3rem 0;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a5568;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f7fafc;
    border-left: 4px solid #2b6cb0;
    color: #2d3748;
}

.directions-section,
.faq-section {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #4a5568;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-color: #f7fafc;
}

.thanks-content {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #2b6cb0;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.next-steps {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.steps-timeline {
    max-width: 900px;
    margin: 3rem auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-number {
    flex: 0 0 60px;
    height: 60px;
    background-color: #2b6cb0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #4a5568;
    font-size: 1.05rem;
}

.legal-content {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.content-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.content-narrow h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.content-narrow h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d3748;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-narrow h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-narrow p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.content-narrow ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-narrow ul li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    font-size: 1.05rem;
}

.content-narrow a {
    color: #2b6cb0;
    text-decoration: underline;
}

.content-narrow a:hover {
    color: #2c5282;
}

.cta-inline {
    padding: 5rem 5%;
    background-color: #edf2f7;
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-container {
        flex-direction: column;
    }

    .split-container.reverse {
        flex-direction: column;
    }

    .hero-content-left,
    .split-text {
        padding: 3rem 5%;
    }

    .hero-content-left h1 {
        font-size: 2.25rem;
    }

    .service-card-large,
    .service-card-large.reverse {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 auto;
        height: 300px;
    }

    .footer-content {
        flex-direction: column;
    }

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

    .steps-grid,
    .values-grid {
        flex-direction: column;
    }

    .step-card,
    .value-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        gap: 1rem;
    }

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

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

    .split-text h2 {
        font-size: 1.75rem;
    }

    .content-centered h2 {
        font-size: 2rem;
    }

    .thanks-actions,
    .cta-buttons {
        flex-direction: column;
    }

    .faq-item {
        flex: 1 1 100%;
    }
}
