:root {
    --primary: #2e7d32;
    --accent: #ff6f00;
    --dark: #1b5e20;
    --light: #e8f5e9;
    --white: #ffffff;
    --text: #333333;
    --gray: #f5f5f5;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
}

.video-section {
  text-align: center;
  padding: 40px 20px;
  background: #f5f5f5;
}

.video-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.video-container video {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.eco-bg {
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    min-height: 100vh;
}

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

.offer_section {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(46,125,50,0.1);
    margin-bottom: 30px;
}

.main_title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 15px;
    border-radius: 15px;
}

.subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.discount {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    margin: 15px 0;
    font-size: 16px;
}

.main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.price_block {
    margin: 25px 0;
}

.price_container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.price_item {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: var(--gray);
}

.price_item.old {
    background: #f8f9fa;
}

.price_item.new {
    background: var(--light);
    border: 2px solid var(--primary);
}

.price_item .text {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 8px;
}

.price_item .value {
    font-size: 24px;
    font-weight: 700;
}

.price_item.old .value {
    color: #999;
    text-decoration: ;
}

.price_item.new .value {
    color: var(--accent);
}

.benefits_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit_card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(46,125,50,0.1);
    transition: transform 0.3s ease;
}

.benefit_card:hover {
    transform: translateY(-5px);
}

.benefit_card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.benefit_card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.benefit_card p {
    font-size: 14px;
    color: var(--text);
}

.button {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 20px 0;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.button:hover {
    background: var(--dark);
    transform: scale(1.05);
}

.products_count {
    font-size: 16px;
    color: var(--text);
    margin-top: 15px;
}

.products_count b {
    color: var(--accent);
}

.description_section {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.description_section .title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 30px;
}

.description_section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text);
}

.description_section p strong {
    color: var(--primary);
    font-weight: 700;
}

.description_section img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.urgent_block {
    background: #fff3e0;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--accent);
    margin: 30px 0;
}

.urgent_block h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.urgent_block ul {
    list-style: none;
}

.urgent_block li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 10px;
}

.reviews_section {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.reviews_section .title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 30px;
}

.reviews_list {
    display: grid;
    gap: 25px;
}

.review_item {
    background: var(--gray);
    padding: 25px;
    border-radius: 15px;
    position: relative;
}

.review_item .photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.review_item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 15px;
    font-style: italic;
}

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

.author_block .name {
    font-weight: 700;
    color: var(--primary);
}

.author_block .text {
    font-size: 14px;
    color: #666;
}

.order_steps_section {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.order_steps_section .title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 30px;
}

.steps_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.step_item {
    text-align: center;
    padding: 25px;
    background: var(--light);
    border-radius: 15px;
}

.step_number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step_item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.step_item p {
    font-size: 14px;
    color: var(--text);
}

.urgent_timer {
    background: var(--light);
    padding: 20px;
    border-radius: 15px;
    margin: 25px 0;
    text-align: center;
}

.urgent_timer p {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.timer_item {
    text-align: center;
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
}

.timer_item .count {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
}

.timer_item .text {
    font-size: 14px;
    color: var(--text);
    margin-top: 5px;
}

.order_form {
    max-width: 400px;
    margin: 0 auto;
}

.order_form input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

.order_form input:focus {
    outline: none;
    border-color: var(--primary);
}

.footer_section {
    background: var(--dark);
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
    border-radius: 15px;
    margin-top: 30px;
    
}

.footer_section a {
    color: var(--light);
    text-decoration: underline;
    margin: 0 10px;
}

.footer_section a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .main_title {
        font-size: 22px;
    }
    
    .price_container {
        flex-direction: column;
        gap: 15px;
    }
    
    .benefits_grid {
        grid-template-columns: 1fr;
    }
    
    .steps_grid {
        grid-template-columns: 1fr;
    }
    
    .timer {
        flex-wrap: wrap;
    }
    
    .timer_item {
        min-width: 70px;
    }
    
    .button {
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .main_wrapper {
        padding: 10px;
    }
    
    .offer_section {
        padding: 20px 15px;
    }
    
    .main_title {
        font-size: 20px;
        padding: 10px;
    }
    
    .discount {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .price_item .value {
        font-size: 20px;
    }
    
    .benefit_card {
        padding: 20px 15px;
    }
}