* {
    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: #2c3e50;
    background: #ffffff;
}

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

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

.main-nav {
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 0;
    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;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #ffd700;
    padding: 0.25rem 0.75rem;
    border: 1px solid #ffd700;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

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

.hero-section {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-content {
    text-align: center;
    color: #ffffff;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-image {
    margin-top: 3rem;
    width: 100%;
    max-width: 1000px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    background-color: #667eea;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.story-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-section p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.story-image {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.problem-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background: #fff8f0;
    border-left: 4px solid #ff6b6b;
    border-radius: 8px;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d63031;
}

.problem-card p {
    color: #4a4a4a;
    line-height: 1.7;
}

.insight-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    color: #ffffff;
}

.insight-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.insight-section > p {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.95;
}

.insight-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.insight-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
    min-width: 80px;
}

.insight-text h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.insight-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.trust-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.trust-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.trust-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.trust-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background-color: #e0e0e0;
}

.trust-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.trust-card p {
    margin: 0 1.5rem 1.5rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.testimonials-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.testimonial {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #4a90e2;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.benefits-section {
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.benefits-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.benefits-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-block {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 8px;
}

.benefit-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.benefit-block p {
    line-height: 1.7;
    opacity: 0.9;
}

.services-preview {
    padding: 5rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.services-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-preview p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.pricing-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #4a4a4a;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    border-color: #667eea;
    transform: scale(1.05);
}

.price-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.price-card.featured h3 {
    color: #ffffff;
}

.service-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    min-height: 60px;
}

.price-card.featured .service-desc {
    color: rgba(255,255,255,0.9);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #667eea;
}

.price-card.featured .price {
    color: #ffd700;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
}

.price-card.featured .service-features li:before {
    color: #ffd700;
}

.select-service {
    padding: 1rem 2rem;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #5568d3;
}

.price-card.featured .select-service {
    background: #ffd700;
    color: #1a1a1a;
}

.price-card.featured .select-service:hover {
    background: #ffed4e;
}

.form-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.form-section p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #5568d3;
}

.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffd700;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, background 0.3s;
}

.cta-primary:hover,
.cta-secondary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

.cta-secondary {
    background: #ffffff;
    color: #667eea;
}

.cta-secondary:hover {
    background: #f0f0f0;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 1rem;
}

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

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

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-section p {
    color: #b0b0b0;
    line-height: 1.7;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: #2a2a2a;
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2a2a2a;
    text-align: center;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

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

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

.cookie-content a {
    color: #ffd700;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-accept:hover {
    background: #357abd;
}

.btn-reject {
    background: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background: #6c7a7b;
}

.hidden {
    display: none;
}

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

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .number {
        min-width: auto;
    }

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

    .price-card.featured {
        transform: scale(1);
    }
}