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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: #6c7a7b;
}

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

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

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

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

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

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

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.hero-section {
    margin-top: 0;
    position: relative;
}

.hero-image-wrap {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #d5dbdb;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 64, 83, 0.85) 0%, rgba(52, 152, 219, 0.7) 100%);
    display: flex;
    align-items: center;
}

.hero-text {
    color: #ffffff;
    max-width: 700px;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

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

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 25px;
    font-weight: 500;
}

.story-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

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

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

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

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #444;
}

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

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

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

.insight-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

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

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

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

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
}

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

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

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

.solution-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.solution-text {
    flex: 1.2;
}

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

.solution-text > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #555;
}

.feature-block {
    margin-bottom: 30px;
}

.feature-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #34495e;
}

.feature-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.solution-image {
    flex: 1;
    background-color: #d5dbdb;
}

.solution-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

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

.composition-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.ingredient-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ingredient-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
    border-left: 3px solid #3498db;
}

.ingredient-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.ingredient-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.ingredient-item a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.ingredient-item a:hover {
    text-decoration: underline;
}

.benefits-reveal {
    padding: 80px 0;
    background-color: #ecf0f1;
}

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

.benefit-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.benefit-card h3 {
    font-size: 22px;
    padding: 20px 20px 10px;
    color: #2c3e50;
}

.benefit-card p {
    font-size: 16px;
    padding: 0 20px 25px;
    color: #666;
    line-height: 1.6;
}

.services-pricing {
    padding: 80px 0;
    background-color: #ffffff;
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    background-color: #f8f9fa;
    padding: 35px 25px;
    border-radius: 10px;
    border: 2px solid #ecf0f1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: #e67e22;
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e67e22;
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

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

.service-desc {
    font-size: 15px;
    color: #777;
    margin-bottom: 25px;
    min-height: 60px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #3498db;
    font-size: 20px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #e67e22;
    text-align: center;
    margin-bottom: 20px;
}

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

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

.order-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

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

.selected-service-info {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #27ae60;
}

.selected-service-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #27ae60;
}

.selected-service-info p {
    font-size: 16px;
    color: #555;
}

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

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

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

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

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

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

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

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

.disclaimer-box {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 30px;
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #856404;
}

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

.references-section {
    padding: 50px 0;
    background-color: #ffffff;
}

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

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

.reference-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

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

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

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

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #e67e22;
}

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

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

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

    .split-content {
        flex-direction: column;
        gap: 30px;
    }

    .solution-layout {
        flex-direction: column;
        gap: 40px;
    }

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

    .benefit-cards {
        flex-direction: column;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .header-content {
        flex-direction: column;
        gap: 20px;
    }
}