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

img {
    object-fit: cover;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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;
    margin: 0;
}

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

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

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

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

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.main-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 15px 0;
}

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

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

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

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

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

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

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

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

.hero-text-block {
    flex: 1;
    z-index: 2;
    max-width: 580px;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 21px;
    color: #495057;
    line-height: 1.7;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -40px;
    margin-right: -80px;
    background: #dee2e6;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.15);
}

.intro-diagonal {
    background: #ffffff;
    padding: 120px 40px;
    transform: skewY(-2deg);
    margin-top: -60px;
}

.diagonal-content {
    max-width: 1200px;
    margin: 0 auto;
    transform: skewY(2deg);
    display: flex;
    gap: 80px;
}

.intro-left {
    flex: 1.2;
}

.intro-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-left p {
    font-size: 18px;
    color: #495057;
}

.intro-right-offset {
    flex: 1;
    margin-top: 60px;
    padding: 30px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
}

.intro-right-offset p {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
}

.services-preview {
    background: #f8f9fa;
    padding: 100px 40px;
}

.services-header-tilted {
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: left;
    padding-left: 40px;
}

.services-header-tilted h2 {
    font-size: 42px;
    color: #2c3e50;
    position: relative;
}

.services-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

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

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

.service-card img {
    width: 100%;
    height: auto;
    background: #dee2e6;
}

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

.service-card p {
    margin: 0 25px 20px;
    color: #495057;
    font-size: 16px;
    flex: 1;
}

.service-card .price {
    margin: 0 25px 15px;
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.service-card .cta-service {
    margin: 0 25px 25px;
    padding: 14px 28px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.service-card .cta-service:hover {
    background: #2980b9;
}

.card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 350px;
}

.card-offset {
    flex: 1 1 calc(40% - 15px);
    min-width: 320px;
    margin-top: 40px;
}

.card-small {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    margin-left: auto;
    margin-top: -60px;
}

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

.insight-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-image-left {
    flex: 1;
    background: #dee2e6;
}

.insight-image-left img {
    width: 100%;
    height: auto;
}

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

.insight-text-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.insight-text-right p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-diagonal {
    background: linear-gradient(120deg, #3498db 0%, #2980b9 100%);
    padding: 80px 40px;
    transform: skewY(-1deg);
    margin: 60px 0;
}

.cta-content-shifted {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    transform: skewY(1deg);
    color: #ffffff;
}

.cta-content-shifted h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-content-shifted p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-primary {
    padding: 16px 45px;
    background: #ffffff;
    color: #3498db;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.form-section {
    background: #f8f9fa;
    padding: 100px 40px;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-left: 25%;
}

.form-container-offset h2 {
    font-size: 34px;
    margin-bottom: 35px;
    color: #2c3e50;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    font-size: 16px;
    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;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #229954;
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
    margin-bottom: 10px;
}

.disclaimer-footer {
    font-size: 12px;
    line-height: 1.6;
    max-width: 900px;
    margin: 15px auto 0;
}

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

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

    .hero-image-overlap {
        margin-right: 0;
    }

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

    .intro-right-offset {
        margin-top: 0;
    }

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

    .card-offset,
    .card-small {
        margin-top: 0;
        margin-left: 0;
    }

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

    .form-container-offset {
        margin-left: auto;
        padding: 30px;
    }

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