/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fira Sans', sans-serif;
    line-height: 1.6;
    color: #2E2E2E;
    background: linear-gradient(135deg, #5161F0 0%, #F8C3A9 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(63, 208, 201, 0.3); }
    50% { box-shadow: 0 0 30px rgba(63, 208, 201, 0.6); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== COOKIE POPUP ===== */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: slideInUp 0.5s ease-out;
}

.cookie-content h3 {
    color: #5161F0;
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

.btn-accept {
    background: linear-gradient(45deg, #D4B8FF, #3FD0C9);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 184, 255, 0.4);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #2E2E2E;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #5161F0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #5161F0, #3FD0C9);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(81, 97, 240, 0.8) 0%, rgba(248, 195, 169, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    animation: slideInUp 1s ease-out;
}

.hero-title {
    margin-bottom: 20px;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    background: linear-gradient(45deg, #D4B8FF, #3FD0C9, #B9F227);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 10px 30px rgba(212, 184, 255, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 184, 255, 0.5);
}

/* ===== SECTION STYLES ===== */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #5161F0, #3FD0C9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    color: #5161F0;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    background: linear-gradient(135deg, rgba(212, 184, 255, 0.1) 0%, rgba(63, 208, 201, 0.1) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    animation: glow 2s ease-in-out infinite;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #D4B8FF, #3FD0C9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.benefit-card h3 {
    color: #5161F0;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    background: rgba(255, 255, 255, 0.95);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(81, 97, 240, 0.2);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #B9F227, #3FD0C9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 30px;
}

.product-name {
    color: #5161F0;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.product-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3FD0C9;
    text-align: center;
    background: linear-gradient(45deg, rgba(63, 208, 201, 0.1), rgba(185, 242, 39, 0.1));
    padding: 10px;
    border-radius: 15px;
}

/* ===== WHY US SECTION ===== */
.why-us {
    background: linear-gradient(135deg, rgba(185, 242, 39, 0.1) 0%, rgba(212, 184, 255, 0.1) 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.why-card:hover::before {
    left: 100%;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.why-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #5161F0, #3FD0C9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.why-card h3 {
    color: #5161F0;
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: rgba(255, 255, 255, 0.9);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #D4B8FF;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #5161F0;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    background: linear-gradient(135deg, rgba(63, 208, 201, 0.1) 0%, rgba(248, 195, 169, 0.1) 100%);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #D4B8FF, #B9F227);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    animation: pulse 2s ease-in-out infinite;
}

.step-content h3 {
    color: #5161F0;
    margin-bottom: 15px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* ===== ORDER FORM SECTION ===== */
.order {
    background: linear-gradient(135deg, rgba(81, 97, 240, 0.05) 0%, rgba(248, 195, 169, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.order::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(81, 97, 240, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(63, 208, 201, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.order-form-wrapper {
    max-width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    animation: slideInUp 0.8s ease-out;
    max-width: 500px;
    margin: 0 auto;
}

.form-header {
    background: linear-gradient(135deg, #5161F0 0%, #3FD0C9 100%);
    padding: 20px 15px;
    text-align: center;
    color: white;
    position: relative;
}

.form-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.form-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.form-header h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-header p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.modern-form {
    padding: 25px 20px;
}

.input-group {
    margin-bottom: 20px;
}

.group-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #5161F0;
    margin-bottom: 15px;
    position: relative;
}

.group-label::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(45deg, #3FD0C9, #B9F227);
    border-radius: 2px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    outline: none;
}

.input-wrapper input:focus {
    border-color: #3FD0C9;
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(63, 208, 201, 0.2);
}

.input-wrapper input:focus + label,
.input-wrapper input:valid + label {
    top: -8px;
    left: 18px;
    font-size: 0.8rem;
    color: #3FD0C9;
    background: white;
    padding: 0 8px;
}

.input-wrapper label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #3FD0C9, #B9F227);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.input-wrapper input:focus ~ .input-highlight {
    width: 100%;
}

.tea-selection {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.tea-option input[type="radio"] {
    display: none;
}

.tea-card {
    display: block;
    padding: 15px;
    border: 2px solid #E8E8E8;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tea-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(63, 208, 201, 0.1), transparent);
    transition: left 0.5s ease;
}

.tea-card:hover::before {
    left: 100%;
}

.tea-card:hover {
    border-color: #3FD0C9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(63, 208, 201, 0.2);
}

.tea-card.featured {
    border-color: #B9F227;
    background: rgba(185, 242, 39, 0.05);
}

.tea-option input[type="radio"]:checked + .tea-card {
    border-color: #3FD0C9;
    background: rgba(63, 208, 201, 0.1);
    box-shadow: 0 8px 25px rgba(63, 208, 201, 0.2);
}

.tea-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, #B9F227, #3FD0C9);
    color: #333;
    padding: 4px 12px;
    border-radius: 0 15px 0 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.tea-info h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.tea-info p {
    margin: 0 0 8px 0;
    color: #666;
    font-size: 0.85rem;
}

.tea-info .price {
    color: #5161F0;
    font-weight: 700;
    font-size: 1.1rem;
}

.tea-check {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    border: 2px solid #D0D0D0;
    border-radius: 50%;
    background: white;
    transition: all 0.3s ease;
}

.tea-option input[type="radio"]:checked + .tea-card .tea-check {
    border-color: #3FD0C9;
    background: #3FD0C9;
}

.tea-option input[type="radio"]:checked + .tea-card .tea-check::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.agreements {
    background: rgba(248, 195, 169, 0.1);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 25px;
    border: 1px solid rgba(248, 195, 169, 0.3);
}

.agreement-item {
    margin-bottom: 20px;
}

.agreement-item:last-child {
    margin-bottom: 0;
}

.agreement-item input[type="checkbox"] {
    display: none;
}

.agreement-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #D0D0D0;
    border-radius: 6px;
    margin-right: 15px;
    margin-top: 2px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.agreement-item input[type="checkbox"]:checked + .agreement-label .checkmark {
    border-color: #3FD0C9;
    background: #3FD0C9;
}

.agreement-item input[type="checkbox"]:checked + .agreement-label .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.agreement-label .text a {
    color: #5161F0;
    text-decoration: none;
    font-weight: 600;
}

.agreement-label .text a:hover {
    text-decoration: underline;
}

/* Simple checkbox styles */
.simple-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 15px;
    gap: 12px;
}

.simple-checkbox:last-child {
    margin-bottom: 0;
}

.simple-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #3FD0C9;
}

.checkbox-mark {
    display: none;
}

.checkbox-text {
    flex: 1;
}

.checkbox-text a {
    color: #5161F0;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #5161F0 0%, #3FD0C9 50%, #B9F227 100%);
    background-size: 300% 300%;
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    animation: gradientShift 4s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(81, 97, 240, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(81, 97, 240, 0.4);
    background-size: 400% 400%;
}

.submit-btn:active {
    transform: translateY(-1px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #2E2E2E 0%, #1A1A1A 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #3FD0C9;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: #CCC;
    text-decoration: none;
    line-height: 1.6;
    margin-bottom: 10px;
    display: block;
}

.footer-section a:hover {
    color: #3FD0C9;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-grid,
    .products-grid,
    .why-us-grid,
    .testimonials-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .order-form {
        padding: 40px 25px;
        border-radius: 25px;
    }
    
    .order-form::before {
        height: 3px;
    }
    
    .form-group {
        margin-bottom: 30px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="tel"] {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .radio-label {
        padding: 18px 20px;
    }
    
    .checkbox-group {
        padding: 20px;
    }
    
    .btn-order {
        padding: 20px 35px;
        font-size: 1.2rem;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .btn-hero {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .order-form {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .order-form::before {
        height: 2px;
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-group label {
        font-size: 1rem;
    }
    
    .form-group input[type="text"],
    .form-group input[type="tel"] {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    .radio-label {
        padding: 15px 18px;
    }
    
    .radio-custom,
    .checkbox-custom {
        width: 20px;
        height: 20px;
        margin-right: 15px;
    }
    
    .checkbox-group {
        padding: 18px;
    }
    
    .btn-order {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
} 