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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5f7e;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #27ae60;
}

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

h1, h2, h3, h4, h5 {
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
}

h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-right a {
    font-weight: 500;
    padding: 0.5rem 0;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    background: var(--bg-light);
}

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

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-size: 3.2rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

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

.cta-text {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-text:hover {
    gap: 0.8rem;
}

.intro-asymmetric {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    flex: 1.5;
}

.intro-text h2 {
    margin-bottom: 1.5rem;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

.services-preview-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background: var(--bg-light);
}

.services-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-left h2 {
    margin-bottom: 1.5rem;
}

.services-left p {
    margin-bottom: 2rem;
}

.services-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.trust-builder {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
}

.trust-content {
    flex: 1.3;
}

.trust-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-num {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step p {
    margin: 0;
}

.trust-image {
    flex: 1;
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.testimonials-offset {
    padding: 5rem 5%;
    background: var(--primary-color);
    display: flex;
    gap: 3rem;
}

.testimonial {
    flex: 1;
    padding: 2.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.cta-section-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background: var(--bg-light);
}

.cta-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-right {
    flex: 1;
}

.inline-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.inline-form input,
.inline-form select {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}

.inline-form input:focus,
.inline-form select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.inline-form button {
    width: 100%;
}

.why-choose {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
}

.why-left {
    flex: 1;
}

.why-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.why-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.benefit-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.3rem;
}

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

.extra-services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.extra-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.extra-card {
    flex: 1;
    max-width: 350px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.extra-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-tag {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.final-cta {
    padding: 5rem 5%;
    text-align: center;
    background: var(--primary-color);
    color: white;
}

.final-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.final-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-primary-large {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1.3rem 3rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
}

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

.footer-split {
    display: flex;
    padding: 4rem 5%;
    background: var(--text-dark);
    color: white;
    gap: 4rem;
}

.footer-left {
    flex: 1;
}

.footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

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

.footer-right {
    flex: 1.5;
}

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

.footer-col {
    flex: 1;
}

.footer-col h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 82, 0.98);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
}

.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 {
    color: white;
    margin: 0;
    flex: 1;
}

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

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

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

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

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

.cookie-btn-reject:hover {
    background: white;
    color: var(--primary-color);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

.sticky-cta a {
    display: block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.5);
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.story-section {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background: var(--bg-light);
}

.story-content {
    flex: 1.5;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 8px;
}

.values-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
}

.values-left {
    flex: 1;
}

.values-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.team-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    max-width: 250px;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.team-member h4 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.team-member span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.mission-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
}

.mission-left {
    flex: 1;
}

.mission-left img {
    border-radius: 8px;
}

.mission-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-about {
    padding: 5rem 5%;
    text-align: center;
    background: var(--bg-light);
}

.cta-about h2 {
    margin-bottom: 1rem;
}

.cta-about p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.services-overview {
    padding: 3rem 5%;
}

.service-block-split {
    display: flex;
    gap: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.service-block-split:last-child {
    border-bottom: none;
}

.service-info {
    flex: 2;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-pricing {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.price-large {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.price-period {
    display: block;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.select-service {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.comparison-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-split {
    display: flex;
    gap: 3rem;
}

.comparison-left,
.comparison-right {
    flex: 1;
    padding: 2.5rem;
    background: white;
    border-radius: 8px;
}

.comparison-left h3,
.comparison-right h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-section {
    padding: 5rem 5%;
}

.form-container-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.form-left {
    flex: 1;
}

.form-right {
    flex: 1;
}

.service-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.faq-split {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.faq-split h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.faq-item p {
    margin: 0;
}

.contact-info-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
}

.contact-left {
    flex: 1;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.detail-block h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.detail-block p {
    margin: 0;
}

.detail-block a {
    color: var(--accent-color);
}

.contact-right {
    flex: 1;
}

.map-placeholder img {
    border-radius: 8px;
}

.visit-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.visit-content {
    max-width: 800px;
    margin: 0 auto;
}

.visit-content h2 {
    margin-bottom: 1.5rem;
}

.response-section {
    padding: 5rem 5%;
}

.response-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.response-grid {
    display: flex;
    gap: 2rem;
}

.response-item {
    flex: 1;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.response-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-contact {
    padding: 5rem 5%;
    text-align: center;
    background: var(--bg-light);
}

.cta-contact h2 {
    margin-bottom: 1rem;
}

.cta-contact p {
    margin-bottom: 2rem;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    background: var(--bg-light);
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-content h1 {
    margin-bottom: 1.5rem;
    color: var(--success-color);
}

.thanks-details {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.submission-info p {
    margin-bottom: 0.5rem;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    margin: 0;
}

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

.legal-page {
    padding: 5rem 5%;
}

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

.legal-content h1 {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-split,
    .services-preview-split,
    .trust-builder,
    .cta-section-split,
    .why-choose,
    .story-section,
    .values-split,
    .mission-split,
    .service-block-split,
    .comparison-split,
    .form-container-split,
    .contact-info-split {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right {
        min-height: 50vh;
    }

    .extra-grid,
    .response-grid,
    .cta-buttons,
    .thanks-cta {
        flex-direction: column;
    }

    .testimonials-offset {
        flex-direction: column;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

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

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

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

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

    .nav-right {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    h1 {
        font-size: 1.8rem;
    }

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

    .intro-asymmetric {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
