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

:root {
    --primary-color: #2C5F7C;
    --secondary-color: #E89B3C;
    --dark-color: #1A1A1A;
    --light-gray: #F4F4F4;
    --text-color: #333333;
    --white: #FFFFFF;
    --accent: #8FB9AA;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--white);
    border-bottom: 1px solid #e0e0e0;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-notice {
    font-size: 0.8rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f9f9f9;
    border-radius: 3px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: var(--light-gray);
}

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

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

.hero-lead {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-right {
    flex: 1;
    background-color: var(--accent);
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

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

.intro-split {
    display: flex;
    min-height: 70vh;
}

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

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

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

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

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

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 400px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--light-gray);
}

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

.card-content {
    padding: 2rem;
}

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

.card-content p {
    margin-bottom: 1rem;
    color: #555;
}

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

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

.btn-select:hover {
    background-color: var(--primary-color);
    transform: scale(1.02);
}

.form-split {
    display: flex;
    min-height: 70vh;
    background-color: var(--light-gray);
}

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

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.form-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.form-right {
    flex: 1;
    padding: 5rem 5%;
    background-color: var(--white);
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f9f9f9;
    cursor: not-allowed;
}

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

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

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

.trust-content {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.quote {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #FFF9F0;
    border-top: 1px solid #f0e0c0;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

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

.footer-top {
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

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

.footer-col p,
.footer-col a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    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;
    margin: 0;
}

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

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

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

.btn-cookie.accept:hover {
    background-color: #d68a2a;
    transform: scale(1.05);
}

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

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

.thanks-split {
    display: flex;
    min-height: 70vh;
    background-color: var(--light-gray);
}

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

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

.thanks-lead {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.thanks-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.thanks-right {
    flex: 1;
    background-color: var(--accent);
}

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

.next-steps {
    list-style: none;
    margin-top: 2rem;
}

.next-steps li {
    margin-bottom: 1rem;
}

.next-steps a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.next-steps a:hover {
    color: var(--secondary-color);
}

.about-hero-split {
    display: flex;
    min-height: 60vh;
    background-color: var(--light-gray);
}

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

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-hero-content p {
    font-size: 1.2rem;
    max-width: 500px;
}

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

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

.story-split {
    display: flex;
    min-height: 60vh;
}

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

.story-image {
    flex: 1;
    background-color: var(--accent);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 5rem 5%;
    background-color: var(--white);
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 8px;
    text-align: center;
}

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

.value-card p {
    font-size: 1rem;
    color: #555;
}

.team-split {
    display: flex;
    min-height: 60vh;
    background-color: var(--light-gray);
}

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

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

.team-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

.services-header-split {
    display: flex;
    min-height: 60vh;
    background-color: var(--light-gray);
}

.services-header-left {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-header-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.services-header-left p {
    font-size: 1.2rem;
    max-width: 500px;
}

.services-header-right {
    flex: 1;
    background-color: var(--accent);
}

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

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

.service-detail-card {
    display: flex;
    min-height: 50vh;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-left {
    flex: 1;
    background-color: var(--light-gray);
}

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

.service-detail-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.service-detail-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.service-detail-right ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-right ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail-right ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

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

.pricing-note {
    padding: 2rem 5%;
    background-color: var(--light-gray);
    text-align: center;
}

.pricing-note p {
    font-size: 0.95rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-split {
    display: flex;
    min-height: 60vh;
    background-color: var(--light-gray);
}

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

.contact-hero-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.contact-hero-left p {
    font-size: 1.2rem;
    max-width: 500px;
}

.contact-hero-right {
    flex: 1;
    background-color: var(--primary-color);
}

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

.contact-info-split {
    display: flex;
    min-height: 60vh;
}

.contact-left {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
}

.info-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-block p {
    font-size: 1.1rem;
    color: #555;
}

.contact-right {
    flex: 1;
    background-color: var(--accent);
}

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

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

.contact-note h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-note p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-note a:hover {
    color: var(--secondary-color);
}

.legal-content {
    padding: 5rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

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

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content em {
    color: #666;
}

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

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .form-split,
    .thanks-split,
    .about-hero-split,
    .story-split,
    .team-split,
    .services-header-split,
    .service-detail-card,
    .contact-hero-split,
    .contact-info-split {
        flex-direction: column;
    }

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

    .hero-left,
    .intro-content,
    .form-left,
    .thanks-left,
    .about-hero-content,
    .story-content,
    .team-content,
    .services-header-left,
    .service-detail-right,
    .contact-hero-left,
    .contact-left {
        padding: 3rem 5%;
    }

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

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

    .main-nav {
        gap: 1rem;
    }

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