* {
    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: #2c3e50;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 1.5rem;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

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

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

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

.navbar {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.ad-notice {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-style: italic;
    padding: 0.3rem 0.8rem;
    background: #ecf0f1;
    border-radius: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

.hero-immersive {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2c3e50;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.hero-content-centered {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content-centered h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
}

.story-intro {
    padding: 6rem 2rem;
    background: #fff;
}

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

.opening-line {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.narrow-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.problem-amplification {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.split-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.split-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.insight-reveal {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: #fff;
}

.centered-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.centered-block h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.insight-text {
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 300;
}

.trust-building {
    padding: 5rem 2rem;
    background: #fff;
}

.asymmetric-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.content-left-heavy {
    flex: 2;
}

.content-left-heavy h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.content-left-heavy p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.content-left-heavy img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.content-right-light {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: #ecf0f1;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #555;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.testimonial-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
}

.benefits-reveal {
    padding: 6rem 2rem;
    background: #fff;
}

.staggered-benefits {
    max-width: 1000px;
    margin: 0 auto;
}

.staggered-benefits h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 4rem;
}

.benefit-row-left,
.benefit-row-right {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.benefit-row-right {
    flex-direction: row-reverse;
}

.benefit-icon-area {
    width: 80px;
    height: 80px;
    background: #3498db;
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.benefit-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.services-showcase {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.services-header-centered {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-header-centered h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.services-header-centered p {
    font-size: 1.1rem;
    color: #555;
}

.services-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card-featured {
    flex: 1 1 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    background-color: #ecf0f1;
}

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

.service-card-featured .service-content {
    width: 50%;
    padding: 3rem;
}

.service-card-standard {
    flex: 1 1 calc(50% - 1rem);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #ecf0f1;
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-service {
    padding: 0.8rem 2rem;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cta-primary {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: #fff;
}

.cta-content-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-block h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content-block p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta-large {
    padding: 1.2rem 3rem;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.form-section {
    padding: 6rem 2rem;
    background: #fff;
}

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

.form-container-centered h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.form-description {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
}

.footer {
    background: #2c3e50;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: #ecf0f1;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-section p {
    color: #ecf0f1;
    margin-bottom: 0.5rem;
}

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

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

.thanks-content h1 {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.thanks-service {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3498db;
    margin: 2rem 0;
}

.btn-return {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.btn-return:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.contact-page {
    padding: 6rem 2rem;
    background: #fff;
}

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

.contact-container h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-intro {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 4rem;
}

.contact-details {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-card h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-card p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-page {
    padding: 6rem 2rem;
    background: #fff;
}

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

.legal-container h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a,
    .ad-notice {
        padding: 0.8rem 2rem;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .hero-content-centered h1 {
        font-size: 2.2rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

    .split-container,
    .asymmetric-layout,
    .service-card-featured {
        flex-direction: column;
    }

    .service-card-featured img,
    .service-card-featured .service-content {
        width: 100%;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}