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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

.nav-links a:hover {
    color: #3498db;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding-right: 40px;
}

.hero-left h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.hero-right {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-primary {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.problem-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 70px;
    align-items: center;
}

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

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

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.insight-section {
    background: #2c3e50;
    color: #ffffff;
    padding: 90px 40px;
    margin: 120px 0;
}

.insight-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-text {
    flex: 1.2;
}

.insight-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 28px;
}

.insight-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.insight-stats {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 12px;
}

.stat-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.services-preview {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.services-preview h2 {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 70px;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-large {
    display: flex;
    gap: 50px;
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.service-card-large.reverse {
    flex-direction: row-reverse;
}

.service-card-large img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
}

.service-card-content {
    padding: 40px;
    flex: 1;
}

.service-card-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-service {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.trust-section {
    background: #ecf0f1;
    padding: 90px 40px;
    margin: 120px 0;
}

.trust-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonials-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #7f8c8d;
}

.cta-split-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.cta-split-content {
    flex: 0.8;
    padding-top: 20px;
}

.cta-split-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.cta-split-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.cta-split-form {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.disclaimer-section {
    background: #fffaf0;
    border-left: 4px solid #f39c12;
    padding: 40px;
    max-width: 1400px;
    margin: 80px auto 120px;
}

.disclaimer-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #d68910;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #5a5a5a;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-col ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(236, 240, 241, 0.2);
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

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

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

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

@media (max-width: 768px) {
    .hero-split,
    .problem-split,
    .insight-container,
    .testimonials-split,
    .cta-split-section {
        flex-direction: column;
    }

    .service-card-large,
    .service-card-large.reverse {
        flex-direction: column;
    }

    .service-card-large img {
        width: 100%;
        height: 250px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        display: none;
    }
}