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

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

.ad-disclosure {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    font-family: Arial, sans-serif;
}

.floating-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    letter-spacing: 1px;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #b8860b;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 10;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: normal;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 30px;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.story-intro {
    background-color: #ffffff;
}

.story-intro h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: normal;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.visual-break {
    background-color: #f5f5f5;
    padding: 0;
}

.split-visual {
    display: flex;
    align-items: stretch;
}

.visual-half {
    flex: 1;
    background-color: #e8e8e8;
}

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

.text-half {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.text-half h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: normal;
}

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

.problem-amplification {
    background-color: #2c2c2c;
    color: #ffffff;
}

.problem-amplification h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: normal;
}

.insight-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.insight-card {
    flex: 1;
    padding: 35px;
    background-color: rgba(255,255,255,0.05);
    border-left: 3px solid #b8860b;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #d8d8d8;
}

.trust-builder {
    background-color: #ffffff;
}

.trust-builder h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: normal;
}

.trust-builder p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.testimonials-inline {
    background-color: #f9f9f9;
    padding: 70px 40px;
}

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    padding: 35px 45px;
    background-color: #ffffff;
    border-left: 4px solid #b8860b;
}

.testimonial p {
    font-size: 19px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial span {
    font-size: 14px;
    color: #666;
    font-style: normal;
}

.benefits-reveal {
    background-color: #ffffff;
}

.benefits-reveal h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
    font-weight: normal;
}

.benefits-cards {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.benefit-card {
    flex: 1;
    background-color: #fafafa;
}

.benefit-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.benefit-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
    font-weight: normal;
}

.benefit-card p {
    font-size: 16px;
    padding: 0 25px 30px;
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-immersive {
    position: relative;
    background-color: #1a1a1a;
}

.cta-overlay-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.cta-overlay-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.cta-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 10;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: normal;
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background-color: #b8860b;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #8b6914;
}

.services-section {
    background-color: #ffffff;
}

.services-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
    font-weight: normal;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    background-color: #fafafa;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 26px;
    margin: 25px 30px 15px;
    color: #1a1a1a;
    font-weight: normal;
}

.service-card p {
    font-size: 16px;
    padding: 0 30px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card .price {
    font-size: 32px;
    color: #b8860b;
    padding: 0 30px;
    margin-bottom: 25px;
    font-weight: bold;
}

.service-card .select-service {
    margin: 0 30px 30px;
    padding: 14px 35px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.service-card .select-service:hover {
    background-color: #b8860b;
}

.form-section {
    background-color: #f5f5f5;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.form-section p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #666;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-size: 15px;
    font-family: Arial, sans-serif;
}

.form-group input[readonly] {
    background-color: #f9f9f9;
    color: #666;
}

.submit-button {
    padding: 16px 50px;
    background-color: #b8860b;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 17px;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #8b6914;
}

.final-cta {
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: normal;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 35px;
    font-weight: 300;
}

.cta-button-secondary {
    display: inline-block;
    padding: 14px 40px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border: 2px solid #ffffff;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background-color: #ffffff;
    color: #2c2c2c;
}

footer {
    background-color: #1a1a1a;
    color: #d8d8d8;
    padding: 60px 40px 30px;
}

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #b8b8b8;
}

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

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

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

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #333;
    font-size: 13px;
    line-height: 1.7;
    color: #999;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 40px;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background-color: #b8860b;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #8b6914;
}

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

.cookie-btn.reject:hover {
    background-color: #333;
}

.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

.page-hero .hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 52px;
    font-weight: normal;
    letter-spacing: 2px;
}

.about-story {
    background-color: #ffffff;
}

.about-story h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: normal;
}

.about-story p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.values-section {
    background-color: #f5f5f5;
}

.values-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
    font-weight: normal;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    padding: 35px;
    background-color: #ffffff;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: normal;
}

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

.approach-section {
    background-color: #ffffff;
    padding: 0;
}

.split-content {
    display: flex;
    align-items: stretch;
}

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

.text-side h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: normal;
}

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

.image-side {
    flex: 1;
    background-color: #e8e8e8;
}

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

.commitment-section {
    background-color: #f9f9f9;
}

.commitment-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: normal;
}

.commitment-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.services-intro {
    background-color: #ffffff;
}

.services-intro h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: normal;
}

.services-intro p {
    font-size: 18px;
    color: #4a4a4a;
}

.services-detailed {
    background-color: #fafafa;
}

.service-detail {
    display: flex;
    align-items: stretch;
    margin-bottom: 60px;
}

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

.service-visual {
    flex: 1;
    background-color: #e8e8e8;
}

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

.service-info {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: normal;
}

.service-info p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

.price-tag {
    font-size: 38px;
    color: #b8860b;
    margin: 30px 0;
    font-weight: bold;
}

.service-cta {
    display: inline-block;
    padding: 14px 35px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.service-cta:hover {
    background-color: #b8860b;
}

.why-choose {
    background-color: #ffffff;
}

.why-choose h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: normal;
}

.why-choose p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.page-hero-simple {
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
    padding: 80px 40px;
}

.page-hero-simple h1 {
    font-size: 52px;
    margin-bottom: 15px;
    font-weight: normal;
    letter-spacing: 2px;
}

.page-hero-simple p {
    font-size: 20px;
    font-weight: 300;
}

.contact-details {
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.contact-card {
    flex: 1;
    padding: 40px;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.contact-card p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.contact-card .note {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

.contact-info-extended {
    background-color: #f5f5f5;
}

.contact-info-extended h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: normal;
}

.contact-info-extended p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

.cta-section {
    background-color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: normal;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #666;
}

.thanks-section {
    background-color: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #b8860b;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
    font-weight: normal;
}

.thanks-section p {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
    color: #4a4a4a;
}

.thanks-section #service-confirmation {
    font-weight: bold;
    color: #b8860b;
    margin-bottom: 30px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background-color: #b8860b;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #8b6914;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    border: 2px solid #1a1a1a;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.legal-page {
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: normal;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: normal;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a4a4a;
    line-height: 1.8;
}

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

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a4a4a;
    line-height: 1.8;
}

.legal-page em {
    font-style: italic;
    color: #888;
}

.legal-page a {
    color: #b8860b;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table thead {
    background-color: #f5f5f5;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 15px;
}

.cookie-table th {
    font-weight: bold;
    color: #1a1a1a;
}

.cookie-table td {
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

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

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

    .hero-overlay p {
        font-size: 16px;
    }

    .split-visual,
    .benefits-cards,
    .insight-grid,
    .values-grid,
    .split-content,
    .service-detail,
    .contact-grid {
        flex-direction: column;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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