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

:root {
    --primary-color: #2C5F8D;
    --secondary-color: #E8925C;
    --dark-bg: #1A1A2E;
    --light-bg: #F8F9FA;
    --text-dark: #2D3748;
    --text-light: #718096;
    --accent: #4A90A4;
    --border-color: #E2E8F0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    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 {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

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

.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-right a:hover::after {
    width: 100%;
}

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

.hero-left {
    flex: 1;
    padding: 4rem 5% 4rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

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

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

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

.cta-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44,95,141,0.3);
}

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

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

.intro-asymmetric {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
    background: var(--light-bg);
}

.intro-content {
    flex: 1.2;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.intro-visual {
    flex: 0.8;
}

.intro-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.problem-section {
    padding: 5rem 8%;
    background: #ffffff;
}

.problem-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
}

.problem-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.problem-card p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.approach-split {
    display: flex;
    min-height: 600px;
}

.approach-image {
    flex: 1;
    background: var(--primary-color);
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.approach-text {
    flex: 1;
    padding: 5rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-text h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--dark-bg);
}

.approach-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.approach-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.testimonials-inline {
    padding: 5rem 8%;
    background: var(--dark-bg);
    color: #ffffff;
}

.testimonials-inline h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonial-flow {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.testimonial-quote {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.services-overview {
    padding: 6rem 8%;
    background: #ffffff;
}

.services-overview h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.services-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3.5rem;
    max-width: 700px;
}

.services-split-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-block {
    flex: 1;
    min-width: 320px;
    padding: 2.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.5rem;
    color: var(--dark-bg);
    flex: 1;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.service-block p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-duration {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
}

.form-section {
    padding: 6rem 8%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent) 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form-container h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background: var(--primary-color);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.trust-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-bg);
}

.trust-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 260px;
    text-align: center;
}

.trust-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.trust-item p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 5%;
    background: var(--dark-bg);
    color: #ffffff;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left p {
    font-size: 0.95rem;
}

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

.footer-right a {
    color: #ffffff;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-right a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.sticky-cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: #ffffff;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(232,146,92,0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(232,146,92,0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    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;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

.btn-accept {
    background: var(--secondary-color);
    color: #ffffff;
}

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

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

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

.page-hero {
    padding: 5rem 8%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent) 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story-split {
    display: flex;
    padding: 6rem 8%;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

.values-section h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-bg);
}

.values-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 240px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.team-split {
    padding: 6rem 8%;
    display: flex;
    gap: 4rem;
}

.team-intro {
    flex: 1;
}

.team-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
}

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

.team-members {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    padding: 2rem;
    background: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-bg);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-member p {
    color: var(--text-light);
}

.mission-section {
    padding: 5rem 8%;
    background: var(--dark-bg);
    color: #ffffff;
    text-align: center;
}

.mission-section h2 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
}

.mission-text {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
}

.services-detail {
    padding: 4rem 8%;
}

.services-note {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: center;
}

.service-detail-split {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.service-detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 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(--secondary-color);
    font-weight: 700;
}

.service-duration {
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.cta-inline {
    display: inline-block;
    background: var(--primary-color);
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: var(--accent);
    transform: translateX(5px);
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.booking-cta-section h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.booking-cta-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    color: var(--dark-bg);
}

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

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-block p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-block a {
    color: var(--accent);
    text-decoration: underline;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.contact-note {
    padding: 4rem 8%;
    background: var(--light-bg);
    text-align: center;
}

.contact-note h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
}

.contact-note p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.contact-note a {
    color: var(--accent);
    text-decoration: underline;
}

.thanks-section {
    padding: 6rem 8%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-service-info {
    margin-bottom: 3rem;
}

.selected-service {
    font-size: 1.2rem;
    color: var(--text-dark);
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.thanks-next-steps {
    margin-bottom: 3rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
}

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

.steps-list li {
    counter-increment: step-counter;
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-light);
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-contact {
    margin-bottom: 3rem;
}

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

.thanks-contact a {
    color: var(--accent);
    text-decoration: underline;
}

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

.legal-page {
    padding: 4rem 8%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

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

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

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

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

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

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

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

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-asymmetric,
    .approach-split,
    .about-story-split,
    .team-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right,
    .approach-image,
    .approach-text {
        flex: 1;
    }

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

    .nav-right {
        gap: 1.2rem;
    }
}

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

    .hero-left {
        padding: 3rem 5%;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .problem-grid,
    .testimonial-flow,
    .trust-grid,
    .values-grid {
        flex-direction: column;
    }

    .form-container {
        padding: 2.5rem 1.5rem;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

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

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

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

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 1.8rem;
    }

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

    .footer-split {
        flex-direction: column;
        text-align: center;
    }

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