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

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

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

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.hero-section {
    background-color: #f8f9fa;
    padding: 80px 0 0 0;
}

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

.hero-text {
    max-width: 700px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-text p {
    font-size: 1.25rem;
    color: #5a6c7d;
}

.hero-image {
    background-color: #e9ecef;
}

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

.story-intro {
    padding: 80px 0;
    background-color: #ffffff;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 400;
}

.story-intro p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.problem-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.text-block p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.image-block {
    flex: 1;
    background-color: #e9ecef;
}

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

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

.insight-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.05rem;
    color: #5a6c7d;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.insight-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.insight-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

.insight-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #5a6c7d;
    line-height: 1.8;
}

.insight-section a {
    color: #3498db;
    text-decoration: none;
}

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

.trust-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-section h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
    color: #ffffff;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #95a5a6;
    font-style: normal;
}

.benefits-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.benefit-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 1.1rem;
    color: #5a6c7d;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.3rem;
}

.product-reveal {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.product-reveal h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.product-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e9ecef;
}

.product-card h3 {
    font-size: 1.4rem;
    margin: 20px 20px 15px 20px;
    color: #2c3e50;
}

.product-card p {
    font-size: 1rem;
    color: #5a6c7d;
    margin: 0 20px 20px 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 0 20px 20px 20px;
}

.select-product {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 20px 20px 20px;
    border-radius: 4px;
}

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

.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.form-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.order-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
}

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

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 4px;
    width: 100%;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.disclaimer {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.7;
    text-align: center;
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background-color: #ffffff;
}

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

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-column p {
    color: #95a5a6;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.references {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    margin-bottom: 30px;
}

.references h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ffffff;
}

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

.references ol li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #95a5a6;
}

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

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #2c3e50;
    font-size: 0.95rem;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .split-content,
    .split-reverse {
        flex-direction: column;
        gap: 40px;
    }

    .product-card {
        flex: 1 1 100%;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}