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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    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: 300px;
    margin: 0;
}

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

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

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 90%;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

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

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

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

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

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

.hero-offset-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-text-block {
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 60px;
    margin-left: 0;
    position: relative;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-text-block p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #34495e;
}

.cta-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

.hero-image-overlap img {
    width: 100%;
    height: 100%;
}

.intro-diagonal {
    padding: 100px 40px;
    background-color: #ecf0f1;
    position: relative;
}

.intro-diagonal::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background-color: #ecf0f1;
    transform: skewY(-2deg);
}

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

.content-wrapper-narrow h2 {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.content-wrapper-narrow p {
    font-size: 18px;
    margin-bottom: 20px;
}

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

.split-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.text-column-left {
    flex: 1;
    padding-right: 40px;
}

.text-column-left h2 {
    font-size: 40px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.text-column-left p {
    font-size: 17px;
    margin-bottom: 20px;
}

.image-column-right {
    flex: 1;
    position: relative;
}

.image-column-right img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-reveal {
    padding: 120px 40px;
    background-color: #f8f9fa;
}

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

.content-wrapper-wide h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
}

.insight-intro {
    font-size: 19px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
    color: #34495e;
}

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

.service-card-offset {
    width: calc(33.333% - 20px);
    padding: 0;
    transition: transform 0.3s ease;
}

.service-card-offset:nth-child(odd) {
    transform: translateY(20px);
}

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

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

.service-image-wrap img {
    width: 100%;
    height: 100%;
}

.service-card-offset h3 {
    font-size: 24px;
    margin: 25px 20px 15px 20px;
    color: #2c3e50;
}

.service-card-offset p {
    font-size: 16px;
    margin: 0 20px 20px 20px;
    color: #34495e;
}

.service-price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 20px 20px 15px 20px;
}

.btn-select-service {
    width: calc(100% - 40px);
    margin: 0 20px 25px 20px;
    padding: 12px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #3498db;
}

.trust-building-offset {
    padding: 100px 40px;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-building-offset h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #ffffff;
}

.testimonials-stacked {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-block {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-left: 4px solid #3498db;
}

.testimonial-block p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-block cite {
    font-size: 15px;
    font-style: normal;
    color: #bdc3c7;
}

.form-section-asymmetric {
    padding: 120px 40px;
    background-color: #ecf0f1;
}

.form-wrapper-offset {
    max-width: 700px;
    margin: 0 auto 0 100px;
}

.form-wrapper-offset h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.form-wrapper-offset p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #34495e;
}

.contact-form-asymmetric {
    background-color: #ffffff;
    padding: 50px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #bdc3c7;
    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: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 30px 40px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

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

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

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

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

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #3498db;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 14px;
}

.content-page {
    padding: 140px 40px 80px 40px;
    min-height: 100vh;
}

.content-page-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-page-wrapper h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.content-page-wrapper h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-page-wrapper h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.content-page-wrapper p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.content-page-wrapper ul li,
.content-page-wrapper ol li {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-info-block {
    background-color: #f8f9fa;
    padding: 40px;
    margin: 40px 0;
}

.contact-info-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info-block p {
    font-size: 17px;
    margin-bottom: 15px;
}

.contact-info-block strong {
    color: #2c3e50;
}

.thanks-message {
    text-align: center;
    padding: 100px 40px;
}

.thanks-message h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #27ae60;
}

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

.thanks-message .selected-service {
    font-size: 24px;
    font-weight: 600;
    color: #3498db;
    margin: 30px 0;
}

@media (max-width: 1024px) {
    .nav-floating {
        top: 10px;
        padding: 10px 20px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-text-block {
        padding: 40px;
    }

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

    .hero-image-overlap {
        width: 60%;
        height: 70%;
    }

    .split-content-offset {
        flex-direction: column;
    }

    .text-column-left {
        padding-right: 0;
    }

    .service-card-offset {
        width: calc(50% - 15px);
    }

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

    .form-wrapper-offset {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-asymmetric {
        padding: 100px 20px 60px 20px;
    }

    .hero-text-block {
        padding: 30px;
    }

    .hero-text-block h1 {
        font-size: 28px;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }

    .service-card-offset {
        width: 100%;
    }

    .service-card-offset:nth-child(odd) {
        transform: translateY(0);
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-content p {
        min-width: 100%;
    }
}