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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    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;
    margin: 0;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

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

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

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

.cookie-btn.reject {
    background: #666;
    color: #fff;
}

.cookie-btn.reject:hover {
    background: #555;
}

.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: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

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

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-section {
    width: 100%;
    height: 90vh;
    min-height: 600px;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    padding: 40px;
    color: #fff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #4a9eff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #3a8eef;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 158, 255, 0.4);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

.story-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #444;
}

.story-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.story-image img {
    width: 100%;
    display: block;
}

.dark-bg {
    background: #1a1a1a;
    color: #fff;
}

.light-bg {
    background: #f9f9f9;
}

.insight-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.insight-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.insight-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #2a2a2a;
}

.insight-image img {
    width: 100%;
    display: block;
}

.trust-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.trust-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #444;
}

.citation {
    color: #4a9eff;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.testimonial-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #4a9eff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: #666;
    text-align: right;
}

.benefits-section {
    background: #fff;
}

.benefits-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

.benefit-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #ccc;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 300px;
    height: 250px;
    flex-shrink: 0;
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.service-content p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.select-service-btn {
    padding: 12px 30px;
    background: #4a9eff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service-btn:hover {
    background: #3a8eef;
    transform: translateX(5px);
}

.service-card.featured {
    position: relative;
    border: 2px solid #4a9eff;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #4a9eff;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    z-index: 10;
}

.form-section {
    background: #f9f9f9;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

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

.submit-btn:hover {
    background: #3a8eef;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 158, 255, 0.4);
}

.disclaimer-section {
    background: #fff8e1;
    padding: 40px 20px;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

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

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

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

.references {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.8;
}

.references li {
    margin-bottom: 10px;
}

.references a {
    color: #4a9eff;
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #4a9eff;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
}

.thanks-container .selected-service {
    font-weight: 700;
    color: #1a1a1a;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: #4a9eff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.page-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.page-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-content p {
    margin-bottom: 20px;
    color: #444;
    line-height: 1.8;
}

.page-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-content ul li {
    margin-bottom: 10px;
    color: #444;
}

.contact-info {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-info h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-info p {
    margin-bottom: 10px;
    color: #444;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

    .service-card {
        flex-direction: column;
    }

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

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

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

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