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

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.nav-menu a:hover {
    color: #e74c3c;
}

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 30px 60px;
    background: linear-gradient(135deg, rgba(231,76,60,0.95) 0%, rgba(192,57,43,0.92) 100%);
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    opacity: 0.95;
}

.hero-image-wrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
    background-color: #34495e;
}

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

.story-intro {
    padding: 90px 30px;
    background: #f8f9fa;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.lead-text {
    font-size: 21px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 500;
}

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

.problem-section {
    padding: 100px 30px;
    background: #ffffff;
}

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

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.text-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #34495e;
}

.insight-list {
    list-style: none;
    margin-top: 30px;
}

.insight-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
    color: #34495e;
}

.insight-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 22px;
    font-weight: 700;
}

.problem-image {
    flex: 1;
    background-color: #ecf0f1;
}

.problem-image img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-block {
    padding: 90px 30px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
}

.insight-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #ffffff;
}

.insight-block p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #ffffff;
}

.reference-link {
    color: #f1c40f;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #f1c40f;
}

.reference-link:hover {
    color: #f39c12;
    border-bottom-color: #f39c12;
}

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

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

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

.benefit-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.benefit-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.benefit-card:nth-child(even) {
    flex-direction: row-reverse;
}

.benefit-card img {
    width: 450px;
    flex-shrink: 0;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.benefit-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.benefit-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.testimonials-section {
    padding: 90px 30px;
    background: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.testimonial {
    background: #ffffff;
    padding: 35px 40px;
    margin-bottom: 30px;
    border-left: 4px solid #e74c3c;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #2c3e50;
    font-style: italic;
}

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

.products-pricing {
    padding: 100px 30px;
    background: #ffffff;
}

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

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

.pricing-intro {
    text-align: center;
    font-size: 19px;
    color: #34495e;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.product-item {
    display: flex;
    gap: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.product-item:nth-child(even) {
    flex-direction: row-reverse;
}

.product-image {
    width: 400px;
    flex-shrink: 0;
    background-color: #ecf0f1;
}

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

.product-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.product-info p {
    font-size: 17px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 20px;
}

.product-price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 25px;
}

.select-product-btn {
    background: #e74c3c;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.select-product-btn:hover {
    background: #c0392b;
}

.form-section {
    padding: 90px 30px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

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

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

.form-container > p {
    text-align: center;
    color: #ecf0f1;
    margin-bottom: 40px;
    font-size: 17px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    background: #ffffff;
    color: #2c3e50;
}

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

.submit-btn {
    width: 100%;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    padding: 18px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #c0392b;
}

.disclaimer-section {
    padding: 60px 30px;
    background: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.disclaimer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #856404;
}

.references-section {
    padding: 60px 30px;
    background: #f8f9fa;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

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

.references-list a {
    color: #3498db;
    text-decoration: none;
}

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

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

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

.footer-section {
    flex: 1;
}

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

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e74c3c;
}

.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: #2c3e50;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

.cookie-accept:hover {
    background: #229954;
}

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

.cookie-reject:hover {
    background: #6c7a89;
}

.page-header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    padding: 80px 30px;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
}

.contact-grid {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #34495e;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 30px;
    text-align: center;
}

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

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

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

.back-link:hover {
    background: #c0392b;
}

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

    .content-wrapper,
    .benefit-card,
    .product-item,
    .contact-grid {
        flex-direction: column;
    }

    .benefit-card:nth-child(even),
    .product-item:nth-child(even) {
        flex-direction: column;
    }

    .product-image,
    .benefit-card img {
        width: 100%;
    }

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

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

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
}