:root {
    --primary-color: #073b4c;
    --light-shade: #e6ebee;
    --dark-shade: #052633;
    --accent-color: #e76f51;
    --secondary-color: #2a9d8f;
    --text-color: #052633;
    --background-color: #e6ebee;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-color);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.4rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-shade);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.nav-wrapper {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

.hero-section {
    background-image: url('../img/strawberry_diet_plan_weight_loss_2.webp');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 600px;
    margin-left: 10%;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.program-section {
    padding: 100px 0;
}

.recipe-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.recipe-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.recipe-image {
    height: 200px;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.05);
}

.recipe-content {
    padding: 20px;
}

.recipe-content h3 {
    margin-bottom: 10px;
}

.recipe-rating {
    margin-bottom: 15px;
    color: #f8a100;
}

.recipe-rating span:last-child {
    color: var(--text-color);
    margin-left: 5px;
}

.recipe-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    position: relative;
}

.recipe-link:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.recipe-link:hover:after {
    width: 100%;
}

.seasonal-tips {
    padding: 100px 0;
    background-color: var(--light-shade);
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.tip-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tip-image {
    height: 180px;
    overflow: hidden;
}

.tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tip-card:hover .tip-image img {
    transform: scale(1.05);
}

.tip-content {
    padding: 20px;
}

.blog-section {
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.blog-post {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-excerpt {
    margin-bottom: 15px;
}

.read-more {
    font-weight: 600;
    position: relative;
}

.read-more:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.read-more:hover:after {
    width: 100%;
}

.ebook-promo {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: white;
}

.ebook-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ebook-text {
    max-width: 700px;
}

.ebook-text h2 {
    color: white;
    margin-bottom: 20px;
}

.ebook-features {
    list-style: none;
    margin: 25px 0;
}

.ebook-features li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.ebook-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.ebook-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.old-price {
    text-decoration: line-through;
    color: #ccc;
    font-size: 1.2rem;
}

.new-price {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.coaching-section {
    padding: 100px 0;
}

.coaching-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.coaching-card {
    background-color: white;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s ease;
}

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

.coaching-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.coaching-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.coaching-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

.coaching-features {
    list-style: none;
    text-align: left;
    margin: 25px 0;
}

.coaching-features li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.coaching-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.disclaimer {
    background-color: #f8f9fa;
    padding: 40px 0;
    font-size: 0.9rem;
}

.disclaimer h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #ccc;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-links a,
.footer-contact a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: #ccc;
}

@media screen and (max-width: 991px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero-content {
        margin-left: 5%;
        margin-right: 5%;
    }

    .coaching-card.featured {
        transform: none;
    }

    .coaching-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    .hero-section {
        height: 80vh;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .program-section,
    .seasonal-tips,
    .blog-section,
    .ebook-promo,
    .coaching-section {
        padding: 60px 0;
    }

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

@media screen and (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Секция преимуществ клубники */
.strawberry-benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #e6ebee 0%, #d1e2eb 100%);
    position: relative;
    overflow: hidden;
}

.strawberry-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.strawberry-benefits::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-shade);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon::before,
.benefit-icon::after {
    content: '';
    position: absolute;
}

/* Стилизованные иконки (без использования фото) */
.strawberry-icon::before {
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.strawberry-icon::after {
    width: 8px;
    height: 8px;
    background-color: var(--light-shade);
    border-radius: 50%;
    top: 6px;
    left: 8px;
    box-shadow: 4px 4px 0 var(--light-shade), 8px 0 0 var(--light-shade);
}

.energy-icon::before {
    width: 24px;
    height: 24px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
}

.energy-icon::after {
    width: 14px;
    height: 14px;
    border-right: 3px solid var(--primary-color);
    border-top: 3px solid var(--primary-color);
    transform: rotate(45deg);
    left: 12px;
    top: 16px;
}

.balance-icon::before {
    width: 30px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.balance-icon::after {
    width: 4px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 2px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: -8px 0 0 var(--primary-color), 8px 0 0 var(--primary-color);
}

.wellness-icon::before {
    width: 26px;
    height: 22px;
    border: 3px solid var(--secondary-color);
    border-radius: 50% 50% 0 0;
    border-bottom: none;
    top: 8px;
}

.wellness-icon::after {
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    bottom: 12px;
    left: 22px;
}

.benefit-text h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.benefit-text p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
}

.benefits-cta {
    display: flex;
    align-items: center;
}

.cta-card {
    background-color: var(--primary-color);
    color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.cta-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
    position: relative;
}

.cta-card p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

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

.cta-features li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
}

.cta-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.cta-action {
    position: relative;
    z-index: 2;
}

.cta-note {
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.8;
    font-style: italic;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: white;
}

.cta-card .btn-primary {
    display: block;
    text-align: center;
    padding: 15px;
    font-size: 1.1rem;
}

/* Секция контактной формы */
.contact-section {
    padding: 100px 0;
    background-color: white;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color), var(--primary-color));
    background-size: 300% 100%;
    animation: gradient-flow 10s ease infinite;
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 50px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-block {
    background-color: var(--light-shade);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-block h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
}

.contact-block h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.contact-block p {
    margin-bottom: 10px;
}

.contact-block a {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.contact-block a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.contact-block a:hover::after {
    width: 100%;
}

.testimonial {
    background-color: var(--primary-color);
    color: white;
    position: relative;
    padding-top: 40px;
}

.quote-mark {
    position: absolute;
    top: 15px;
    left: 20px;
    width: 30px;
    height: 30px;
}

.quote-mark::before,
.quote-mark::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 2px;
    opacity: 0.8;
}

.quote-mark::before {
    top: 0;
    left: 0;
}

.quote-mark::after {
    top: 10px;
    left: 10px;
}

.quote-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.quote-author {
    font-weight: 600;
    opacity: 0.9;
    text-align: right;
}

.contact-form-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(7, 59, 76, 0.1);
    overflow: hidden;
}

.contact-form {
    padding: 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-header p {
    color: #777;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    background-color: #f9fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(7, 59, 76, 0.1);
    background-color: white;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-agreement {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.form-agreement input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.form-agreement label {
    font-size: 0.9rem;
    color: #555;
}

.form-agreement a {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-submit {
    display: block;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-submit:hover {
    background-color: var(--dark-shade);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Адаптивный дизайн для мобильных устройств */
@media screen and (max-width: 991px) {
    .benefits-wrapper {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .strawberry-benefits,
    .contact-section {
        padding: 60px 0;
    }

    .benefit-item {
        padding: 20px;
    }

    .cta-card {
        padding: 30px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 576px) {
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefit-icon {
        margin-bottom: 15px;
    }

    .form-agreement {
        align-items: flex-start;
    }

    .form-agreement input {
        margin-top: 3px;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(7, 59, 76, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
    animation: cookie-slide-up 0.5s ease-in-out forwards;
}

@keyframes cookie-slide-up {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.cookie-text {
    flex: 1;
    padding-right: 20px;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-cookie {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-cookie:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Адаптивность для мобильных устройств */
@media screen and (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .cookie-text {
        padding-right: 0;
        margin-bottom: 15px;
    }
}

/* Стили для about.html */

/* Секция hero */
.about-hero {
    background-color: var(--primary-color);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.about-hero .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-top: 30px;
}

/* Секция истории */
.about-story {
    padding: 100px 0;
    background-color: white;
}

.about-story-wrapper {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 50px;
    align-items: center;
}

.about-story-content h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}

.about-story-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.about-story-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-quote {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--light-shade);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    position: relative;
}

.about-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
}

.about-quote p {
    font-style: italic;
    position: relative;
    z-index: 1;
    padding-left: 15px;
}

.about-quote cite {
    display: block;
    font-weight: 600;
    margin-top: 15px;
    text-align: right;
    color: var(--primary-color);
}

.about-story-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

.about-story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0.3;
    z-index: 1;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-story-image:hover img {
    transform: scale(1.05);
}

/* Секция миссии */
.about-mission {
    padding: 100px 0;
    background-color: var(--light-shade);
    position: relative;
    overflow: hidden;
}

.about-mission::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background-color: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
}

.about-mission::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--accent-color);
    opacity: 0.05;
    border-radius: 50%;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.mission-value-item {
    background-color: white;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--light-shade);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.value-icon::before,
.value-icon::after {
    content: '';
    position: absolute;
}

/* Стилизованные иконки для ценностей */
.innovation-icon::before {
    width: 30px;
    height: 30px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
}

.innovation-icon::after {
    width: 10px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 5px;
    transform: translateY(-15px);
}

.quality-icon::before {
    width: 30px;
    height: 20px;
    border: 3px solid var(--primary-color);
    border-radius: 3px;
}

.quality-icon::after {
    width: 15px;
    height: 3px;
    background-color: var(--primary-color);
    top: 45%;
    box-shadow: 0 -8px 0 var(--primary-color), 0 8px 0 var(--primary-color);
}

.sustainability-icon::before {
    width: 30px;
    height: 30px;
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    transform: rotate(45deg);
}

.sustainability-icon::after {
    width: 20px;
    height: 20px;
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    background-color: var(--light-shade);
}

.community-icon::before {
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: -18px 0 0 var(--primary-color), 18px 0 0 var(--secondary-color);
}

.community-icon::after {
    width: 40px;
    height: 20px;
    border: 3px solid var(--primary-color);
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    top: 25px;
}

.mission-value-item h3 {
    margin: 20px 0 15px;
    color: var(--primary-color);
}

.mission-value-item p {
    font-size: 0.95rem;
    color: var(--text-color);
}

/* Секция команды */
.about-team {
    padding: 100px 0;
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background-color: var(--light-shade);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

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

.member-info {
    padding: 30px;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.member-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.member-bio {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Секция присоединения */
.about-join {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.join-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.about-join h2 {
    color: white;
    margin-bottom: 20px;
}

.about-join p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.about-join .btn-primary {
    background-color: white;
    color: var(--primary-color);
    padding: 15px 40px;
    font-size: 1.1rem;
}

.about-join .btn-primary:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Адаптивность */
@media screen and (max-width: 991px) {
    .about-story-wrapper {
        grid-template-columns: 1fr;
    }

    .about-story-image {
        order: -1;
        max-height: 400px;
    }

    .about-hero h1 {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 768px) {
    .about-hero,
    .about-story,
    .about-mission,
    .about-team,
    .about-join {
        padding: 60px 0;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero .subtitle {
        font-size: 1.1rem;
    }

    .mission-values {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-quote {
        padding: 20px;
    }
}

/* Стили для thankyou.php */

.thankyou-section {
    padding: 100px 0;
    background-color: var(--light-shade);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thankyou-wrapper {
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thankyou-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color), var(--primary-color));
    background-size: 300% 100%;
    animation: gradient-flow 10s ease infinite;
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.thankyou-icon {
    width: 100px;
    height: 100px;
    background-color: var(--light-shade);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.check-mark {
    width: 40px;
    height: 70px;
    border-right: 6px solid var(--secondary-color);
    border-bottom: 6px solid var(--secondary-color);
    transform: rotate(45deg) translate(-5px, -20px);
    animation: check-animation 0.8s ease-in-out forwards;
    opacity: 0;
}

@keyframes check-animation {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    50% {
        width: 20px;
        height: 40px;
        opacity: 1;
    }
    100% {
        width: 40px;
        height: 70px;
        opacity: 1;
    }
}

.thankyou-content {
    max-width: 800px;
}

.thankyou-content h1 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.thankyou-content .subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.thankyou-message {
    background-color: var(--light-shade);
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    text-align: left;
}

.thankyou-message p {
    line-height: 1.7;
    margin-bottom: 25px;
}

.next-steps {
    margin-top: 30px;
}

.next-steps h3 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.next-steps h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    border-radius: 1px;
}

.next-steps-list {
    list-style: none;
}

.next-steps-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.step-number {
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.step-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.thankyou-actions {
    margin-top: 40px;
}

.thankyou-actions .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.thankyou-contact-info {
    font-size: 0.95rem;
    color: #777;
}

.thankyou-contact-info a {
    color: var(--primary-color);
    font-weight: 600;
}

.thankyou-contact-info a:hover {
    color: var(--accent-color);
}

/* Секция с предложением ebook */
.ebook-offer {
    padding: 80px 0;
    background-color: white;
}

.ebook-offer-wrapper {
    background-color: var(--primary-color);
    border-radius: 12px;
    padding: 50px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ebook-offer-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.ebook-offer-wrapper::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.ebook-offer-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.ebook-offer-content h2 {
    color: white;
    margin-bottom: 20px;
}

.ebook-offer-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.ebook-offer-content .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    font-size: 1.1rem;
}

.ebook-offer-content .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Адаптивный дизайн */
@media screen and (max-width: 991px) {
    .thankyou-wrapper {
        padding: 40px 30px;
    }

    .thankyou-content h1 {
        font-size: 2.2rem;
    }

    .ebook-offer-wrapper {
        padding: 40px 30px;
    }
}

@media screen and (max-width: 768px) {
    .thankyou-section,
    .ebook-offer {
        padding: 60px 0;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .thankyou-content .subtitle {
        font-size: 1.1rem;
    }

    .ebook-offer-content p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .thankyou-wrapper {
        padding: 30px 20px;
    }

    .thankyou-message {
        padding: 20px;
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .ebook-offer-wrapper {
        padding: 30px 20px;
    }
}