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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7f;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --overlay-dark: rgba(26, 58, 82, 0.85);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    flex: 1;
}

.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.75rem;
    color: var(--text-light);
    padding: 0.5rem 1rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

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

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 5%;
    background-color: var(--bg-white);
}

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

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

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-right {
    flex: 1;
    position: relative;
    background-color: var(--bg-light);
}

.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: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.intro-asymmetric {
    display: flex;
    gap: 4rem;
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.intro-wide {
    flex: 1.5;
}

.intro-wide h2 {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.intro-offset {
    flex: 1;
    position: relative;
}

.intro-offset img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background-color: var(--border-color);
}

.intro-insight {
    padding: 1.5rem;
    background-color: var(--accent-color);
    border-radius: 4px;
    color: var(--text-dark);
}

.intro-insight p {
    font-size: 1rem;
    line-height: 1.6;
}

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

.services-header-split {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}

.services-title {
    flex: 1;
}

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

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

.services-visual {
    flex: 1;
}

.services-visual img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--bg-light);
}

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

.service-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.service-price {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--border-color);
}

.cta-inline {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background-color: var(--primary-color);
    border-radius: 8px;
    color: white;
}

.cta-inline p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.philosophy-section {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.philosophy-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.philosophy-text {
    flex: 1.2;
}

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

.philosophy-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.philosophy-image {
    flex: 1;
}

.philosophy-image img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--border-color);
}

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

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

.form-intro {
    flex: 1;
}

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

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

.form-wrapper {
    flex: 1;
}

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

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

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

.form-group input,
.form-group select {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

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

.testimonials-asymmetric {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.testimonials-asymmetric h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.testimonials-offset {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 2rem;
    background-color: var(--bg-white);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.testimonial-card.offset {
    margin-left: 5rem;
}

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

.testimonial-author {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.footer-split {
    display: flex;
    gap: 3rem;
    padding: 4rem 5%;
    background-color: var(--primary-color);
    color: white;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.disclaimer-footer {
    font-size: 0.8rem;
    line-height: 1.5;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--overlay-dark);
    color: white;
    padding: 1.5rem 5%;
    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;
    font-size: 0.95rem;
}

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

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

.btn-accept {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-accept:hover {
    opacity: 0.9;
}

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

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

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

.page-hero-content {
    flex: 1;
    padding: 5%;
    background-color: var(--bg-white);
}

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

.page-hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.page-hero-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.about-story {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.story-split {
    display: flex;
    gap: 4rem;
}

.story-text {
    flex: 1.5;
}

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

.story-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.story-insight-box {
    flex: 1;
    padding: 2rem;
    background-color: var(--accent-color);
    border-radius: 8px;
    align-self: flex-start;
}

.story-insight-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.story-insight-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.team-philosophy {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

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

.philosophy-blocks {
    display: flex;
    gap: 2rem;
}

.philosophy-block {
    flex: 1;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.philosophy-block p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.about-values-split {
    display: flex;
    gap: 4rem;
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.values-image {
    flex: 1;
}

.values-image img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--border-color);
}

.values-content {
    flex: 1;
}

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

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

.values-list li {
    padding: 1.25rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.values-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

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

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

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

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

.service-detail-split {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

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

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

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

.service-includes h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.service-includes li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.price-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-right: 1rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

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

.cta-service:hover {
    background-color: var(--secondary-color);
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--bg-light);
}

.services-approach {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

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

.approach-timeline {
    display: flex;
    gap: 2rem;
}

.timeline-step {
    flex: 1;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.timeline-step p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

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

.contact-page-split {
    display: flex;
    gap: 4rem;
    padding: 6rem 5%;
    min-height: 70vh;
}

.contact-info-side {
    flex: 1;
}

.contact-info-side h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

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

.contact-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.email-display {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-form-side {
    flex: 1;
}

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

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

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

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

.service-confirm {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.legal-page {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

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

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

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

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

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

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

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

.legal-update {
    margin-top: 3rem;
    font-style: italic;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-asymmetric,
    .services-header-split,
    .philosophy-split,
    .form-container-split,
    .story-split,
    .philosophy-blocks,
    .about-values-split,
    .service-detail-split,
    .approach-timeline,
    .contact-page-split {
        flex-direction: column;
    }

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

    .testimonial-card.offset {
        margin-left: 0;
    }

    .hero-content h1,
    .page-hero-content h1,
    .contact-info-side h1,
    .thanks-content h1 {
        font-size: 2.25rem;
    }

    .nav-main {
        gap: 1rem;
    }

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

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

    .header-right {
        align-items: center;
    }

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

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