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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    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-content a {
    color: #4a9eff;
}

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

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

.btn-accept {
    background: #4a9eff;
    color: #ffffff;
}

.btn-accept:hover {
    background: #3a8eef;
}

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

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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.nav-links a:hover {
    color: #4a9eff;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #4a9eff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.hero-right {
    flex: 1;
    overflow: hidden;
    background: #e8e8e8;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

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

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

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.story-section {
    background: #f8f9fa;
    padding: 100px 40px;
    margin: 80px 0;
}

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

.content-narrow h2 {
    font-size: 36px;
    margin-bottom: 32px;
    text-align: center;
    color: #1a1a1a;
}

.content-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 24px;
}

.image-overlay-section {
    position: relative;
    height: 600px;
    margin: 80px 0;
    background: #e8e8e8;
}

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

.overlay-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 8px;
}

.overlay-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.overlay-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.split-reverse {
    display: flex;
    flex-direction: row-reverse;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.split-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #4a9eff;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #4a9eff;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 20px;
}

.cta-secondary:hover {
    background: #4a9eff;
    color: #ffffff;
}

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

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

.insight-section {
    padding: 100px 40px;
    background: #1a1a1a;
    color: #ffffff;
}

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

.insight-card {
    flex: 1;
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #4a9eff;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

.testimonial-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.testimonial {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #4a9eff;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
}

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

.services-reveal {
    padding: 100px 40px;
    background: #ffffff;
}

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

.services-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4a9eff;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 28px;
    background: #4a9eff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #3a8eef;
}

.form-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

.form-section.hidden {
    display: none;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.form-container p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

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

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

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

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

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

.btn-submit:hover {
    background: #3a8eef;
}

.trust-section {
    padding: 100px 40px;
    background: #ffffff;
}

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

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

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

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.final-cta {
    padding: 120px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
}

.final-cta-content p {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 40px;
}

.cta-large {
    display: inline-block;
    padding: 18px 48px;
    background: #4a9eff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background: #3a8eef;
    transform: translateY(-2px);
}

.main-footer {
    background: #1a1a1a;
    color: #cccccc;
    padding: 60px 40px 20px;
}

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

.footer-section {
    flex: 1;
}

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

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

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

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

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4a9eff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px;
    background: #2c2c2c;
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #aaaaaa;
}

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

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

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

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

    .hero-right {
        height: 400px;
    }

    .insight-grid,
    .trust-grid,
    .footer-grid {
        flex-direction: column;
    }

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

    .service-card {
        flex: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 16px;
    }

    .ad-disclosure {
        width: 100%;
        text-align: center;
    }

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

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

    .intro-text h2,
    .split-text h2 {
        font-size: 28px;
    }

    .form-container {
        padding: 40px 30px;
    }
}
