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

:root {
    --primary: #1a3a52;
    --secondary: #2d5f7f;
    --accent: #d4a574;
    --dark: #0f1e2b;
    --light: #f4f6f8;
    --white: #ffffff;
    --text: #2c3e50;
    --text-light: #5a6c7d;
    --border: #e1e8ed;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-cookie:hover {
    background: #c49563;
}

.btn-cookie-alt {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

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

.nav-left .logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-right a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: var(--secondary);
}

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

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

.hero-text-container {
    max-width: 580px;
}

.hero-split h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background: var(--secondary);
}

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

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

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--secondary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--secondary);
    transition: all 0.3s ease;
}

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

.intro-split {
    display: flex;
}

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

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

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

.intro-right {
    padding: 5rem 8% 5rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-right h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.intro-right p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.philosophy-left {
    flex: 1;
    padding-right: 3rem;
}

.philosophy-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.philosophy-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-card p {
    font-size: 1rem;
    opacity: 0.9;
}

.services-grid {
    padding: 6rem 5%;
    background: var(--white);
}

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

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

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

.service-card-split {
    display: flex;
    margin-bottom: 3rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card-split:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

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

.service-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.service-features {
    list-style: none;
}

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

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

.service-pricing {
    flex: 1;
    background: var(--light);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

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

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

.btn-select:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.testimonial-split {
    display: flex;
    background: var(--light);
}

.testimonial-content {
    flex: 1.2;
    padding: 5rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--primary);
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 400;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.testimonial-image {
    flex: 1;
}

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

.approach-split {
    display: flex;
}

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

.approach-left {
    flex: 1;
}

.approach-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 550px;
}

.approach-right {
    flex: 1;
    padding: 5rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.approach-right h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

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

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

.leadership-left {
    flex: 1;
    padding-right: 2rem;
}

.leadership-left h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

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

.leadership-right {
    flex: 1;
}

.leadership-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    min-height: 400px;
}

.process-split {
    display: flex;
}

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

.process-left {
    flex: 1;
}

.process-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.process-right {
    flex: 1;
    padding: 5rem 6%;
    background: var(--white);
}

.process-right h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 3rem;
    font-weight: 600;
}

.process-step {
    margin-bottom: 2.5rem;
}

.process-step h4 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

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

.cta-split {
    padding: 6rem 5%;
    background: var(--secondary);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    max-width: 550px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-close:hover {
    color: var(--primary);
}

.modal-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

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

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

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

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

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

.footer-left {
    flex: 1;
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-left p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copy {
    opacity: 0.6;
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .approach-split,
    .process-split,
    .leadership-split,
    .philosophy-split,
    .testimonial-split {
        flex-direction: column;
    }

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

    .hero-split h1 {
        font-size: 2.2rem;
    }

    .nav-right {
        gap: 1.5rem;
    }

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

    .footer-right {
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

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

@media (max-width: 640px) {
    .hero-left,
    .intro-right,
    .approach-right,
    .process-right {
        padding: 3rem 5%;
    }

    .hero-split h1 {
        font-size: 1.8rem;
    }

    .nav-split {
        padding: 1rem 5%;
    }

    .nav-right {
        gap: 1rem;
    }

    .nav-right a {
        font-size: 0.85rem;
    }
}