:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5a7b;
    --accent-color: #e8944a;
    --text-dark: #1f1f1f;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
}

* {
    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.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.ad-disclosure {
    background: #fffbea;
    color: #744210;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    border-bottom: 1px solid #f3d78e;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: var(--accent-color);
}

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

.hero-content {
    flex: 1;
    padding: 4rem 5% 4rem 8%;
    background: var(--bg-light);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 550px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #d47f38;
}

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

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

.value-split {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

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

.split-visual {
    flex: 1;
    background: var(--border-color);
}

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

.split-content {
    flex: 1;
    padding: 4rem 8%;
}

.split-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.intro-centered {
    padding: 5rem 8%;
    background: var(--bg-white);
}

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

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

.intro-wrapper p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: var(--border-color);
}

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

.service-card p {
    margin: 0 1.5rem 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 1.5rem 1rem;
}

.select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.875rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: var(--primary-color);
}

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

.form-visual {
    flex: 1;
    background: var(--border-color);
}

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

.form-container {
    flex: 1;
    padding: 4rem 8%;
    background: var(--bg-light);
}

.form-container h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-container p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #d47f38;
}

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

.trust-content {
    max-width: 1100px;
    margin: 0 auto;
}

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

.testimonials {
    display: flex;
    gap: 3rem;
}

.testimonial {
    flex: 1;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.main-footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 8% 1.5rem;
}

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

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: #cbd5e0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
}

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

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

.btn-accept {
    background: var(--accent-color);
    color: var(--bg-white);
}

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

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

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

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

.page-hero-centered {
    padding: 5rem 8%;
    text-align: center;
    background: var(--bg-light);
}

.page-hero-centered h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-hero-centered p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.story-split {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

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

.values-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 4px;
}

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

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.approach-split {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

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

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

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

.team-wrapper p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.service-detail-split {
    display: flex;
    align-items: center;
    padding: 4rem 8%;
    gap: 4rem;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

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

.service-detail-content li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

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

.service-detail-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--border-color);
}

.price-box {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

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

.cta-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-wrapper p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #d47f38;
}

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

.contact-info {
    flex: 1;
    padding: 4rem 8%;
    background: var(--bg-light);
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

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

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

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(232, 148, 74, 0.1);
    border-left: 4px solid var(--accent-color);
}

.contact-note p {
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--border-color);
}

.location-info {
    padding: 4rem 8%;
    background: var(--bg-white);
}

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

.location-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.location-wrapper p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

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

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

.thanks-main {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-detail {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.thanks-info {
    text-align: left;
    margin-bottom: 3rem;
}

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

.thanks-info p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: #d47f38;
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--border-color);
}

.legal-page {
    padding: 4rem 8%;
    background: var(--bg-white);
}

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

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

.legal-update {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.legal-wrapper h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

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

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

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

.legal-wrapper a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-wrapper a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .hero-split,
    .value-split,
    .form-split,
    .contact-split,
    .service-detail-split,
    .story-split,
    .approach-split {
        flex-direction: column;
    }

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

    .hero-content h1,
    .page-hero-centered h1,
    .thanks-wrapper h1 {
        font-size: 2rem;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonials {
        flex-direction: column;
    }

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

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

    .value-item {
        flex: 1 1 100%;
    }

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

    .nav-menu {
        gap: 1rem;
        font-size: 0.875rem;
    }
}