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

:root {
    --primary: #2c5f7d;
    --secondary: #8ba8b7;
    --accent: #d4a574;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --white: #ffffff;
    --text: #333333;
    --border: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

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

header {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

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

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}

.split-hero {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.split-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 85vh;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 35px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background: #1e4459;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary);
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 16px;
}

.cta-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.split-section {
    display: flex;
    min-height: 70vh;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.section-text {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 30px;
    line-height: 1.7;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--light);
    border-radius: 6px;
}

.feature-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-desc {
    font-size: 16px;
    color: var(--text);
    line-height: 1.6;
}

.testimonials-section {
    background: var(--dark);
    color: var(--white);
    padding: 100px 60px;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    font-size: 16px;
}

.services-showcase {
    padding: 100px 60px;
    background: var(--light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 50px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 35px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-description {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-price-note {
    font-size: 14px;
    color: var(--secondary);
    margin-bottom: 25px;
}

.form-section {
    display: flex;
    min-height: 80vh;
}

.form-left {
    flex: 1;
    background: var(--primary);
    color: var(--white);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light);
}

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

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

.form-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-input,
.form-select,
.form-textarea {
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: var(--dark);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s;
}

.sticky-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.urgency-banner {
    background: var(--accent);
    color: var(--dark);
    text-align: center;
    padding: 20px;
    font-weight: 600;
    font-size: 16px;
}

.stats-section {
    display: flex;
    background: var(--primary);
    color: var(--white);
}

.stat-item {
    flex: 1;
    padding: 60px 40px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-item:last-child {
    border-right: none;
}

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

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

.problem-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c5f7d 100%);
    color: var(--white);
}

.problem-content {
    max-width: 900px;
    margin: 0 auto;
}

.problem-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.problem-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 60px 40px;
    background: var(--light);
    flex-wrap: wrap;
}

.trust-badge {
    text-align: center;
}

.badge-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary);
}

.badge-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.cta-section {
    padding: 100px 60px;
    text-align: center;
    background: var(--dark);
    color: var(--white);
}

.cta-section .section-title {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section .section-text {
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    font-size: 20px;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 40px 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 25px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--accent);
    color: var(--dark);
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-accept:hover {
    background: #c89560;
}

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

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

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

.thanks-icon {
    font-size: 80px;
    color: var(--primary);
    margin-bottom: 30px;
}

.thanks-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
}

.thanks-text {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-info {
    background: var(--light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-label {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-value {
    font-size: 16px;
    color: var(--text);
    line-height: 1.6;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.policy-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.policy-date {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 40px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.policy-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text);
}

.policy-list {
    margin-left: 25px;
    margin-bottom: 20px;
}

.policy-list li {
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .split-hero,
    .split-section,
    .form-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .split-right {
        min-height: 400px;
    }

    .split-image {
        min-height: 400px;
    }

    .split-left,
    .split-content,
    .form-left,
    .form-right {
        padding: 50px 30px;
    }

    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    nav ul {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav.mobile-active ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

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

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

    .stats-section {
        flex-direction: column;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
        padding: 15px 25px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .services-showcase,
    .problem-section,
    .cta-section {
        padding: 60px 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .problem-title {
        font-size: 32px;
    }

    .stat-number {
        font-size: 42px;
    }

    .thanks-title {
        font-size: 36px;
    }
}
