* {
    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: #1a202c;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.cookie-content a {
    color: #63b3ed;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #38a169;
}

.btn-reject {
    background-color: #4a5568;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #2d3748;
}

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

.header-left {
    flex: 1;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #718096;
    padding: 0.25rem 0.75rem;
    background-color: #f7fafc;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.header-right a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.header-right a:hover {
    color: #2d3748;
}

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

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

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

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    background-color: #f7fafc;
}

.hero-right h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.hero-right p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2d3748;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-align: center;
}

.cta-primary:hover {
    background-color: #1a202c;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #2d3748;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #2d3748;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-secondary:hover {
    background-color: #2d3748;
    color: #ffffff;
}

.info-split {
    display: flex;
    min-height: 500px;
}

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

.info-text {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.info-text p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.info-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.info-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-intro {
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.section-header-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-header-centered h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.section-header-centered p {
    font-size: 1.1rem;
    color: #4a5568;
}

.services-grid-split {
    background-color: #f7fafc;
}

.service-card-split {
    display: flex;
    min-height: 450px;
}

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

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.875rem 1.75rem;
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #1a202c;
}

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

.approach-left {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.approach-left h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

.approach-step {
    margin-bottom: 2rem;
}

.approach-step h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.approach-step p {
    font-size: 1rem;
    color: #4a5568;
}

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

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

.form-section-split {
    display: flex;
    min-height: 600px;
    background-color: #f7fafc;
}

.form-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-container {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.form-container > p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

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

.disclaimer-section {
    padding: 3rem 3rem;
    background-color: #fff5f5;
    border-top: 2px solid #fc8181;
}

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

.disclaimer-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #742a2a;
}

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

.footer-split {
    display: flex;
    padding: 3rem;
    background-color: #2d3748;
    color: #ffffff;
    gap: 3rem;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-split h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-split a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-split a:hover {
    color: #ffffff;
}

.footer-split p {
    color: #cbd5e0;
    font-size: 0.95rem;
}

.page-hero-split {
    padding: 4rem 3rem;
    background-color: #f7fafc;
}

.hero-text-full {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-text-full h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.hero-text-full p {
    font-size: 1.2rem;
    color: #4a5568;
}

.story-split {
    display: flex;
    min-height: 500px;
}

.story-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.story-text p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.values-split {
    display: flex;
    min-height: 550px;
}

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

.values-text {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #f7fafc;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

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

.values-list li {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #4a5568;
}

.values-list strong {
    color: #2d3748;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.values-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.team-split {
    padding: 4rem 3rem;
    background-color: #ffffff;
}

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

.team-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.team-intro p {
    font-size: 1.05rem;
    color: #4a5568;
}

.philosophy-split {
    display: flex;
    min-height: 550px;
}

.philosophy-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.philosophy-right {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #f7fafc;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.philosophy-right p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.services-detail-split {
    background-color: #f7fafc;
}

.service-detail-card {
    display: flex;
    min-height: 500px;
}

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

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

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

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

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

.price-highlight {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.service-detail-right h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

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

.service-detail-right li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.cta-section-centered {
    padding: 4rem 3rem;
    background-color: #2d3748;
    text-align: center;
    color: #ffffff;
}

.cta-section-centered h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-section-centered p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #cbd5e0;
}

.contact-split {
    display: flex;
    min-height: 500px;
}

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

.contact-info-left h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

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

.contact-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.contact-block p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.email-display {
    font-weight: 600;
    color: #2d3748;
}

.small-note {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 0.5rem;
}

.contact-map-right {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    max-width: 500px;
}

.map-placeholder p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.additional-info-split {
    display: flex;
    background-color: #f7fafc;
}

.info-card-left,
.info-card-right {
    flex: 1;
    padding: 3rem;
}

.info-card-left h3,
.info-card-right h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.info-card-left p,
.info-card-right p {
    font-size: 1rem;
    color: #4a5568;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #f7fafc;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background-color: #48bb78;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.thanks-details {
    margin-bottom: 2rem;
}

.selected-service-info {
    font-size: 1.1rem;
    color: #2d3748;
}

.next-steps {
    text-align: left;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.steps-list {
    padding-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: 1rem;
}

.thanks-note {
    background-color: #fff5f5;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-note p {
    font-size: 0.95rem;
    color: #742a2a;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.legal-updated {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

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

.legal-content li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-content a {
    color: #2d3748;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1a202c;
}

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

    .header-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-split,
    .info-split,
    .service-card-split,
    .approach-split,
    .form-section-split,
    .story-split,
    .values-split,
    .philosophy-split,
    .service-detail-card,
    .contact-split,
    .additional-info-split {
        flex-direction: column;
    }

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

    .hero-right h1,
    .hero-text-full h1 {
        font-size: 2rem;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
    }
}
