* {
    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-color: #ffffff;
}

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

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

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

.cookie-accept {
    background-color: #2563eb;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1d4ed8;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1400px;
}

.nav-wrapper {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand-area {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.ad-label {
    font-size: 11px;
    color: #666;
    font-style: italic;
}

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

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

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

.hero-asymmetric {
    margin-top: 140px;
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 40px;
}

.hero-content-offset {
    width: 50%;
    padding-right: 60px;
    position: relative;
    z-index: 10;
}

.hero-title-large {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.hero-subtitle-block {
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #2563eb;
    margin-bottom: 50px;
}

.hero-subtitle-block p {
    font-size: 20px;
    line-height: 1.7;
    color: #333;
}

.hero-image-overlapping {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    z-index: 5;
}

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

.hero-cta-floating {
    position: absolute;
    bottom: 80px;
    left: 40px;
    z-index: 15;
}

.cta-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.intro-offset-section {
    padding: 120px 40px;
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-left-block {
    width: 60%;
    padding-right: 40px;
}

.intro-left-block h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #1a1a1a;
}

.intro-left-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
}

.intro-right-image-small {
    width: 35%;
    position: relative;
    top: 60px;
}

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

.problem-amplification-irregular {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 100px 40px;
}

.problem-content-staggered {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.problem-block-one {
    width: 70%;
    margin-left: 0;
}

.problem-block-two {
    width: 65%;
    margin-left: auto;
}

.problem-block-three {
    width: 75%;
    margin-left: 10%;
}

.problem-block-one h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.problem-content-staggered p {
    font-size: 20px;
    line-height: 1.7;
    color: #e0e0e0;
}

.problem-insight {
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
}

.insight-text {
    font-size: 28px;
    line-height: 1.6;
    font-weight: 600;
    color: #ffffff;
    padding: 40px;
    border-top: 2px solid #2563eb;
    border-bottom: 2px solid #2563eb;
}

.trust-building-offset {
    padding: 120px 40px;
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.trust-image-left {
    width: 45%;
    position: relative;
    top: -40px;
}

.trust-image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.trust-content-right {
    width: 50%;
}

.trust-content-right h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.trust-content-right p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
}

.trust-metrics {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.metric-number {
    font-size: 48px;
    font-weight: 800;
    color: #2563eb;
}

.metric-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-asymmetric-grid {
    padding: 120px 40px;
    background-color: #f8f9fa;
}

.services-heading-offset {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 80px;
    margin-left: 15%;
    color: #1a1a1a;
}

.services-container-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 50px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.service-offset-1 {
    margin-left: 0;
}

.service-offset-2 {
    margin-left: 10%;
}

.service-offset-3 {
    margin-left: 5%;
}

.service-offset-4 {
    margin-left: 15%;
}

.service-offset-5 {
    margin-left: 8%;
}

.service-image-container {
    width: 40%;
    background-color: #e5e7eb;
    overflow: hidden;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details {
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-details h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-details > p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

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

.service-features li {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 20px;
}

.service-cta {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-cta:hover {
    background-color: #2563eb;
    transform: translateX(5px);
}

.testimonials-irregular {
    padding: 120px 40px;
    background-color: #ffffff;
}

.testimonials-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 80px;
    text-align: center;
    color: #1a1a1a;
}

.testimonials-container-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.testimonial-position-1 {
    width: 70%;
    margin-left: 0;
}

.testimonial-position-2 {
    width: 75%;
    margin-left: auto;
}

.testimonial-position-3 {
    width: 65%;
    margin-left: 10%;
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #666;
}

.form-section-offset {
    padding: 120px 40px;
    background-color: #f0f4f8;
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto 0 10%;
}

.form-intro-block {
    margin-bottom: 50px;
}

.form-intro-block h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.contact-form-styled {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    color: #1a1a1a;
    transition: border-color 0.3s ease;
}

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

.form-submit-btn {
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 48px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 80px 40px;
    background-color: #fef3c7;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 40px 40px;
}

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

.footer-block {
    flex: 1;
    min-width: 200px;
}

.footer-block h3,
.footer-block h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.footer-block p,
.footer-block li {
    font-size: 14px;
    line-height: 1.8;
    color: #b0b0b0;
}

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

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

.footer-block a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #2563eb;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

@media (max-width: 1200px) {
    .hero-title-large {
        font-size: 56px;
    }

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

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

    .intro-offset-section,
    .trust-building-offset {
        flex-direction: column;
    }

    .intro-left-block,
    .intro-right-image-small,
    .trust-image-left,
    .trust-content-right {
        width: 100%;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image-container,
    .service-details {
        width: 100%;
    }

    .service-offset-1,
    .service-offset-2,
    .service-offset-3,
    .service-offset-4,
    .service-offset-5 {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        top: 20px;
        width: 95%;
    }

    .nav-wrapper {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .hero-asymmetric {
        margin-top: 120px;
        padding: 40px 20px;
    }

    .hero-title-large {
        font-size: 42px;
    }

    .services-heading-offset {
        font-size: 38px;
        margin-left: 0;
    }

    .form-container-asymmetric {
        margin: 0 auto;
    }

    .contact-form-styled {
        padding: 30px;
    }
}