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

.ad-disclosure {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
}

.main-nav {
    position: sticky;
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 100;
    padding: 0 40px;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hero-asymmetric {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    padding-top: 60px;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: #495057;
    max-width: 540px;
}

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

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.hero-image-float {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

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

.intro-overlap {
    padding: 100px 40px;
    background: #ffffff;
}

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

.intro-text-narrow {
    padding: 0 20px;
}

.intro-text-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.insight-asymmetric {
    padding: 80px 40px;
    background: #f8f9fa;
}

.insight-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.insight-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.insight-card.offset-left {
    margin-left: 0;
    margin-right: 120px;
}

.insight-card.offset-right {
    margin-left: 120px;
    margin-right: 0;
}

.insight-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background-color: #dee2e6;
}

.insight-card h3 {
    font-size: 1.8rem;
    margin: 30px 30px 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.insight-card p {
    font-size: 1.1rem;
    padding: 0 30px 30px;
    color: #495057;
    line-height: 1.7;
}

.problem-statement {
    padding: 120px 40px;
    background: linear-gradient(to right, #2c3e50, #34495e);
    color: #ffffff;
}

.problem-wrap {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.problem-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.problem-text p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.services-creative {
    padding: 100px 40px;
    background: #ffffff;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding-left: 80px;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    font-weight: 800;
}

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

.service-block {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-block.left-align {
    flex-direction: row;
}

.service-block.right-align {
    flex-direction: row-reverse;
}

.service-block.center-align {
    justify-content: center;
}

.service-content {
    flex: 1;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.service-content-full {
    max-width: 700px;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.service-content h3,
.service-content-full h3 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-content p,
.service-content-full p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: #495057;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 1.8rem;
    color: #3498db;
    font-weight: 700;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #dee2e6;
}

.trust-builder {
    padding: 100px 40px;
    background: #f8f9fa;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.testimonials-offset {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial {
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial.left-float {
    margin-left: 0;
    margin-right: 150px;
}

.testimonial.right-float {
    margin-left: 150px;
    margin-right: 0;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial cite {
    font-size: 0.95rem;
    color: #6c757d;
    font-style: normal;
    font-weight: 600;
}

.form-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: rotate(-1deg);
}

.form-intro {
    margin-bottom: 40px;
    text-align: center;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: #495057;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 40px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background: #f8f9fa;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #495057;
}

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

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

.footer-block h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #ffffff;
}

.footer-block p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

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

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.thanks-content {
    max-width: 700px;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: #495057;
    line-height: 1.7;
}

.thanks-content .selected-service {
    font-weight: 700;
    color: #3498db;
}

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-content a:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.page-header {
    padding: 80px 40px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

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

.page-header p {
    font-size: 1.2rem;
    color: #495057;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 40px;
    background: #ffffff;
}

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

.content-wrapper h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.content-wrapper p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #495057;
    line-height: 1.8;
}

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

.content-wrapper li {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #495057;
    line-height: 1.7;
}

.contact-info-block {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.contact-info-block p {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
    }

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

    .service-block.left-align,
    .service-block.right-align {
        flex-direction: column;
    }

    .insight-card.offset-left,
    .insight-card.offset-right {
        margin-left: 0;
        margin-right: 0;
    }

    .testimonial.left-float,
    .testimonial.right-float {
        margin-left: 0;
        margin-right: 0;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}