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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

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

a:hover {
    opacity: 0.7;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

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

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #fafafa;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background-color: #f0f0f0;
}

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

.hero-split h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #333333;
    opacity: 1;
}

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

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

.intro-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #ffffff;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.insight-full {
    padding: 6rem 3rem;
    background-color: #f9f9f9;
}

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

.insight-full h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

.insight-full p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
    color: #4a4a4a;
}

.insight-grid {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
}

.insight-card {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.insight-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.insight-card p {
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
    color: #4a4a4a;
}

.services-section {
    padding: 6rem 3rem;
    background-color: #ffffff;
}

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

.services-intro h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.service-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    flex: 1;
    background-color: #e5e5e5;
}

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

.service-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #333333;
}

.testimonials-split {
    display: flex;
    min-height: 70vh;
    background-color: #f0f0f0;
}

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

.testimonials-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonial-item {
    margin-bottom: 3rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: #4a4a4a;
}

.testimonials-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.cta-form-section {
    padding: 6rem 3rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.cta-form-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.cta-form-section p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    text-align: center;
    color: #e0e0e0;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-form input,
.main-form select,
.main-form textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
}

.main-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #e5e5e5;
}

.footer {
    background-color: #f9f9f9;
    padding: 4rem 3rem 2rem;
    border-top: 1px solid #e5e5e5;
}

.footer-content {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.footer-column p,
.footer-column a {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4a4a4a;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.copyright {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 3rem;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie {
    background-color: #ffffff;
    color: #1a1a1a;
}

.btn-cookie:hover {
    background-color: #e5e5e5;
}

.btn-cookie-alt {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.page-hero {
    padding: 6rem 3rem 4rem;
    background-color: #f9f9f9;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #4a4a4a;
}

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

.about-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #ffffff;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.values-section {
    padding: 6rem 3rem;
    background-color: #f9f9f9;
}

.values-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

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

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

.team-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #ffffff;
}

.team-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.team-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

.cta-simple {
    padding: 6rem 3rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-simple h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-simple p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.services-detailed {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-detail-item {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.service-detail-left img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e5e5e5;
}

.service-detail-right {
    flex: 1;
    padding: 2rem;
}

.service-detail-right h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-detail-right h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-detail-right p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

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

.service-detail-right ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.service-detail-right ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

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

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #f9f9f9;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

.contact-info-section {
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.contact-info-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a1a1a;
}

.contact-info-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    color: #4a4a4a;
}

.thanks-hero {
    padding: 8rem 3rem;
    background-color: #f9f9f9;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-info {
    font-size: 1.2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    color: #4a4a4a;
}

.legal-page {
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-update {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

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

.legal-page ul li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.legal-page a {
    color: #1a1a1a;
    text-decoration: underline;
}

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

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

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-split,
    .intro-split,
    .about-split,
    .team-split,
    .testimonials-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-split h1,
    .page-hero h1 {
        font-size: 2rem;
    }

    .hero-left,
    .intro-content,
    .about-content,
    .team-content,
    .testimonials-content,
    .contact-info {
        padding: 2rem;
    }

    .insight-grid,
    .values-grid {
        flex-direction: column;
    }

    .service-item,
    .service-detail-item {
        flex-direction: column;
    }

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

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