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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #c9a961;
    --accent-color: #8b7355;
    --text-color: #333333;
    --light-bg: #f8f6f3;
    --white: #ffffff;
    --gray: #666666;
    --light-gray: #e5e5e5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

.ad-disclosure {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 500;
}

.nav-minimal {
    background-color: var(--white);
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

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

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

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

.hero-visual {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    color: var(--white);
    padding: 40px;
    text-align: center;
}

.hero-title {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 600px;
}

.story-intro {
    padding: 100px 40px;
    background-color: var(--white);
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.3;
}

.content-narrow p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray);
}

.problem-visual {
    display: flex;
    min-height: 600px;
    background-color: var(--light-bg);
}

.split-image-left {
    flex: 1;
    background-color: var(--accent-color);
}

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

.split-content-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-right h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.split-content-right p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: var(--gray);
}

.insight-section {
    padding: 100px 40px;
    background-color: var(--white);
}

.content-centered {
    max-width: 1200px;
    margin: 0 auto;
}

.content-centered h2 {
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.insight-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
}

.insight-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
}

.visual-showcase {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.showcase-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
}

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

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    padding: 40px;
    text-align: center;
}

.showcase-overlay h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}

.showcase-overlay p {
    font-size: 20px;
    max-width: 700px;
}

.trust-testimonials {
    padding: 100px 40px;
    background-color: var(--light-bg);
}

.content-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.content-wide h2 {
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.testimonial-flow {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: var(--white);
    border-top: 3px solid var(--secondary-color);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 20px;
}

.testimonial-author {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.benefits-reveal {
    padding: 100px 40px;
    background-color: var(--white);
}

.content-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.benefits-text {
    flex: 1.2;
}

.benefits-text h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 35px;
    color: var(--primary-color);
}

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

.benefits-list li {
    font-size: 17px;
    line-height: 1.6;
    padding: 18px 0;
    padding-left: 35px;
    position: relative;
    color: var(--gray);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

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

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

.services-pricing {
    padding: 100px 40px;
    background-color: var(--light-bg);
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: var(--gray);
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 350px;
    background-color: var(--white);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 280px;
    overflow: hidden;
    background-color: var(--light-gray);
}

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

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    padding: 25px 25px 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    padding: 0 25px;
    color: var(--gray);
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    padding: 0 25px 20px;
}

.btn-select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 100px 40px;
    background-color: var(--white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border: 2px solid var(--light-gray);
    background-color: var(--white);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.final-cta {
    padding: 100px 40px;
    background-color: var(--primary-color);
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-disclaimer {
    max-width: 1300px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--secondary-color);
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 25px;
    z-index: 2000;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 40px;
}

.thanks-icon {
    font-size: 72px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

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

.thanks-container p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-service {
    font-weight: 600;
    color: var(--secondary-color);
}

.btn-back-home {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-container h1 {
    font-size: 48px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.contact-info {
    background-color: var(--light-bg);
    padding: 40px;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-detail p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-container h1 {
    font-size: 42px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-container h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 15px;
}

.legal-container ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .problem-visual {
        flex-direction: column;
    }

    .split-content-right {
        padding: 50px 30px;
    }

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

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

    .testimonial-flow {
        flex-direction: column;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}