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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

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

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

.btn-reject:hover {
    background: #fff;
    color: #2c3e50;
}

.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a4d6d;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: #1a4d6d;
}

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

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

.hero-left {
    background: linear-gradient(135deg, #1a4d6d 0%, #2d7ba6 100%);
    display: flex;
    align-items: center;
    padding: 60px;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #e8f4f8;
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background: #27ae60;
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

.hero-right {
    background: #f4f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 600px;
}

.hero-image svg {
    width: 100%;
    height: auto;
}

.trust-indicators {
    background: #fff;
    padding: 80px 20px;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    color: #1a4d6d;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 16px;
    color: #666;
}

.problem-section {
    background: #2c3e50;
    color: #fff;
    padding: 100px 20px;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text, .split-visual {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.split-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #ecf0f1;
}

.split-visual svg {
    width: 100%;
    height: auto;
}

.services-intro {
    background: #fff;
    padding: 80px 20px 40px;
    text-align: center;
}

.section-title {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.section-intro {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-showcase {
    background: #fff;
    padding: 40px 20px 80px;
}

.service-card-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 60px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-visual, .service-details {
    flex: 1;
}

.service-visual {
    background: #34495e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.service-visual svg {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.service-details {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.service-details p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.btn-service {
    background: #1a4d6d;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service:hover {
    background: #2d7ba6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 77, 109, 0.3);
}

.cta-sticky-trigger {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.cta-sticky-trigger h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-sticky-trigger p {
    font-size: 20px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    background: #fff;
    color: #8e44ad;
    border: none;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

.methodology-section {
    background: #fff;
    padding: 100px 20px;
}

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

.methodology-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.method-card {
    flex: 1;
    min-width: 200px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #1a4d6d;
}

.method-number {
    font-size: 48px;
    font-weight: 700;
    color: #1a4d6d;
    opacity: 0.3;
    margin-bottom: 12px;
}

.method-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.method-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.testimonials-split {
    display: flex;
}

.testimonial-block {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-block:first-child {
    background: #ecf0f1;
}

.testimonial-block.dark {
    background: #34495e;
    color: #fff;
}

.testimonial-content p {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.reassurance {
    background: #fff;
    padding: 100px 20px;
}

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

.reassurance-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.reassurance-item {
    flex: 1;
    text-align: center;
}

.reassurance-item h4 {
    font-size: 24px;
    color: #1a4d6d;
    margin-bottom: 16px;
}

.reassurance-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.final-cta-split {
    display: flex;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    min-height: 400px;
}

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

.final-left h2 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.final-left p {
    font-size: 20px;
    line-height: 1.6;
}

.final-right {
    align-items: center;
}

.btn-final {
    background: #fff;
    color: #e74c3c;
    border: none;
    padding: 20px 48px;
    font-size: 22px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.btn-final:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(255,255,255,0.3);
}

.small-note {
    font-size: 14px;
    opacity: 0.9;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    padding: 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.close-modal:hover {
    color: #333;
}

.modal-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 24px;
}

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

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

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.sticky-btn {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(231, 76, 60, 0.5);
}

.main-footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

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

    .hero-left {
        padding: 40px 20px;
    }

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

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

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

    .service-details {
        padding: 30px;
    }

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

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

    .reassurance-grid {
        flex-direction: column;
        gap: 30px;
    }

    .final-cta-split {
        flex-direction: column;
    }

    .final-left, .final-right {
        padding: 40px 20px;
    }

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

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

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

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept, .btn-reject {
        width: 100%;
    }

    .modal-content {
        padding: 30px 20px;
    }
}
