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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #ffffff;
    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;
    min-width: 250px;
}

.cookie-content a {
    color: #ffd700;
    text-decoration: underline;
}

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

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

.btn-cookie-accept {
    background: #4CAF50;
    color: white;
}

.btn-cookie-accept:hover {
    background: #45a049;
}

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #999;
    padding: 5px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.hero-immersive {
    margin-top: 70px;
    position: relative;
    height: 90vh;
    min-height: 600px;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #2a2a2a;
}

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

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

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 800;
    max-width: 800px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    max-width: 600px;
    font-weight: 300;
    line-height: 1.5;
}

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

.narrow-content.centered {
    text-align: center;
}

.story-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.3;
    color: #1a1a1a;
}

.story-intro p {
    font-size: 19px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 24px;
}

.story-intro img {
    margin: 50px 0;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 40px;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

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

.split-image img {
    border-radius: 12px;
    background-color: #f5f5f5;
}

.problem-amplification {
    background: #f9f9f9;
}

.insight-section {
    background: #1a1a1a;
    color: white;
}

.insight-section h2 {
    color: white;
    font-size: 38px;
    margin-bottom: 28px;
}

.insight-section p {
    color: #e0e0e0;
}

.inline-cta {
    margin-top: 40px;
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #1a1a1a;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.offset-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.trust-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.trust-card img {
    width: 100%;
    height: 280px;
    background-color: #f5f5f5;
}

.trust-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 24px 24px 12px;
}

.trust-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0 24px 24px;
}

.testimonials-inline {
    background: #fafafa;
}

.testimonials-inline blockquote {
    margin: 40px 0;
    padding: 30px;
    background: white;
    border-left: 4px solid #1a1a1a;
    border-radius: 6px;
}

.testimonials-inline blockquote p {
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 16px;
}

.testimonials-inline cite {
    font-size: 15px;
    font-weight: 600;
    color: #666;
    font-style: normal;
}

.stacked-benefits {
    max-width: 100%;
}

.benefit-block {
    padding: 80px 40px;
    text-align: center;
}

.benefit-block h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-block p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
    color: #444;
}

.benefit-block.dark-bg {
    background: #2a2a2a;
    color: white;
}

.benefit-block.dark-bg h3 {
    color: white;
}

.benefit-block.dark-bg p {
    color: #e0e0e0;
}

.services-pricing {
    padding: 100px 40px;
    background: #f5f5f5;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.services-pricing h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 280px;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 24px 24px 12px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0 24px 20px;
}

.price-tag {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 20px 24px;
}

.btn-select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px 0;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: 100px 40px;
    background: white;
}

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

.form-container h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    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: #1a1a1a;
}

.btn-submit {
    width: 100%;
    padding: 16px 0;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    padding: 100px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.final-cta h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.final-cta p {
    font-size: 19px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
}

.btn-primary {
    display: inline-block;
    padding: 18px 50px;
    background: white;
    color: #667eea;
    font-weight: 700;
    font-size: 17px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

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

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.footer-column ul li a {
    font-size: 15px;
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #999;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #888;
}

.page-header {
    margin-top: 70px;
    padding: 80px 40px 60px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.header-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 40px;
}

.about-story h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-story p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 40px;
    background: #f9f9f9;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.approach-section {
    padding: 100px 0;
}

.team-philosophy {
    background: #1a1a1a;
    color: white;
    padding: 100px 40px;
}

.team-philosophy h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: white;
}

.team-philosophy p {
    font-size: 19px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.services-detailed {
    padding: 60px 40px 100px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.service-detail-image img {
    border-radius: 12px;
    background-color: #f5f5f5;
}

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

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.price-display {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 24px;
}

.service-detail-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 32px;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
}

.features-list li {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    padding: 8px 0 8px 28px;
    position: relative;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

.btn-service-cta {
    display: inline-block;
    padding: 14px 36px;
    background: #1a1a1a;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-service-cta:hover {
    background: #333;
    transform: translateY(-2px);
}

.services-cta-section {
    padding: 80px 40px;
    background: #f5f5f5;
}

.services-cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.contact-info-section {
    padding: 80px 40px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-additional {
    padding: 80px 40px;
    background: white;
}

.contact-additional h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-additional p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.contact-cta {
    margin-top: 40px;
    text-align: center;
}

.thanks-page {
    margin-top: 70px;
    padding: 100px 40px;
    min-height: 60vh;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    color: #555;
    margin-bottom: 16px;
}

#service-confirmation {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 40px;
}

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

.next-steps {
    padding: 80px 40px;
    background: #f9f9f9;
}

.next-steps h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.steps-list {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.legal-content {
    margin-top: 70px;
    padding: 80px 40px;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}

.legal-content strong {
    font-weight: 700;
    color: #1a1a1a;
}

.last-updated {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
    font-style: italic;
}

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

    .nav-links {
        gap: 20px;
    }

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

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

    .split-layout {
        flex-direction: column;
    }

    .narrow-content {
        padding: 60px 20px;
    }

    .story-intro h2 {
        font-size: 28px;
    }

    .services-grid {
        gap: 30px;
    }

    .footer-content {
        gap: 30px;
    }

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

    .page-header h1 {
        font-size: 36px;
    }

    .thanks-page h1 {
        font-size: 32px;
    }

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