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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

.hero-section {
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #f0f0f0;
    font-weight: 300;
    max-width: 700px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

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

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

.section-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.section-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.problem-section {
    background-color: #2d3748;
    padding: 5rem 2rem;
    color: #ffffff;
}

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

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: #1a202c;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

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

.problem-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #cbd5e0;
}

.insight-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.section-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.section-content-centered img {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 2rem auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.section-content-centered p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
    text-align: left;
}

.testimonials-section {
    background-color: #f7fafc;
    padding: 5rem 2rem;
}

.testimonial-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.testimonial-author {
    font-size: 0.95rem;
    color: #718096;
    font-weight: 600;
}

.benefits-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

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

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

.benefit-item {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.benefit-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.benefit-item h3 {
    font-size: 1.375rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #1a1a1a;
}

.benefit-item p {
    padding: 0 1.5rem 1.5rem;
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.services-preview {
    background-color: #f7fafc;
    padding: 5rem 2rem;
}

.section-intro {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.services-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.service-box {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-box img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.service-box h3 {
    font-size: 1.25rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #1a1a1a;
}

.service-box p {
    padding: 0 1.5rem 0.75rem;
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

.service-box .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ff6b35;
    padding: 0.5rem 1.5rem;
}

.select-service-btn {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.875rem;
    background-color: #ff6b35;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #e55a2b;
}

.form-section {
    background-color: #2d3748;
    padding: 5rem 2rem;
    color: #ffffff;
}

.form-section h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.form-section p {
    color: #cbd5e0;
    margin-bottom: 2rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #e2e8f0;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #4a5568;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #1a202c;
    color: #ffffff;
}

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

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

.submit-btn:hover {
    background-color: #e55a2b;
}

.disclaimer-section {
    background-color: #f8f9fa;
    padding: 3rem 2rem;
}

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

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

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

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    text-align: center;
    color: #718096;
    font-size: 0.875rem;
}

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

.cookie-banner.show {
    display: block;
}

.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;
    font-size: 0.95rem;
}

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

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn.accept {
    background-color: #ff6b35;
    color: #ffffff;
}

.cookie-btn.reject {
    background-color: #4a5568;
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }

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

    .section-content h2,
    .section-content-centered h2 {
        font-size: 1.875rem;
    }

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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