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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5f7f;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #555;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --transition: all 0.3s ease;
}

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

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.header-right .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
}

.hero-split,
.intro-split,
.trust-split,
.cta-form-split,
.about-hero-split,
.story-split,
.values-split,
.approach-split,
.cta-about-split,
.services-hero-split,
.services-cta-split,
.contact-hero-split,
.contact-info-split,
.contact-note-split,
.contact-faq-split,
.thanks-split,
.next-steps-split {
    display: flex;
    min-height: 500px;
    align-items: center;
}

.hero-split {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-left,
.hero-right,
.intro-left,
.intro-right,
.trust-left,
.trust-right,
.cta-left,
.cta-right,
.about-hero-left,
.about-hero-right,
.story-left,
.story-right,
.values-left,
.values-right,
.approach-left,
.approach-right,
.cta-about-left,
.cta-about-right,
.services-hero-left,
.services-hero-right,
.services-cta-left,
.services-cta-right,
.contact-hero-left,
.contact-hero-right,
.contact-info-left,
.contact-info-right,
.contact-note-left,
.contact-note-right,
.faq-left,
.faq-right,
.thanks-left,
.thanks-right,
.next-steps-left,
.next-steps-right {
    flex: 1;
    padding: 2rem;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

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

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

.hero-right img,
.intro-right img,
.trust-right img,
.about-hero-right img,
.story-right img,
.values-right img,
.approach-right img,
.cta-about-left img,
.services-hero-right img,
.contact-hero-right img,
.contact-info-right img,
.contact-note-right img,
.thanks-right img,
.next-steps-right img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

.intro-left h2,
.trust-left h2,
.story-left h2,
.values-left h2,
.approach-left h2,
.cta-about-right h2,
.services-cta-left h2,
.contact-note-left h2,
.faq-left h2,
.next-steps-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.intro-left p,
.trust-left p,
.story-left p,
.values-left p,
.approach-left p,
.cta-about-right p,
.contact-note-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

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

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

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

.service-item-split {
    display: flex;
    margin-bottom: 4rem;
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    align-items: stretch;
}

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

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

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

.service-left h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-left h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

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

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

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

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin: 2rem 0 1.5rem;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin: 2rem 0 1.5rem;
}

.btn-service {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    align-self: flex-start;
}

.btn-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 58, 82, 0.3);
}

.service-right {
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.trust-split {
    padding: 4rem 5%;
    background: var(--bg-white);
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-point h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.trust-point p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-form-split {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-left h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-left p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 58, 82, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

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

.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 5% 1rem;
}

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

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

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 5%;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: var(--transition);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-accept:hover {
    background: #229954;
}

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

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

.about-hero-split {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #e8f4f8 0%, #d3e4f1 100%);
}

.about-hero-left h1,
.services-hero-left h1,
.contact-hero-left h1,
.thanks-left h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.story-split,
.approach-split {
    padding: 4rem 5%;
    background: var(--bg-white);
}

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

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

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.value-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.team-split {
    padding: 4rem 5%;
    background: var(--bg-white);
}

.team-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.team-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

.expertise-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.expertise-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.expertise-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.services-hero-split {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
}

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

.services-cta-split {
    padding: 4rem 5%;
    background: var(--primary-color);
    align-items: center;
    justify-content: center;
}

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

.services-cta-left p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.services-cta-right {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
}

.contact-hero-split {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #dfe6e9 0%, #b2bec3 100%);
}

.contact-info-split {
    padding: 4rem 5%;
    background: var(--bg-white);
}

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

.contact-detail h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-detail p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-detail a {
    color: var(--accent-color);
    font-weight: 600;
}

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

.contact-note-split.reverse {
    flex-direction: row-reverse;
}

.contact-map-split {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 82, 0.9);
    padding: 2rem;
    color: white;
}

.map-overlay p {
    margin: 0;
    font-size: 1.1rem;
}

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

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.faq-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-split {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #d4f1d4 0%, #a8e6a8 100%);
}

.thanks-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255,255,255,0.8);
    border-radius: 8px;
}

.service-selected {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.next-steps-split {
    padding: 4rem 5%;
    background: var(--bg-white);
}

.next-steps-split.reverse {
    flex-direction: row-reverse;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.steps-list li strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.steps-list li p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.thanks-cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.thanks-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    padding: 4rem 5%;
    background: var(--bg-white);
    min-height: 60vh;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-container h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-container p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-container ul,
.legal-container ol {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

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

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

.legal-container a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cookie-table thead {
    background: var(--primary-color);
    color: white;
}

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

.cookie-table th {
    font-weight: 600;
}

.cookie-table tr:hover {
    background: var(--bg-light);
}

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

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

    .hero-split,
    .intro-split,
    .trust-split,
    .cta-form-split,
    .service-item-split,
    .about-hero-split,
    .story-split,
    .values-split,
    .approach-split,
    .cta-about-split,
    .services-hero-split,
    .services-cta-split,
    .contact-hero-split,
    .contact-info-split,
    .contact-note-split,
    .contact-faq-split,
    .thanks-split,
    .next-steps-split {
        flex-direction: column;
        min-height: auto;
    }

    .service-item-split.reverse,
    .intro-split.reverse,
    .approach-split.reverse,
    .contact-note-split.reverse,
    .next-steps-split.reverse {
        flex-direction: column;
    }

    .hero-left h1,
    .about-hero-left h1,
    .services-hero-left h1,
    .contact-hero-left h1,
    .thanks-left h1 {
        font-size: 2rem;
    }

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

    .intro-left h2,
    .trust-left h2,
    .story-left h2,
    .values-left h2,
    .approach-left h2,
    .cta-about-right h2,
    .services-cta-left h2,
    .contact-note-left h2,
    .faq-left h2,
    .next-steps-left h2,
    .thanks-cta-content h2 {
        font-size: 1.8rem;
    }

    .service-left h3 {
        font-size: 1.5rem;
    }

    .hero-left,
    .hero-right,
    .intro-left,
    .intro-right,
    .trust-left,
    .trust-right,
    .cta-left,
    .cta-right,
    .service-left,
    .service-right,
    .about-hero-left,
    .about-hero-right,
    .story-left,
    .story-right,
    .values-left,
    .values-right,
    .approach-left,
    .approach-right,
    .cta-about-left,
    .cta-about-right,
    .services-hero-left,
    .services-hero-right,
    .services-cta-left,
    .services-cta-right,
    .contact-hero-left,
    .contact-hero-right,
    .contact-info-left,
    .contact-info-right,
    .contact-note-left,
    .contact-note-right,
    .faq-left,
    .faq-right,
    .thanks-left,
    .thanks-right,
    .next-steps-left,
    .next-steps-right {
        padding: 1rem;
    }

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

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

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

    .services-cta-right {
        align-items: center;
    }

    .thanks-links {
        flex-direction: column;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}