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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.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: #ffd700;
    text-decoration: underline;
}

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

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

.cookie-btn.accept {
    background-color: #4CAF50;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #45a049;
}

.cookie-btn.reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

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

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

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

.nav-main {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.nav-main a:hover {
    color: #666;
}

.ad-label {
    font-size: 11px;
    color: #999;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

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

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

.hero-text {
    max-width: 800px;
    text-align: center;
    color: white;
    padding: 0 40px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 22px;
    line-height: 1.6;
    font-weight: 300;
}

.story-intro {
    padding: 100px 40px;
    background-color: #f9f9f9;
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #1a1a1a;
}

.story-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.problem-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.problem-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.problem-text p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #333;
}

.problem-visual {
    flex: 1;
    background-color: #f0f0f0;
}

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

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

.insight-container {
    max-width: 800px;
    margin: 0 auto;
}

.insight-container h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.insight-container p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.insight-container a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

.insight-container a:hover {
    text-decoration: underline;
}

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

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

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

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

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

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

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.benefit-item {
    flex: 1;
    min-width: 320px;
    background-color: #f9f9f9;
}

.benefit-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

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

.benefit-item p {
    font-size: 16px;
    margin: 0 20px 20px 20px;
    color: #555;
    line-height: 1.6;
}

.service-selection-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-selection-container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-selection-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

.service-intro {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
}

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card.featured {
    border: 3px solid #ffd700;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #ffd700;
    color: #1a1a1a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

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

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

.service-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-card ul li {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    padding: 14px 24px;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 100px 40px;
    background-color: #f9f9f9;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #666;
}

.submit-btn {
    padding: 16px 32px;
    background-color: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.final-cta {
    padding: 100px 40px;
    background-color: #1a1a1a;
    text-align: center;
}

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

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

.final-cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-link {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffd700;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #f0f0f0;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.references-section {
    padding: 60px 40px;
    background-color: #ffffff;
}

.references-content {
    max-width: 1000px;
    margin: 0 auto;
}

.references-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.references-list a {
    color: #667eea;
    text-decoration: none;
}

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

.footer-main {
    background-color: #2c2c2c;
    color: white;
    padding: 60px 40px 30px 40px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    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;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

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

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

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

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

    .testimonials {
        flex-direction: column;
    }

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

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

    .nav-main {
        flex-wrap: wrap;
        gap: 15px;
    }
}
