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

body {
    font-family: 'Arial', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

/* Centered Content */
.centered-content {
    text-align: center;
}

.centered-content h2 {
    text-align: center;
}

.centered-content .concept-grid,
.centered-content .features-grid,
.centered-content .products-grid,
.centered-content .steps,
.centered-content .benefits-grid {
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0066FF 0%, #2a2a2a 50%, #0066FF 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero::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"><circle cx="20" cy="20" r="1" fill="%2332FF32" opacity="0.3"/><circle cx="40" cy="40" r="1" fill="%2332FF32" opacity="0.3"/><circle cx="60" cy="20" r="1" fill="%2332FF32" opacity="0.3"/><circle cx="80" cy="60" r="1" fill="%2332FF32" opacity="0.3"/></svg>') repeat;
    animation: float 20s infinite linear;
    pointer-events: none;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
}

.hero-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    filter: drop-shadow(0 4px 8px rgba(50, 255, 50, 0.3));
}

.brand-name {
    font-size: 2.5em;
    font-weight: 700;
    color: #32FF32;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-button {
    background: linear-gradient(45deg, #32FF32, #00CC00);
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(50, 255, 50, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(50, 255, 50, 0.4);
    background: linear-gradient(45deg, #00FF00, #32FF32);
}

/* About Concept */
.about-concept {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-concept h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #2a2a2a;
    font-weight: 700;
}

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

.concept-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.concept-item:hover {
    border-color: #32FF32;
    transform: translateY(-5px);
}

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

.concept-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #0066FF;
    font-weight: 600;
}

.concept-item p {
    color: #666;
    font-size: 1.1em;
}

/* Features */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #32FF32;
    font-weight: 700;
}

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

.feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(50, 255, 50, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: #32FF32;
    background: rgba(50, 255, 50, 0.05);
}

.feature h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #32FF32;
    font-weight: 600;
}

.feature p {
    color: #ccc;
}

/* Products */
.products {
    padding: 100px 0;
    background: #f8f9fa;
}

.products h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #2a2a2a;
    font-weight: 700;
}

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

.product-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.product-card.featured {
    border-color: #32FF32;
    transform: scale(1.05);
}

.product-card.featured::before {
    content: 'Популярний';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #32FF32;
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
}

.product-card:hover {
    border-color: #0066FF;
    transform: translateY(-5px);
}

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

.product-card h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #2a2a2a;
    font-weight: 600;
}

.price {
    font-size: 2em;
    color: #0066FF;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.product-card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.product-card li:before {
    content: '✓';
    color: #32FF32;
    font-weight: bold;
    margin-right: 10px;
}

.product-button {
    background: linear-gradient(45deg, #0066FF, #0052CC);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1em;
}

.product-button:hover {
    background: linear-gradient(45deg, #0052CC, #0066FF);
    transform: translateY(-2px);
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #32FF32;
    font-weight: 700;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #32FF32, #00CC00);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #32FF32;
    font-weight: 600;
}

.step p {
    color: #ccc;
}

/* Schedule, Why Choose, Testimonials, Events */
.schedule, .why-choose, .testimonials, .events {
    padding: 100px 0;
}

.schedule {
    background: #f8f9fa;
}

.why-choose {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: white;
}

.testimonials {
    background: #f8f9fa;
}

.events {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: white;
}

.schedule h2, .why-choose h2, .testimonials h2, .events h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    font-weight: 700;
}

.schedule h2, .testimonials h2 {
    color: #2a2a2a;
}

.why-choose h2, .events h2 {
    color: #32FF32;
}

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

.benefit {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(50, 255, 50, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit:hover {
    border-color: #32FF32;
    background: rgba(50, 255, 50, 0.05);
}

.benefit h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #32FF32;
    font-weight: 600;
}

.benefit p {
    color: #ccc;
}

.schedule-placeholder, .testimonials-placeholder, .events-placeholder {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    border: 2px dashed #ddd;
    font-size: 1.2em;
    color: #666;
}

.why-choose .schedule-placeholder, .events .events-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(50, 255, 50, 0.3);
    color: #ccc;
}

/* Schedule, Testimonials, Events Image Styling */
.schedule-placeholder,
.testimonials-placeholder,
.events-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.schedule-image img,
.testimonials-image img,
.events-image img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.events-svg {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.events-svg svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Contact */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #2a2a2a;
    font-weight: 700;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #0066FF;
    transform: translateY(-5px);
}

.contact-item h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #0066FF;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    font-size: 1.1em;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: #32FF32;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand-name {
    font-size: 1.5em;
    font-weight: 700;
    color: #32FF32;
}

.footer-description {
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 0.95em;
}

.footer-links a:hover {
    color: #32FF32;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact p {
    color: #ccc;
    margin: 0;
    font-size: 0.95em;
}

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

.footer-bottom p {
    color: #999;
    margin: 0;
    font-size: 0.9em;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #000;
}

.modal-content h2 {
    color: #2a2a2a;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

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

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

.submit-button {
    background: linear-gradient(45deg, #0066FF, #0052CC);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1em;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: linear-gradient(45deg, #0052CC, #0066FF);
    transform: translateY(-2px);
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 2px solid #32FF32;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text h3 {
    color: #32FF32;
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: 600;
}

.cookie-text p {
    color: #ccc;
    margin: 0;
    line-height: 1.5;
}

.cookie-text a {
    color: #32FF32;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: linear-gradient(45deg, #32FF32, #00CC00);
    color: #000;
}

.cookie-btn.accept:hover {
    background: linear-gradient(45deg, #00FF00, #32FF32);
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background: transparent;
    color: #ccc;
    border: 1px solid #666;
}

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.cookie-btn.customize {
    background: linear-gradient(45deg, #0066FF, #0052CC);
    color: white;
}

.cookie-btn.customize:hover {
    background: linear-gradient(45deg, #0052CC, #0066FF);
    transform: translateY(-2px);
}

.cookie-btn.save {
    background: linear-gradient(45deg, #32FF32, #00CC00);
    color: #000;
}

.cookie-btn.save:hover {
    background: linear-gradient(45deg, #00FF00, #32FF32);
    transform: translateY(-2px);
}

/* Cookie Settings Modal */
.cookie-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.cookie-modal-content {
    background-color: white;
    margin: 5% auto;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid #eee;
}

.cookie-modal-header h3 {
    color: #2a2a2a;
    margin: 0;
    font-size: 1.5em;
    font-weight: 700;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-close:hover {
    color: #000;
}

.cookie-modal-body {
    padding: 20px 30px;
}

.cookie-modal-body > p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.cookie-category-header input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0066FF;
}

.cookie-category-header label {
    color: #2a2a2a;
    font-size: 1em;
    cursor: pointer;
    margin: 0;
}

.cookie-category-description {
    color: #666;
    font-size: 0.9em;
    margin: 0;
    line-height: 1.4;
    margin-left: 28px;
}

.cookie-modal-footer {
    padding: 20px 30px 30px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-right {
        order: -1;
    }
    
    .hero-image {
        transform: none;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .logo-section {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2em;
    }
    
    .brand-name {
        font-size: 1.8em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .concept-grid,
    .features-grid,
    .products-grid,
    .steps,
    .benefits-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .product-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
}