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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.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: 250px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.btn-accept {
    background: var(--success-color);
    color: var(--white);
}

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

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

.btn-reject:hover {
    background: var(--white);
    color: var(--primary-color);
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-right {
    display: flex;
    gap: 30px;
}

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

.nav-right a:hover {
    color: var(--accent-color);
}

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

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 5%;
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: var(--white);
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.5;
    opacity: 0.95;
}

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

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-right {
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

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

.intro-section {
    padding: 80px 5%;
    background: var(--light-bg);
}

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

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.3;
}

.intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.problem-section {
    padding: 80px 5%;
    background: var(--white);
}

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

.problem-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background: var(--light-bg);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.problem-card p {
    font-size: 16px;
    line-height: 1.6;
}

.insight-split {
    display: flex;
    padding: 80px 5%;
    background: var(--accent-color);
    color: var(--white);
}

.insight-left,
.insight-right {
    flex: 1;
}

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

.insight-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.insight-left p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-inline {
    display: inline-block;
    padding: 14px 32px;
    background: var(--white);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

.insight-right {
    display: flex;
    align-items: center;
}

.insight-right img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.services-section {
    padding: 80px 5%;
    background: var(--light-bg);
}

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

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-header p {
    font-size: 20px;
    color: var(--text-color);
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px 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 10px 30px rgba(0,0,0,0.15);
}

.service-image {
    height: 220px;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

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

.btn-select {
    padding: 14px 28px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 80px 5%;
    background: var(--white);
}

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

.trust-left,
.trust-right {
    flex: 1;
}

.trust-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.trust-left p {
    font-size: 18px;
    line-height: 1.7;
}

.trust-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.6;
}

.testimonial span {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

.benefits-section {
    padding: 80px 5%;
    background: var(--primary-color);
    color: var(--white);
}

.benefits-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
}

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

.benefit-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 5%;
    background: var(--light-bg);
}

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

.cta-left,
.cta-right {
    flex: 1;
}

.cta-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.cta-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.selected-service {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.selected-service.hidden {
    display: none;
}

.selected-service p {
    margin-bottom: 5px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c0392b;
}

.urgency-section {
    padding: 60px 5%;
    background: linear-gradient(135deg, var(--secondary-color), #c0392b);
    color: var(--white);
    text-align: center;
}

.urgency-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.urgency-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: var(--white);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 50px 5% 20px;
}

.footer-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 30px;
    gap: 60px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-column p,
.footer-column a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .insight-split,
    .trust-split,
    .cta-split {
        flex-direction: column;
    }

    .insight-left {
        padding-right: 0;
        padding-bottom: 30px;
    }

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

    .benefit-item {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .nav-right {
        gap: 15px;
    }

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

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

    .intro-content h2,
    .trust-left h2,
    .cta-left h2 {
        font-size: 28px;
    }

    .problem-content h2,
    .services-header h2,
    .benefits-section h2 {
        font-size: 32px;
    }

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

    .benefit-item {
        flex: 1 1 100%;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .sticky-btn {
        display: block;
        text-align: center;
    }
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 5%;
    background: var(--light-bg);
}

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

.thanks-content h1 {
    font-size: 42px;
    color: var(--success-color);
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.thanks-content .btn-home {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-content .btn-home:hover {
    background: #2980b9;
}

.page-header {
    padding: 80px 5% 40px;
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: var(--white);
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.page-content {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.content-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.content-section h3 {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 15px;
    margin-top: 25px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.content-section ul,
.content-section ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.content-section li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.service-detail-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    background: var(--light-bg);
    padding: 35px;
    border-radius: 8px;
}

.service-detail-card h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-detail-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-detail-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 20px;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-left,
.about-right {
    flex: 1;
}

.about-left img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-right h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-right p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.value-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
}

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

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

    .page-header h1 {
        font-size: 32px;
    }

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