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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 40px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    background: #0066cc;
    color: white;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-cookie:hover {
    background: #0052a3;
}

.btn-cookie.btn-secondary {
    background: transparent;
    border: 1px solid #fff;
}

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.main-nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #0066cc;
}

.ad-notice {
    background: #fff3cd;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.hero-asymmetric {
    position: relative;
    display: flex;
    min-height: 600px;
    margin-bottom: 100px;
}

.hero-visual {
    position: absolute;
    width: 55%;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent);
}

.hero-text-block {
    position: relative;
    width: 50%;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: #f8f9fa;
}

.hero-text-block h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #0052a3;
}

.offset-intro {
    padding: 120px 0;
    background: #ffffff;
}

.intro-image-wrap {
    flex: 0 0 45%;
    position: relative;
}

.intro-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #e0e0e0;
}

.intro-content-offset {
    flex: 1;
    padding-left: 40px;
    transform: translateY(-30px);
}

.intro-content-offset h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-content-offset p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a4a4a;
}

.services-asymmetric {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.section-header-offset {
    margin-bottom: 60px;
    text-align: left;
    margin-left: 80px;
}

.section-header-offset h3 {
    font-size: 36px;
    color: #1a1a1a;
}

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

.service-card {
    width: calc(33.333% - 20px);
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card.elevated {
    transform: translateY(-20px);
}

.service-card.offset-down {
    transform: translateY(20px);
}

.service-visual {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #d0d0d0;
}

.service-info {
    padding: 24px;
}

.service-info h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 15px;
    margin-bottom: 16px;
    color: #666;
    line-height: 1.5;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 16px;
}

.btn-select-service {
    width: 100%;
    padding: 12px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #0052a3;
}

.expertise-diagonal {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
}

.expertise-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.expertise-content {
    flex: 1;
}

.expertise-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.expertise-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #d0d0d0;
}

.expertise-metrics {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.metric-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.metric-value {
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: #b0b0b0;
}

.form-section-asymmetric {
    padding: 120px 0;
    background: #f8f9fa;
}

.form-wrapper-offset {
    max-width: 600px;
    margin-left: 100px;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-wrapper-offset h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-wrapper-offset > p {
    margin-bottom: 30px;
    color: #666;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.form-group input[readonly] {
    background: #f0f0f0;
    color: #666;
}

.btn-submit {
    padding: 14px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #0052a3;
}

.trust-section {
    padding: 60px 0;
    background: #fff3cd;
}

.disclaimer-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.main-footer {
    background: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 0 30px;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: white;
}

.footer-col h5 {
    font-size: 16px;
    margin-bottom: 12px;
    color: white;
}

.footer-col p {
    font-size: 14px;
    color: #b0b0b0;
}

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

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

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

.footer-col a:hover {
    color: #0066cc;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

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

.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #d0d0d0;
}

.content-section {
    padding: 80px 0;
}

.content-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.content-section p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
    color: #4a4a4a;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    flex: 0 0 calc(50% - 15px);
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.service-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-item p {
    margin-bottom: 16px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #0066cc;
}

.contact-info-section {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-info-section h3 {
    margin-bottom: 20px;
}

.info-item {
    margin-bottom: 20px;
}

.info-item strong {
    display: block;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.info-item p {
    margin: 0;
    color: #4a4a4a;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-box {
    text-align: center;
    max-width: 600px;
    padding: 60px 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0066cc;
}

.thanks-box p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #0052a3;
}

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

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-visual {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .hero-text-block {
        width: 100%;
        padding: 40px 0;
    }

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

    .service-card {
        width: 100%;
    }

    .expertise-layout {
        flex-direction: column;
    }

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

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