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

/* Root Variables */
:root {
    --primary-color: #7ce800;
    --secondary-color: #2f332b;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --max-width: 1200px;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 16px;
    color: var(--text-light);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    font-size: 16px;
    line-height: 1.4;
}

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

.btn-primary:hover {
    background-color: #6bc700;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle img {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1001;
    transition: var(--transition);
    padding: 24px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-bottom: 32px;
}

.mobile-menu-close img {
    width: 24px;
    height: 24px;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 16px;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 12px 0;
    display: block;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: var(--text-light);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section.bg-light {
    background-color: var(--background-light);
}

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

.section-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    display: block;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
    font-size: 2.5rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 48px;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Grid Layouts */
.info-grid,
.advantages-grid,
.offers-grid,
.achievements-grid,
.reviews-grid,
.payment-delivery-grid,
.values-grid,
.why-choose-grid,
.products-grid,
.bundles-grid,
.faq-grid,
.support-grid {
    display: grid;
    gap: 32px;
    margin-top: 48px;
}

.info-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.offers-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.payment-delivery-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.values-grid,
.why-choose-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.products-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.bundles-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.support-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards */
.info-card,
.advantage-card,
.offer-card,
.achievement-card,
.review-card,
.payment-card,
.delivery-card,
.value-card,
.choose-card,
.product-card,
.bundle-card,
.faq-item,
.support-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.info-card:hover,
.advantage-card:hover,
.offer-card:hover,
.value-card:hover,
.choose-card:hover,
.product-card:hover,
.bundle-card:hover,
.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.advantage-icon,
.value-icon,
.support-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: block;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.achievement-text {
    font-size: 1.1rem;
    color: var(--text-light);
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.review-stars img {
    width: 20px;
    height: 20px;
}

.review-author {
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 16px;
}

.payment-icon,
.delivery-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: block;
}

/* Product Cards */
.product-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    display: block;
}

.product-info {
    text-align: left;
}

.product-description {
    margin-bottom: 16px;
    font-size: 14px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.feature-tag {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

/* Bundle Cards */
.bundle-items {
    margin: 16px 0;
    text-align: left;
}

.bundle-items span {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
}

.bundle-pricing {
    margin: 24px 0;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 8px;
}

.bundle-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-right: 8px;
}

.savings {
    color: var(--primary-color);
    font-weight: 600;
}

/* Special Offers */
.offer-discount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 16px 0;
}

/* Newsletter */
.newsletter {
    background-color: var(--secondary-color);
    color: var(--white);
}

.newsletter h2 {
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.newsletter-content p {
color: white;
}
footer p {
    color: white;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.newsletter-form input {
    padding: 12px 16px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    min-width: 200px;
    flex: 1;
}

.newsletter-form button {
    min-width: 150px;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 64px 0 24px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 24px;
}

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

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 24px;
}

.social-links a {
    margin-right: 16px;
    color: #cccccc;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #555;
    color: #cccccc;
}

/* Page Headers */
.page-header {
    background-color: var(--background-light);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

/* Content Blocks */
.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 64px;
}

.content-svg {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: block;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-details {
    margin: 32px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.contact-text small {
    color: var(--text-light);
    font-size: 14px;
}

.business-hours {
    background-color: var(--background-light);
    padding: 24px;
    border-radius: var(--border-radius);
    margin-top: 32px;
}

.hours-list {
    margin-top: 16px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

/* Forms */
.contact-form,
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.legal-text h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.legal-text ul {
    margin: 16px 0 16px 32px;
}

.legal-text li {
    margin-bottom: 8px;
}

.contact-info {
    background-color: var(--background-light);
    padding: 24px;
    border-radius: var(--border-radius);
    margin: 24px 0;
}

/* Cookie Management */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 24px;
    z-index: 1000;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-banner p {
    color: white;
    margin-bottom: 0;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.cookie-buttons {
    margin-top: 16px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 100%;
}

.cookie-option {
    margin: 16px 0;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.modal-buttons {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 32px;
}

.success-icon {
    width: 80px;
    height: 80px;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.personal-message {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 48px;
}

.what-happens-next {
    margin: 64px 0;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.step {
    padding: 24px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: block;
}

.contact-alternatives {
    margin: 48px 0;
}

.quick-contact {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--secondary-color);
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-option:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.contact-option img {
    width: 20px;
    height: 20px;
}

.action-buttons {
    margin-top: 48px;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.featured-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.featured-product {
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.featured-product .product-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .content-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        min-width: unset;
        width: 100%;
        max-width: 300px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-contact {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 48px 0;
    }
    
    .page-header {
        padding: 140px 0 60px;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
    
    .info-card,
    .advantage-card,
    .offer-card,
    .achievement-card,
    .review-card,
    .payment-card,
    .delivery-card,
    .value-card,
    .choose-card,
    .product-card,
    .bundle-card,
    .faq-item,
    .support-card {
        padding: 24px;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu,
    .cookie-banner,
    .cookie-modal,
    .footer {
        display: none;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .section {
        page-break-inside: avoid;
        padding: 24px 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}
