* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #fff;
}

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

.cookie-banner.active {
    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-actions {
    display: flex;
    gap: 15px;
}

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

.btn-accept {
    background: #4CAF50;
    color: #fff;
}

.btn-accept:hover {
    background: #45a049;
}

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

.btn-reject:hover {
    background: #fff;
    color: #1a1a1a;
}

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

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #1a73e8;
}

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

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

.nav-links a:hover {
    color: #1a73e8;
}

.hero-asymmetric {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 80px;
    margin-top: -60px;
}

.hero-text-block {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

.hero-text-block p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #1a73e8;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.hero-image-diagonal {
    position: absolute;
    right: -100px;
    top: 50px;
    width: 55%;
    height: 85%;
    transform: rotate(-3deg);
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background-color: #e0e0e0;
}

.hero-image-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.intro-narrow {
    flex: 1;
    padding-left: 60px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.8;
    color: #333;
}

.intro-visual-card {
    width: 450px;
    height: 320px;
    position: relative;
    top: -40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: #f5f5f5;
}

.intro-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-irregular {
    background: #f9fafb;
    padding: 100px 40px 120px;
}

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

.services-header-left h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.services-header-left p {
    font-size: 18px;
    color: #666;
}

.services-grid-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card.elevated {
    margin-top: -30px;
}

.service-card.wide {
    flex: 1 1 calc(66.666% - 15px);
}

.service-icon {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 24px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 25px 20px;
    color: #555;
    flex-grow: 1;
}

.service-price {
    padding: 0 25px 15px;
    font-size: 26px;
    font-weight: 700;
    color: #1a73e8;
}

.select-service {
    margin: 0 25px 25px;
    padding: 14px 30px;
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #1557b0;
    transform: scale(1.02);
}

.form-section-diagonal {
    position: relative;
    padding: 120px 40px;
    background: linear-gradient(120deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.form-container-offset {
    max-width: 600px;
    margin-left: 10%;
    position: relative;
    z-index: 2;
}

.form-container-offset h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 15px;
}

.form-container-offset > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.main-form {
    background: rgba(255, 255, 255, 0.98);
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-visual-overlap {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%) rotate(5deg);
    width: 400px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background-color: #d0d0d0;
}

.form-visual-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.trust-block-left {
    flex: 1;
    padding-top: 40px;
}

.trust-block-left h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    padding: 18px 0 18px 35px;
    position: relative;
    font-size: 18px;
    color: #444;
    border-bottom: 1px solid #eee;
}

.trust-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
    font-size: 22px;
}

.trust-stats-offset {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: -60px;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 40px 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    min-width: 280px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.95;
}

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

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

.footer-brand {
    flex: 1;
    min-width: 280px;
}

.footer-brand h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a73e8;
}

.footer-brand p {
    color: #aaa;
    line-height: 1.6;
}

.footer-links,
.footer-legal {
    flex: 0 1 auto;
}

.footer-links h4,
.footer-legal h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-legal a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #1a73e8;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 40px auto;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #1a73e8;
}

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

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

.content-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px 80px;
}

.content-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.content-page h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #333;
}

.content-page h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #444;
}

.content-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.content-page ul,
.content-page ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
    color: #555;
}

.content-page li {
    margin-bottom: 10px;
}

.contact-info {
    background: #f5f7fa;
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
}

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

.contact-info p {
    margin: 15px 0;
    font-size: 18px;
}

.contact-info strong {
    color: #1a73e8;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
}

.thanks-content {
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 48px;
    color: #4CAF50;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-content .service-selected {
    background: #f5f7fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #1a73e8;
}

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background: #1a73e8;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

@media (max-width: 1200px) {
    .hero-image-diagonal {
        width: 50%;
        right: -50px;
    }

    .form-visual-overlap {
        display: none;
    }
}

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

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

    .hero-content-offset {
        margin-left: 20px;
        margin-right: 20px;
    }

    .hero-text-block {
        padding: 40px 30px;
    }

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

    .hero-image-diagonal {
        position: relative;
        width: 100%;
        height: 300px;
        right: 0;
        top: 0;
        transform: none;
        margin-top: 30px;
    }

    .intro-offset {
        flex-direction: column;
        gap: 40px;
        margin: 60px auto;
    }

    .intro-narrow {
        padding-left: 0;
    }

    .intro-visual-card {
        width: 100%;
        top: 0;
    }

    .services-header-left {
        padding-left: 0;
    }

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

    .service-card.elevated {
        margin-top: 0;
    }

    .trust-asymmetric {
        flex-direction: column;
        gap: 50px;
    }

    .trust-stats-offset {
        margin-top: 0;
    }

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