* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    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;
    margin: 0;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #2ecc71;
    color: white;
}

.cookie-btn.accept:hover {
    background: #27ae60;
}

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

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

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
}

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

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 5px 12px;
    background: #f0f0f0;
    border-radius: 15px;
}

.hero-asymmetric {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    overflow: hidden;
}

.hero-offset-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    margin-left: 80px;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 40px;
}

.hero-cta-offset {
    margin-top: 50px;
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: #2ecc71;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.cta-primary:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
}

.hero-image-overlap {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: -30px 30px 60px rgba(0, 0, 0, 0.2);
}

.problem-amplification {
    padding: 120px 40px;
    background: #f8f9fa;
}

.offset-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.text-column-narrow {
    flex: 1;
    max-width: 500px;
}

.text-column-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.text-column-narrow p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.insight-card-right {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-top: 60px;
}

.insight-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2ecc71;
}

.insight-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.ref-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.ref-link:hover {
    text-decoration: underline;
}

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

.image-block-left {
    flex: 0 0 45%;
    background: #e8f5e9;
}

.image-block-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.content-block-right {
    flex: 1;
}

.content-block-right h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.content-block-right p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #444;
}

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

.benefit-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
}

.benefit-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.3rem;
}

.testimonial-inline {
    padding: 80px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.testimonial-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 120px;
}

.quote-block {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.quote-block p {
    font-size: 1.4rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
}

.services-reveal {
    padding: 120px 40px;
    background: #ffffff;
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 80px;
    margin-left: 100px;
}

.section-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.section-header-offset p {
    font-size: 1.2rem;
    color: #666;
}

.services-asymmetric-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    width: calc(50% - 20px);
    min-width: 320px;
}

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

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 40px;
}

.card-offset-3 {
    margin-top: 80px;
}

.card-offset-4 {
    margin-top: 120px;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #e8f5e9;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.6rem;
    margin: 25px 30px 15px;
    font-weight: 700;
}

.service-card > p {
    margin: 0 30px 20px;
    color: #555;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: 20px 30px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #444;
}

.service-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #2ecc71;
    margin: 25px 30px 20px;
}

.select-service {
    width: calc(100% - 60px);
    margin: 20px 30px 30px;
    padding: 15px;
    background: #2ecc71;
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.form-section-asymmetric {
    padding: 100px 40px;
    background: linear-gradient(to right, #f8f9fa 0%, #ffffff 100%);
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    margin-left: 20%;
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.1);
}

.form-container-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.selected-service-display {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #2ecc71;
    color: white;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.final-cta-asymmetric {
    padding: 120px 40px;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.cta-content-overlap {
    max-width: 700px;
    margin-left: auto;
    margin-right: 100px;
    text-align: right;
    color: white;
}

.cta-content-overlap h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content-overlap p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #ccc;
}

.cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.cta-secondary:hover {
    background: #2ecc71;
    color: white;
    transform: translateY(-2px);
}

.footer {
    background: #f8f9fa;
    padding: 60px 40px 30px;
}

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

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.footer-column ul li a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #2ecc71;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px;
    background: white;
    border-radius: 8px;
}

.footer-references h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-references p {
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-references a {
    color: #3498db;
    word-break: break-all;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    text-align: center;
    color: #777;
}

@media (max-width: 1200px) {
    .hero-offset-content {
        margin-left: 40px;
    }

    .hero-text-block h1 {
        font-size: 2.8rem;
    }

    .hero-image-overlap {
        width: 50%;
        right: -50px;
    }

    .offset-container {
        flex-direction: column;
        gap: 40px;
    }

    .trust-building-asymmetric {
        flex-direction: column;
    }

    .image-block-left {
        flex: 0 0 100%;
    }
}

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

    .hero-asymmetric {
        flex-direction: column;
        padding: 100px 20px 60px;
    }

    .hero-offset-content {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-text-block h1 {
        font-size: 2.2rem;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        margin-top: 40px;
    }

    .section-header-offset {
        margin-left: 0;
    }

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

    .service-card {
        width: 100%;
        margin-top: 0 !important;
    }

    .form-container-offset {
        margin-left: 0;
        padding: 40px 20px;
    }

    .cta-content-overlap {
        margin-right: 0;
        text-align: center;
    }

    .testimonial-asymmetric {
        padding-left: 0;
    }
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 40px 80px;
}

.page-header {
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-content {
    line-height: 1.8;
    color: #333;
}

.page-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    font-weight: 700;
}

.page-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    font-weight: 600;
}

.page-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
}

.page-content li {
    margin-bottom: 10px;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin: 10px 0;
    font-size: 1.05rem;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.service-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
}

.service-item h3 {
    margin-top: 0;
    color: #2ecc71;
}

.service-item .price {
    font-size: 2rem;
    font-weight: 800;
    color: #2ecc71;
    margin: 20px 0;
}

.about-image {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    display: block;
    border-radius: 12px;
    background: #e8f5e9;
}

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

.thanks-message {
    text-align: center;
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-message h1 {
    font-size: 3.5rem;
    color: #2ecc71;
    margin-bottom: 30px;
}

.thanks-message p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.thanks-details {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: left;
}

.back-home-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 18px 45px;
    background: #2ecc71;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background: #27ae60;
    transform: translateY(-2px);
}