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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fefefe;
}

.container-fluid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-standard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.container-centered {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.container-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    padding: 70px 20px;
}

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

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

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

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

.btn-accept {
    background: #c9a26f;
    color: #fff;
}

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

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

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

.header-main {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.brand-logo {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #2c2c2c;
}

.nav-primary {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-primary a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-primary a:hover {
    color: #c9a26f;
}

.ad-label {
    font-size: 11px;
    color: #888;
    font-style: italic;
    margin-left: 20px;
}

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

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #d4c4b0;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 900px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtext {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.story-intro {
    background: #f9f7f4;
    padding: 80px 20px;
}

.story-intro p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.opening-line {
    font-size: 24px;
    font-weight: 500;
    color: #2c2c2c;
}

.problem-reveal {
    padding: 80px 20px;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.split-image {
    flex: 1;
    background-color: #e8dfd5;
}

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

.insight-block {
    background: #2c2c2c;
    color: #fff;
    padding: 90px 20px;
}

.centered {
    text-align: center;
}

.insight-block h2 {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 35px;
}

.insight-block p {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.visual-showcase {
    padding: 60px 0;
}

.showcase-grid {
    display: flex;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.showcase-item {
    position: relative;
    flex: 1;
    overflow: hidden;
    background-color: #d9cfc0;
}

.showcase-item.large {
    flex: 1.5;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    padding: 30px 20px 20px;
}

.showcase-caption h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 8px;
}

.showcase-caption p {
    font-size: 15px;
    font-weight: 300;
}

.trust-building {
    background: #f5f1ed;
    padding: 80px 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
}

.testimonials-flow {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 35px 30px;
    border-left: 4px solid #c9a26f;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #666;
}

.benefits-reveal {
    padding: 80px 20px;
}

.benefits-header h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 50px;
    color: #2c2c2c;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.benefit-item {
    flex: 1 1 45%;
    min-width: 300px;
}

.benefit-item h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.service-selection {
    background: #fafafa;
    padding: 80px 20px;
}

.centered-title {
    font-size: 44px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.centered-subtitle {
    font-size: 19px;
    text-align: center;
    margin-bottom: 60px;
    color: #666;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 350px;
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #d8cec0;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.price-display {
    font-size: 28px;
    font-weight: 600;
    color: #c9a26f;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 15px;
    background: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: #c9a26f;
}

.order-form-section {
    background: #f9f7f4;
    padding: 80px 20px;
}

.form-intro {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center;
}

.contact-form {
    background: #fff;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #c9a26f;
    color: #fff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.final-cta {
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    color: #fff;
    padding: 90px 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: 46px;
    font-weight: 300;
    margin-bottom: 25px;
}

.final-cta p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.btn-cta-scroll {
    display: inline-block;
    padding: 18px 50px;
    background: #c9a26f;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-cta-scroll:hover {
    background: #b38f5e;
    transform: translateY(-3px);
}

.disclaimer-section {
    background: #f5f5f5;
    padding: 40px 20px;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

.footer-main {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 20px 20px;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #c9a26f;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

@media (max-width: 768px) {
    .container-split {
        flex-direction: column;
    }

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

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

    .benefits-list {
        flex-direction: column;
    }

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

    .hero-overlay h1 {
        font-size: 36px;
    }

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

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