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

:root {
    --primary-color: #0a4d3c;
    --secondary-color: #1a7f64;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-cookie-accept {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-cookie-accept:hover {
    background: #d97706;
}

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-nav {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.hero-split,
.intro-split,
.stats-split,
.approach-split,
.trust-split,
.form-split {
    display: flex;
    min-height: 600px;
}

.hero-split {
    min-height: 700px;
}

.hero-left,
.hero-right,
.intro-left,
.intro-right,
.stats-left,
.stats-right,
.approach-left,
.approach-right,
.trust-left,
.trust-right,
.form-left,
.form-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    background: var(--bg-light);
    padding: 3rem;
}

.hero-content {
    max-width: 560px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.cta-primary,
.cta-secondary,
.cta-primary-large {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary,
.cta-primary-large {
    background: var(--secondary-color);
    color: white;
}

.cta-primary:hover,
.cta-primary-large:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-primary-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.cta-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.cta-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

.intro-split {
    min-height: 550px;
}

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

.intro-left img,
.trust-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-right {
    background: var(--bg-white);
    padding: 4rem;
}

.intro-content,
.trust-content,
.approach-content {
    max-width: 560px;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.intro-content h2,
.trust-content h2,
.approach-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-content p,
.trust-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.stats-split {
    background: var(--primary-color);
    min-height: 450px;
}

.stats-left {
    padding: 3rem;
    background: var(--primary-color);
}

.stats-right {
    padding: 3rem;
    background: var(--secondary-color);
}

.stats-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.stat-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.testimonial {
    max-width: 500px;
}

.testimonial p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: white;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
}

.services-preview {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.services-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-split-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    background: var(--bg-white);
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.service-left,
.service-right {
    flex: 1;
}

.service-card-split .service-left,
.service-card-split .service-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

.service-card-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-split h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card-split p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.price-tag {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.services-cta-center {
    text-align: center;
    margin-top: 3rem;
}

.approach-split,
.trust-split {
    min-height: 600px;
}

.approach-left,
.trust-right {
    padding: 4rem;
    background: var(--bg-white);
}

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

.approach-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.approach-list li {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.approach-list strong {
    color: var(--text-dark);
    font-weight: 600;
}

.trust-split {
    background: var(--bg-light);
}

.cta-text-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.2s;
}

.cta-text-link:hover {
    color: var(--primary-color);
}

.form-split {
    min-height: 650px;
    background: var(--bg-light);
}

.form-left {
    padding: 4rem;
    background: var(--primary-color);
    color: white;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-note {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 500;
}

.form-right {
    padding: 4rem;
    background: var(--bg-white);
}

.inquiry-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
}

.cta-submit {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-submit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.final-cta-split {
    padding: 6rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-left {
    flex: 1;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-right {
    flex: 2;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-container p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-selected {
    display: inline-block;
    background: var(--bg-light);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 2rem 0;
}

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

.content-container h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.content-container h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-dark);
}

.content-container h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.content-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.content-container ul,
.content-container ol {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.content-container li {
    margin-bottom: 0.75rem;
}

.contact-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 0.75rem;
}

.contact-info strong {
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .services-header h2 {
        font-size: 2.5rem;
    }

    .footer-split {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-links {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: var(--shadow-md);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.75rem 2rem;
    }

    .hero-split,
    .intro-split,
    .stats-split,
    .approach-split,
    .trust-split,
    .form-split,
    .service-card-split {
        flex-direction: column;
    }

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

    .hero-split {
        min-height: auto;
    }

    .hero-left,
    .intro-right,
    .stats-left,
    .stats-right,
    .approach-left,
    .trust-right,
    .form-left,
    .form-right {
        padding: 2rem;
    }

    .hero-right img,
    .intro-left img,
    .approach-right img,
    .trust-left img {
        min-height: 300px;
    }

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

    .intro-content h2,
    .trust-content h2,
    .approach-content h2 {
        font-size: 1.8rem;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .thanks-container h1 {
        font-size: 2rem;
    }

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