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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.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: 300px;
}

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

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

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

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

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

.btn-reject {
    background-color: #95a5a6;
    color: white;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.ad-disclosure {
    background-color: #ecf0f1;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #7f8c8d;
    border-bottom: 1px solid #bdc3c7;
}

.floating-nav {
    position: fixed;
    top: 40px;
    right: 40px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.hero-image-offset {
    position: absolute;
    top: -50px;
    right: -100px;
    width: 65%;
    height: 110%;
    z-index: 1;
    background-color: #e8f5e9;
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-content-overlap {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 8%;
    background-color: rgba(255, 255, 255, 0.97);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.hero-content-overlap h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a3a2e;
}

.hero-content-overlap p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.intro-offset {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 120px 8%;
    background-color: #f8f9fa;
}

.intro-block {
    flex: 1.2;
}

.intro-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a3a2e;
}

.intro-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.intro-visual {
    flex: 1;
    background-color: #dfe6e9;
}

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

.problem-amplification {
    padding: 100px 8%;
    background-color: #ffffff;
}

.problem-content h3 {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a3a2e;
}

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

.problem-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    max-width: 350px;
    border-left: 4px solid #e74c3c;
}

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

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

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

.problem-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.problem-card p {
    font-size: 16px;
    color: #555;
}

.insight-section {
    padding: 120px 8%;
    background-color: #ecf0f1;
}

.insight-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 60px;
}

.insight-image-layer {
    flex: 1;
    background-color: #bdc3c7;
}

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

.insight-text-overlap {
    flex: 1.3;
    background-color: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.insight-text-overlap h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a3a2e;
}

.insight-text-overlap p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

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

.citation:hover {
    text-decoration: underline;
}

.services-asymmetric {
    padding: 120px 8%;
    background-color: #ffffff;
}

.services-asymmetric h2 {
    font-size: 42px;
    margin-bottom: 70px;
    text-align: center;
    color: #1a3a2e;
}

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

.service-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    max-width: 380px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

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

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

.service-card.card-3 {
    margin-top: 20px;
}

.service-card.card-4 {
    margin-top: 60px;
}

.service-card.card-5 {
    margin-top: 10px;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #dfe6e9;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 16px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    margin: 0 24px 16px;
    color: #555;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 24px;
}

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

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

.testimonials-overlap {
    padding: 100px 8%;
    background-color: #1a3a2e;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-block {
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid #27ae60;
}

.testimonial-block.block-1 {
    margin-top: 0;
}

.testimonial-block.block-2 {
    margin-top: 40px;
}

.testimonial-block p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 16px;
    color: #2c3e50;
}

.testimonial-block cite {
    font-size: 14px;
    color: #7f8c8d;
    font-style: normal;
}

.benefits-reveal {
    padding: 120px 8%;
    background-color: #f8f9fa;
}

.benefits-reveal h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a3a2e;
}

.benefits-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.benefit-item:nth-child(1) {
    margin-left: 0;
}

.benefit-item:nth-child(2) {
    margin-left: 120px;
}

.benefit-item:nth-child(3) {
    margin-left: 60px;
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #27ae60;
}

.benefit-item p {
    font-size: 16px;
    color: #555;
}

.cta-floating {
    padding: 100px 8%;
    background-color: #27ae60;
    text-align: center;
}

.cta-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: white;
    color: #27ae60;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.form-section-offset {
    padding: 120px 8%;
    background-color: #ecf0f1;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 0 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a3a2e;
}

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

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

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

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

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

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

.references-section {
    padding: 80px 8%;
    background-color: #f8f9fa;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.references-list {
    max-width: 900px;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 15px;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer-asymmetric {
    background-color: #1a3a2e;
    color: white;
    padding: 60px 8% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #27ae60;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #27ae60;
}

.disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    margin-top: 30px;
}

.disclaimer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .floating-nav {
        position: static;
        margin: 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        flex-direction: row;
    }

    .hero-image-offset {
        width: 100%;
        right: 0;
    }

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

    .intro-offset {
        flex-direction: column;
    }

    .insight-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-content-overlap h1 {
        font-size: 36px;
    }

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

    .services-asymmetric h2 {
        font-size: 32px;
    }

    .benefit-item:nth-child(2),
    .benefit-item:nth-child(3) {
        margin-left: 0;
    }
}