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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #34495e;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

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

.story-container {
    max-width: 680px;
    margin: 0 auto;
}

.opening-line {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 60px;
    color: #34495e;
}

.insight-block {
    background-color: #f8f9fa;
    padding: 40px;
    margin: 60px 0;
    border-left: 4px solid #3498db;
}

.insight-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.insight-block p {
    font-size: 18px;
    line-height: 1.7;
}

.image-inline {
    margin: 60px 0;
    background-color: #ecf0f1;
}

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

.story-container h2 {
    font-size: 32px;
    margin: 60px 0 24px;
    color: #2c3e50;
    line-height: 1.3;
}

.story-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #34495e;
}

.problem-amplification {
    background-color: #fff3cd;
    padding: 40px;
    margin: 60px 0;
    border-radius: 8px;
}

.problem-amplification h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #856404;
}

.problem-amplification ul {
    list-style: none;
    padding: 0;
}

.problem-amplification li {
    font-size: 18px;
    padding: 12px 0 12px 32px;
    position: relative;
    color: #856404;
}

.problem-amplification li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    font-size: 20px;
}

.trust-building {
    background-color: #ecf0f1;
    padding: 100px 40px;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background-color: #ffffff;
    padding: 32px;
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
    font-style: italic;
}

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

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

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

.benefits-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
}

.benefit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.benefit-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background-color: #bdc3c7;
}

.benefit-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #2c3e50;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 24px 24px;
    color: #34495e;
}

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

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

.pricing-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.pricing-intro {
    text-align: center;
    font-size: 19px;
    color: #f0f0f0;
    margin-bottom: 60px;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.price-card {
    background-color: #ffffff;
    padding: 40px 32px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    position: relative;
    transition: transform 0.3s;
}

.price-card:hover {
    transform: translateY(-8px);
}

.price-card.featured {
    border: 3px solid #f39c12;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #f39c12;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.price-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.price-card .description {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 24px;
    line-height: 1.5;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 24px;
}

.features {
    list-style: none;
    margin-bottom: 28px;
}

.features li {
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
    font-size: 15px;
    color: #34495e;
}

.select-service {
    width: 100%;
    padding: 16px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2980b9;
}

.select-service.selected {
    background-color: #27ae60;
}

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

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

.form-container h2 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
    color: #2c3e50;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.form-notice {
    background-color: #e8f5e9;
    padding: 20px;
    margin-bottom: 28px;
    border-radius: 6px;
    border-left: 4px solid #27ae60;
}

.form-notice p {
    margin: 0;
    font-size: 16px;
    color: #2c3e50;
}

.form-notice #displayService {
    font-weight: 700;
    color: #27ae60;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.final-push {
    padding: 80px 40px;
    background-color: #34495e;
    color: #ffffff;
}

.push-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.push-container h2 {
    font-size: 34px;
    margin-bottom: 24px;
}

.push-container p {
    font-size: 19px;
    line-height: 1.7;
}

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

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

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

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

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

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

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 24px;
    background-color: rgba(236, 240, 241, 0.1);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

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

.accept-btn,
.reject-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.accept-btn {
    background-color: #27ae60;
    color: #ffffff;
}

.reject-btn {
    background-color: #95a5a6;
    color: #ffffff;
}

.accept-btn:hover,
.reject-btn:hover {
    opacity: 0.9;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.thanks-container .service-chosen {
    background-color: #e8f5e9;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
    font-weight: 600;
    color: #27ae60;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.back-link:hover {
    background-color: #2980b9;
}

.page-header {
    padding: 100px 40px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.page-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 22px;
    margin: 30px 0 16px;
    color: #34495e;
}

.page-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 40px;
}

.page-content li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #34495e;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    margin: 40px 0;
    border-radius: 8px;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 12px;
    color: #34495e;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.service-item {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-item .service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 16px;
}

.service-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
}

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

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

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

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

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

    .benefit-grid,
    .pricing-cards,
    .testimonial-cards {
        flex-direction: column;
    }
}