* {
    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: #1a1a1a;
    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: 15px;
}

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

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

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

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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
}

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 12px;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
}

.hero-offset {
    display: flex;
    min-height: 600px;
    position: relative;
    padding: 80px 60px;
    gap: 60px;
    align-items: center;
}

.hero-text-block {
    flex: 1;
    max-width: 550px;
    padding-right: 40px;
}

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

.hero-text-block p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #4a5568;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

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

.hero-image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.insight-diagonal {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    background-color: #f8f9fa;
    position: relative;
    align-items: center;
}

.diagonal-content {
    flex: 1.2;
}

.diagonal-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.diagonal-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.diagonal-visual {
    flex: 0.8;
    position: relative;
    top: -50px;
}

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

.stats-overlap {
    display: flex;
    padding: 80px 60px;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
}

.stat-card {
    background-color: #ffffff;
    padding: 45px 35px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
}

.stat-offset-1 {
    transform: translateY(-20px);
}

.stat-offset-2 {
    transform: translateY(20px);
}

.stat-offset-3 {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

.stat-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

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

.services-creative h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

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

.service-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

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

.service-medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 350px;
}

.service-small {
    flex: 1 1 calc(40% - 15px);
    min-width: 300px;
}

.service-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-item h3 {
    font-size: 22px;
    margin: 25px 25px 15px 25px;
    color: #1a1a1a;
}

.service-item p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 25px 20px 25px;
    color: #4a5568;
    flex-grow: 1;
}

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

.btn-service {
    margin: 0 25px 25px 25px;
    padding: 14px 28px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-offset {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    background-color: #f8f9fa;
    align-items: center;
}

.form-container {
    flex: 1;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-container p {
    font-size: 16px;
    margin-bottom: 35px;
    color: #4a5568;
}

.form-note {
    padding: 12px 20px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    margin-bottom: 25px;
    font-size: 14px;
    color: #856404;
    display: none;
}

.form-note.show {
    display: block;
}

.form-note.success {
    background-color: #d4edda;
    border-left-color: #28a745;
    color: #155724;
}

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

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

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.form-visual {
    flex: 0.8;
}

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

.trust-stacked {
    padding: 100px 60px;
    background-color: #ffffff;
}

.trust-stacked h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.trust-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-block {
    flex: 1;
    min-width: 280px;
    padding: 40px 35px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.trust-highlight {
    background-color: #3498db;
    color: white;
    transform: scale(1.05);
}

.trust-block h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.trust-highlight h3 {
    color: white;
}

.trust-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.trust-highlight p {
    color: rgba(255, 255, 255, 0.95);
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #e8e8e8;
    padding: 60px 60px 30px 60px;
}

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

.footer-section a {
    display: block;
    margin-bottom: 12px;
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-disclaimer {
    padding: 25px;
    background-color: #2c2c2c;
    border-radius: 5px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #b8b8b8;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #2c2c2c;
}

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

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-direction: column;
        padding: 20px 30px;
        gap: 15px;
    }

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

    .hero-offset {
        flex-direction: column;
        padding: 40px 30px;
    }

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

    .insight-diagonal {
        flex-direction: column;
        padding: 60px 30px;
    }

    .diagonal-visual {
        top: 0;
    }

    .stats-overlap {
        padding: 40px 30px;
    }

    .services-creative {
        padding: 60px 30px;
    }

    .service-large, .service-medium, .service-small {
        flex: 1 1 100%;
    }

    .form-offset {
        flex-direction: column;
        padding: 60px 30px;
    }

    .trust-stacked {
        padding: 60px 30px;
    }

    .trust-blocks {
        flex-direction: column;
    }

    .footer-asymmetric {
        padding: 40px 30px 20px 30px;
    }

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