/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

svg {
    max-width: 100%;
}

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

/* Header and Navigation */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    padding: 1rem;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #191c09;
    text-decoration: none;
}

.logo-text {
    color: #191c09;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #9fb332;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #9fb332;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #191c09;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 3px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 150px 0 100px;
}

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

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    text-align: center;
    z-index: 1;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #191c09;
    
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #9fb332;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(159, 179, 50, 0.3);
}

.cta-button:hover {
    background: #8ba029;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(159, 179, 50, 0.4);
}

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

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

.section-icon {
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #191c09;
    margin-bottom: 1rem;
}

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

/* Grid Layouts */
.about-grid,
.features-grid,
.offers-grid,
.achievements-grid,
.reviews-grid,
.payment-grid,
.values-grid,
.team-grid,
.categories-grid,
.products-grid,
.contact-options-grid,
.faq-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Card Styles */
.about-card,
.feature-item,
.offer-card,
.review-card,
.payment-card,
.value-card,
.team-member,
.category-card,
.product-card,
.contact-option,
.faq-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.about-card:hover,
.feature-item:hover,
.offer-card:hover,
.review-card:hover,
.payment-card:hover,
.value-card:hover,
.team-member:hover,
.category-card:hover,
.product-card:hover,
.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-icon,
.feature-icon,
.payment-icon,
.value-icon,
.category-icon,
.contact-icon {
    margin-bottom: 20px;
}

.about-card h3,
.feature-item h3,
.payment-card h3,
.value-card h3,
.category-card h3,
.contact-option h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #191c09;
    margin-bottom: 15px;
}

.about-card p,
.feature-item p,
.payment-card p,
.value-card p,
.category-card p,
.contact-option p {
    color: #666;
    line-height: 1.6;
}

/* Special Card Styles */
.offer-card {
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.offer-card.featured {
    border-color: #9fb332;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #9fb332;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.offer-badge.sale {
    background: #e74c3c;
}

.price {
    margin: 20px 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.new-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #9fb332;
}

.offer-button {
    background: #9fb332;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.offer-button:hover {
    background: #8ba029;
    transform: translateY(-2px);
}

/* Achievement Items */
.achievement-item {
    text-align: center;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #9fb332;
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 1.1rem;
    color: #666;
}

/* Review Cards */
.review-stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-author {
    font-style: italic;
    color: #999;
    margin-top: 15px;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #9fb332 0%, #8ba029 100%);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.newsletter-form {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.newsletter-form input {
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
}

.newsletter-form input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.newsletter-button {
    background: #191c09;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.newsletter-button:hover {
    background: #2a2f12;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #191c09;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #9fb332;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #9fb332;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.contact-info p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    color: #191c09;
    margin-bottom: 20px;
}

.page-header-content p {
    font-size: 1.2rem;
    color: #666;
}

/* Product Cards */
.product-image {
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.product-badge {
    background: #9fb332;
}

.product-badge.sale {
    background: #e74c3c;
}

.product-badge.premium {
    background: #8e44ad;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.feature {
    background: #f0f4e8;
    color: #6b7b0a;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.product-price {
    margin: 20px 0;
}

.current-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #9fb332;
}

.product-button {
    background: #9fb332;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.product-button:hover {
    background: #8ba029;
    transform: translateY(-2px);
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.comparison-header {
    background: #9fb332;
    color: white;
    font-weight: 600;
}

.comparison-feature,
.comparison-model,
.comparison-value {
    padding: 15px 20px;
    text-align: center;
}

.comparison-feature {
    text-align: left;
    font-weight: 500;
}

.comparison-row:nth-child(even) {
    background: #f8f9fa;
}

/* Contact Form */
.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-text h2 {
    font-size: 2.2rem;
    color: #191c09;
    margin-bottom: 20px;
}

.contact-benefits {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #191c09;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9fb332;
}

.contact-submit-btn {
    background: #9fb332;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-submit-btn:hover {
    background: #8ba029;
    transform: translateY(-2px);
}

/* Contact Details */
.contact-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Map Section */
.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-placeholder {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
}

.map-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-info h3 {
    color: #191c09;
    margin-bottom: 20px;
}

.address-details {
    margin-bottom: 30px;
}

.office-hours h4 {
    color: #9fb332;
    margin-bottom: 10px;
}

/* Thank You Page */
.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
}

.thank-you-content h1 {
    font-size: 3rem;
    color: #9fb332;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.thank-you-details {
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #666;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.thank-you-button {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thank-you-button.primary {
    background: #9fb332;
    color: white;
}

.thank-you-button.secondary {
    background: transparent;
    color: #9fb332;
    border: 2px solid #9fb332;
}

.thank-you-button:hover {
    transform: translateY(-2px);
}

.redirect-notice {
    font-style: italic;
    color: #999;
}

/* Legal Pages */
.legal-section {
    padding: 120px 0 80px;
}

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

.legal-header h1 {
    font-size: 3rem;
    color: #191c09;
    margin-bottom: 10px;
}

.legal-updated {
    color: #666;
    font-style: italic;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    color: #191c09;
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.legal-content h3 {
    color: #9fb332;
    margin: 30px 0 15px;
    font-size: 1.3rem;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

/* Story Section */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #191c09;
    margin-bottom: 30px;
}

.story-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

/* Mission Section */
.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    color: #191c09;
    margin-bottom: 30px;
}

.mission-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.mission-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #9fb332;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Team Members */
.member-avatar {
    margin-bottom: 20px;
}

.member-role {
    color: #9fb332;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #191c09;
    color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    max-width: 600px;
    margin: 0 auto;
}

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

.cookie-text h3 {
    color: #9fb332;
    margin-bottom: 10px;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.primary {
    background: #9fb332;
    color: white;
}

.cookie-btn.secondary {
    background: #666;
    color: white;
}

.cookie-btn.tertiary {
    background: transparent;
    color: #9fb332;
    border: 1px solid #9fb332;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.cookie-modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
}

.cookie-modal-content h3 {
    color: #191c09;
    margin-bottom: 20px;
}

.cookie-option {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
}

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

.cookie-option input[type="checkbox"] {
    margin-top: 4px;
}

.cookie-option span {
    font-size: 0.9rem;
    color: #666;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.hidden {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .newsletter-content,
    .contact-form-content,
    .story-content,
    .mission-content,
    .map-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        font-size: 0.9rem;
    }
    
    .mission-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin-bottom: 30px;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .thank-you-content h1 {
        font-size: 2.5rem;
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .story-text h2,
    .mission-text h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .comparison-feature {
        background: #f8f9fa;
        font-weight: 600;
    }
    
    .mission-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cookie-content {
        gap: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-grid,
    .features-grid,
    .offers-grid,
    .reviews-grid,
    .payment-grid,
    .values-grid,
    .team-grid,
    .categories-grid,
    .products-grid,
    .contact-options-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 15px;
    }
    
    .cookie-modal-content {
        padding: 20px;
        margin: 20px;
    }
}