* {
    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: #333;
    overflow-x: hidden;
}

.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-buttons {
    display: flex;
    gap: 10px;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

.header-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-right a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.header-right a:hover {
    color: #2563eb;
}

.ad-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    background: #f5f5f5;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 80px 50px;
    background: #f8fafc;
}

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

.hero-left p {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-right {
    flex: 1;
    background: #e2e8f0;
    height: 600px;
    overflow: hidden;
}

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

.btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: #64748b;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #475569;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
    width: 100%;
}

.intro-section {
    padding: 80px 50px;
    background: #fff;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1e293b;
}

.intro-content p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
}

.problem-section {
    background: #f8fafc;
    padding: 100px 50px;
}

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

.split-image {
    flex: 1;
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1e293b;
}

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

.services-preview {
    padding: 100px 50px;
    background: #fff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1e293b;
}

.section-header p {
    font-size: 18px;
    color: #64748b;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e2e8f0;
}

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

.service-card p {
    padding: 0 25px 20px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    padding: 0 25px 20px;
}

.btn-select {
    background: #2563eb;
    color: #fff;
    padding: 12px;
    border: none;
    width: 90%;
    margin: 0 5% 25px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #1d4ed8;
}

.trust-section {
    padding: 100px 50px;
    background: #1e293b;
    color: #fff;
}

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

.trust-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

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

.trust-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #60a5fa;
}

.trust-item p {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
}

.form-section {
    padding: 100px 50px;
    background: #f8fafc;
}

.form-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 80px;
    align-items: flex-start;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1e293b;
}

.form-left p {
    font-size: 17px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.7;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #475569;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 18px;
}

.form-right {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.alert-message {
    background: #fef3c7;
    color: #92400e;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-size: 14px;
    display: none;
}

.alert-message.active {
    display: block;
}

.disclaimer-section {
    padding: 60px 50px;
    background: #fef3c7;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #92400e;
}

.disclaimer-content p {
    font-size: 14px;
    color: #78350f;
    line-height: 1.7;
}

.footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 60px 50px 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col {
    flex: 1 1 calc(25% - 30px);
    min-width: 200px;
}

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

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

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

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

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

.footer-col ul li a:hover {
    color: #60a5fa;
}

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

.footer-bottom p {
    font-size: 14px;
}

.page-header {
    background: #1e293b;
    color: #fff;
    padding: 80px 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

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

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

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

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

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.page-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

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

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1e293b;
}

.info-block p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 100px 50px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1e293b;
}

.thanks-container p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-info {
    background: #f8fafc;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.service-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1e293b;
}

.service-info p {
    font-size: 24px;
    color: #2563eb;
    font-weight: 600;
}

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

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

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

    .form-split {
        flex-direction: column;
        gap: 40px;
    }

    .header-right {
        flex-wrap: wrap;
        gap: 15px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .contact-grid {
        flex-direction: column;
    }
}