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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.ad-notice {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #3498db;
}

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

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem 5%;
}

.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #3498db;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.intro-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.intro-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
}

.intro-right {
    position: relative;
    overflow: hidden;
}

.intro-right img {
    width: 100%;
    height: 100%;
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.section-header-center p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.services-preview {
    padding: 0 5% 5rem;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-split {
    display: flex;
    min-height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

.service-card-left {
    position: relative;
    overflow: hidden;
}

.service-card-left img {
    width: 100%;
    height: 100%;
}

.service-card-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    background-color: #ffffff;
}

.service-card-right h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-card-right p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.8rem 1.8rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 0.95rem;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.philosophy-split {
    display: flex;
    min-height: 70vh;
    margin-top: 4rem;
}

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

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

.philosophy-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.philosophy-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
}

.philosophy-right {
    position: relative;
    overflow: hidden;
}

.philosophy-right img {
    width: 100%;
    height: 100%;
}

.form-section-split {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.form-container-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

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

.form-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.form-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6c7d;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 0.95rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1rem;
    align-self: flex-start;
}

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

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #ecf0f1;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.footer-split {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 5% 1.5rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #bdc3c7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 2000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    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;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.btn-cookie {
    background-color: #3498db;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-hero-split {
    background-color: #34495e;
    color: #ffffff;
    padding: 5rem 5%;
    text-align: center;
}

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

.page-hero-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

.about-intro-split {
    display: flex;
    min-height: 70vh;
    margin-top: 3rem;
}

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

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

.about-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.about-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
}

.about-right {
    position: relative;
    overflow: hidden;
}

.about-right img {
    width: 100%;
    height: 100%;
}

.values-split {
    display: flex;
    min-height: 70vh;
    margin-top: 3rem;
}

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

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

.values-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
}

.values-list li strong {
    color: #2c3e50;
}

.values-right {
    position: relative;
    overflow: hidden;
}

.values-right img {
    width: 100%;
    height: 100%;
}

.team-section {
    padding: 4rem 5%;
}

.approach-content-split {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.approach-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.mission-split {
    display: flex;
    min-height: 70vh;
    margin-top: 3rem;
}

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

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

.mission-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.mission-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
}

.mission-right {
    position: relative;
    overflow: hidden;
}

.mission-right img {
    width: 100%;
    height: 100%;
}

.services-detail-section {
    padding: 3rem 5%;
}

.service-detail-split {
    display: flex;
    min-height: 650px;
    margin-bottom: 4rem;
}

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

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

.service-detail-left {
    position: relative;
    overflow: hidden;
}

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

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

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

.service-detail-right h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-detail-right p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #5a6c7d;
}

.service-detail-right ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-right ul li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #5a6c7d;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin: 1.5rem 0;
}

.cta-section-split {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

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

.cta-content-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.cta-content-center p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

.contact-section-split {
    display: flex;
    min-height: 70vh;
    margin-top: 3rem;
}

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

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

.contact-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 0;
}

.contact-right {
    position: relative;
    overflow: hidden;
}

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

.location-info {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.location-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #5a6c7d;
}

.thanks-section {
    padding: 5rem 5%;
    min-height: 60vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-content > p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

.thanks-details {
    background-color: #e8f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #2c3e50;
}

.thanks-next-steps {
    text-align: left;
    margin: 3rem 0;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
}

.thanks-next-steps ol li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #5a6c7d;
}

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

.legal-page {
    padding: 3rem 5%;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #5a6c7d;
}

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

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #5a6c7d;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .philosophy-split,
    .about-intro-split,
    .values-split,
    .mission-split,
    .service-detail-split,
    .contact-section-split {
        flex-direction: column;
    }

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

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

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

    .approach-content-split {
        flex-direction: column;
    }

    .form-container-split {
        flex-direction: column;
    }

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

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

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

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

    .thanks-cta {
        flex-direction: column;
        align-items: center;
    }
}