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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}
svg {
max-width: 100%;}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 183, 255, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #00b7ff;
}

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

.nav-menu {
    display: flex;
    gap: 30px;
}

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

.nav-link:hover {
    color: #00b7ff;
    text-shadow: 0 0 10px rgba(0, 183, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00b7ff, #ff8c00);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #00b7ff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00b7ff, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 183, 255, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #cccccc;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #00b7ff, #ff8c00);
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 183, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 183, 255, 0.5);
    filter: brightness(1.1);
}

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

.section-dark {
    background: linear-gradient(135deg, rgba(0, 183, 255, 0.05), rgba(255, 140, 0, 0.05));
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 183, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

/* About Section */
.about-content p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 183, 255, 0.2);
    border-color: rgba(0, 183, 255, 0.5);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    display: block;
}

.feature h3 {
    color: #00b7ff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature p {
    color: #cccccc;
    line-height: 1.6;
}

/* Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.achievement {
    text-align: center;
    padding: 30px 20px;
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #00b7ff, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.achievement-text {
    color: #cccccc;
    font-size: 1.1rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

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

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.2);
    border-color: rgba(255, 140, 0, 0.5);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
}

.service h3 {
    color: #ff8c00;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service p {
    color: #cccccc;
    line-height: 1.6;
}

/* Offers Section */
.offers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.offer {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 183, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.offer-popular {
    border-color: rgba(255, 140, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.offer:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 183, 255, 0.3);
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #ff8c00, #00b7ff);
    color: #000000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.offer h3 {
    color: #00b7ff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.offer p {
    color: #cccccc;
    margin-bottom: 20px;
}

.offer ul {
    list-style: none;
    margin-bottom: 30px;
}

.offer li {
    color: #cccccc;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.offer li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00b7ff;
    font-weight: bold;
}

.offer-price {
    font-size: 2rem;
    font-weight: bold;
    color: #ff8c00;
    margin-bottom: 20px;
}

.offer-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #00b7ff, #ff8c00);
    color: #000000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.offer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 183, 255, 0.3);
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

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

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 183, 255, 0.2);
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.star {
    width: 20px;
    height: 20px;
}

.review p {
    color: #cccccc;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.review-author {
    color: #00b7ff;
    font-weight: bold;
}

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

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

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.contact-item h3 {
    color: #00b7ff;
    margin-bottom: 5px;
}

.contact-item p {
    color: #cccccc;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 183, 255, 0.2);
}

.contact-form h3 {
    color: #ff8c00;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 183, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00b7ff;
    box-shadow: 0 0 10px rgba(0, 183, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #00b7ff, #ff8c00);
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 183, 255, 0.3);
}

/* Footer */
.footer {
    background: #050505;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0, 183, 255, 0.3);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #00b7ff;
}

.footer-section h4 {
    color: #ff8c00;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

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

.footer-links a:hover {
    color: #00b7ff;
}

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

.social-links a {
    display: block;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.social-links svg {
    width: 100%;
    height: 100%;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 183, 255, 0.3);
    padding: 20px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.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: #00b7ff;
    margin-bottom: 5px;
}

.cookie-text p {
    color: #cccccc;
    font-size: 0.9rem;
}

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

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

.cookie-accept {
    background: linear-gradient(45deg, #00b7ff, #ff8c00);
    color: #000000;
}

.cookie-necessary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(0, 183, 255, 0.3);
}

.cookie-settings {
    background: transparent;
    color: #00b7ff;
    border: 1px solid #00b7ff;
}

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1002;
}

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

.cookie-modal-content {
    background: #1a1a1a;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80%;
    overflow-y: auto;
    border: 1px solid rgba(0, 183, 255, 0.3);
}

.cookie-modal-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    color: #00b7ff;
}

.cookie-modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.cookie-category {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}

.cookie-slider {
    width: 50px;
    height: 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    position: relative;
    transition: background 0.3s ease;
}

.cookie-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 21px;
    height: 21px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked + .cookie-slider {
    background: #00b7ff;
}

.cookie-toggle input[type="checkbox"]:checked + .cookie-slider::before {
    transform: translateX(25px);
}

.cookie-toggle input[type="checkbox"]:disabled + .cookie-slider {
    background: #666666;
}

.cookie-info h4 {
    color: #ff8c00;
    margin-bottom: 5px;
}

.cookie-info p {
    color: #cccccc;
    font-size: 0.9rem;
}

.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(0, 183, 255, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

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

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

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .offers-container {
        grid-template-columns: 1fr;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-content h1 {
    color: #00b7ff;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.legal-content h2 {
    color: #ff8c00;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: #00b7ff;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.legal-content h4 {
    color: #ff8c00;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.legal-content p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul, .legal-content ol {
    color: #cccccc;
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-content a {
    color: #00b7ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #ff8c00;
}

.cookie-settings-button {
    text-align: center;
    margin-top: 40px;
}

/* Thanks Page */
.thanks-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #00b7ff;
    margin-bottom: 30px;
}

.thanks-message {
    margin-bottom: 50px;
}

.thanks-message p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    color: #ff8c00;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

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

.step {
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step h3 {
    color: #00b7ff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.contact-info h3 {
    color: #ff8c00;
    margin-bottom: 15px;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item .contact-icon {
    width: 20px;
    height: 20px;
}

.contact-item span {
    color: #00b7ff;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-outline {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #00b7ff;
    text-decoration: none;
    border: 2px solid #00b7ff;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-outline:hover {
    background: #00b7ff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 183, 255, 0.3);
}

/* Principles Page */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

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

.principle:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 183, 255, 0.2);
    border-color: rgba(0, 183, 255, 0.5);
}

.principle-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

.principle h3 {
    color: #00b7ff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.principle p {
    color: #cccccc;
    line-height: 1.6;
}

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

.tip {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
}

.tip:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.2);
}

.tip-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff8c00, #00b7ff);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.tip-content h3 {
    color: #ff8c00;
    margin-bottom: 10px;
}

.tip-content p {
    color: #cccccc;
    line-height: 1.6;
}

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

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

.nutrient:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 183, 255, 0.2);
}

.nutrient-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.nutrient h3 {
    color: #ff8c00;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.nutrient p {
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.nutrient ul {
    list-style: none;
    padding: 0;
}

.nutrient li {
    color: #cccccc;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.nutrient li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00b7ff;
    font-weight: bold;
}

.contact-cta {
    text-align: center;
    padding: 60px 20px;
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

.contact-cta h2 {
    color: #00b7ff;
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-cta p {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Recipe Filtering */
.recipe-categories {
    margin-bottom: 40px;
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #cccccc;
    border: 1px solid rgba(0, 183, 255, 0.3);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-btn.active,
.category-btn:hover {
    background: linear-gradient(45deg, #00b7ff, #ff8c00);
    color: #000000;
    border-color: transparent;
}

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

.recipe-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 183, 255, 0.2);
    transition: all 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 183, 255, 0.2);
}

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

.recipe-image svg {
    width: 100%;
    height: 100%;
}

.recipe-content {
    padding: 30px;
}

.recipe-content h3 {
    color: #00b7ff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.recipe-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.prep-time,
.difficulty {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #cccccc;
    font-size: 0.9rem;
}

.meta-icon {
    width: 16px;
    height: 16px;
}

.recipe-content > p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.recipe-ingredients,
.recipe-instructions {
    margin-bottom: 20px;
}

.recipe-ingredients h4,
.recipe-instructions h4 {
    color: #ff8c00;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.recipe-ingredients ul,
.recipe-instructions ol {
    color: #cccccc;
    padding-left: 20px;
}

.recipe-ingredients li,
.recipe-instructions li {
    margin-bottom: 5px;
    line-height: 1.5;
}

/* Subscription Page */
.subscription-intro {
    text-align: center;
    margin-bottom: 60px;
}

.intro-content h2 {
    color: #00b7ff;
    margin-bottom: 20px;
    font-size: 2rem;
}

.intro-content > p {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit {
    text-align: center;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.benefit h3 {
    color: #ff8c00;
    margin-bottom: 10px;
}

.benefit p {
    color: #cccccc;
    font-size: 0.9rem;
}

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

.package {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(0, 183, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.package:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 183, 255, 0.2);
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #ff8c00, #00b7ff);
    color: #000000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

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

.package-header h3 {
    color: #00b7ff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff8c00;
}

.period {
    color: #cccccc;
    font-size: 1rem;
}

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

.package-features li {
    color: #cccccc;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00b7ff;
    font-weight: bold;
}

.subscription-form .form-group {
    margin-bottom: 15px;
}

.subscription-form input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 183, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
}

.subscription-form input::placeholder {
    color: #888888;
}

.package-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #00b7ff, #ff8c00);
    color: #000000;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 183, 255, 0.3);
}

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

.step {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00b7ff, #ff8c00);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #00b7ff;
    margin-bottom: 10px;
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
}

.faq-section h2 {
    text-align: center;
    color: #00b7ff;
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.faq-item h3 {
    color: #ff8c00;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 20px 15px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

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

    .contact-details {
        flex-direction: column;
        gap: 15px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .tips-container {
        grid-template-columns: 1fr;
    }

    .tip {
        flex-direction: column;
        text-align: center;
    }

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

    .category-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

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

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

    .process-steps {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-container {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }

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

    .achievements-grid, [class*="-grid"] {
        grid-template-columns: 1fr;
    }

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

    .thanks-content h1 {
        font-size: 1.8rem;
    }
    body {
    word-break: break-word;}
}