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

:root {
    --color-primary: #1a1a1a;
    --color-secondary: #2d2d2d;
    --color-accent: #d4a574;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f8f8;
    --color-border: #e0e0e0;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1400px;
}

.nav-container {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.brand {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-accent);
}

.ad-disclosure {
    font-size: 11px;
    color: var(--color-text-light);
    padding: 4px 12px;
    border: 1px solid var(--color-border);
    border-radius: 20px;
}

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 5% 60px;
    overflow: hidden;
}

.hero-content-offset {
    width: 45%;
    z-index: 2;
    position: relative;
}

.hero-text-block {
    background-color: white;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.cta-primary:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 70%;
    background-color: var(--color-bg-alt);
}

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

.intro-offset {
    padding: 100px 5%;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-narrow {
    flex: 1;
    max-width: 500px;
}

.intro-narrow h2 {
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-narrow p {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.intro-visual {
    flex: 1;
    background-color: var(--color-bg-alt);
}

.intro-visual img {
    width: 100%;
    height: 400px;
}

.services-asymmetric {
    padding: 80px 5%;
    background-color: var(--color-bg-alt);
}

.services-header-offset {
    max-width: 600px;
    margin-bottom: 60px;
    margin-left: 8%;
}

.services-header-offset h2 {
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.services-header-offset p {
    font-size: 18px;
    color: var(--color-text-light);
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: white;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card.large {
    flex: 1 1 calc(66% - 15px);
    min-width: 500px;
    flex-direction: row;
}

.service-card.medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 400px;
}

.service-card.small {
    flex: 1 1 calc(33% - 20px);
    min-width: 300px;
}

.service-image {
    background-color: var(--color-bg-alt);
}

.service-card.large .service-image {
    flex: 1;
}

.service-card.medium .service-image img,
.service-card.large .service-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-card.large .service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.service-content p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 24px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.process-split {
    padding: 100px 5%;
    display: flex;
    gap: 80px;
    align-items: center;
}

.process-text {
    flex: 1;
    max-width: 550px;
}

.process-text h2 {
    font-size: 38px;
    color: var(--color-primary);
    margin-bottom: 28px;
    line-height: 1.3;
}

.process-text p {
    font-size: 17px;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.process-image {
    flex: 1;
    background-color: var(--color-bg-alt);
}

.process-image img {
    width: 100%;
    height: 450px;
}

.testimonials-stacked {
    padding: 100px 10%;
    background-color: var(--color-primary);
    color: white;
}

.testimonials-stacked h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.testimonial-block {
    max-width: 700px;
    margin: 0 auto 50px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--color-accent);
}

.testimonial-block.offset-right {
    margin-left: auto;
    margin-right: 0;
}

.testimonial-block blockquote {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-block cite {
    font-size: 15px;
    opacity: 0.8;
    font-style: normal;
}

.cta-immersive {
    padding: 120px 5%;
    text-align: center;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    color: white;
}

.cta-content-centered h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.cta-content-centered p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-large {
    padding: 18px 48px;
    background-color: var(--color-accent);
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: 100px 5%;
    background-color: var(--color-bg-alt);
}

.form-container-offset {
    max-width: 700px;
    margin-left: 10%;
}

.form-container-offset h2 {
    font-size: 38px;
    color: var(--color-primary);
    margin-bottom: 40px;
}

.contact-form {
    background-color: white;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.footer-asymmetric {
    background-color: var(--color-primary);
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-block {
    flex: 1;
    min-width: 200px;
}

.footer-block h3,
.footer-block h4 {
    margin-bottom: 20px;
    color: var(--color-accent);
}

.footer-block h3 {
    font-size: 22px;
}

.footer-block h4 {
    font-size: 16px;
}

.footer-block p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

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

.footer-block ul li {
    margin-bottom: 10px;
}

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

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

.footer-disclaimer {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 60px;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-content .btn-home {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--color-accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.thanks-content .btn-home:hover {
    background-color: var(--color-primary);
}

@media (max-width: 1200px) {
    .hero-asymmetric {
        flex-direction: column;
        padding-top: 140px;
    }

    .hero-content-offset {
        width: 100%;
        margin-bottom: 40px;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        transform: none;
    }

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

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

    .service-card.large {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        width: 95%;
        top: 10px;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-text-block h1 {
        font-size: 32px;
    }

    .intro-offset,
    .process-split {
        flex-direction: column;
    }

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

    .form-container-offset {
        margin-left: 0;
    }

    .contact-form {
        padding: 30px;
    }
}