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

body {
    font-family: 'Rubik', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #11111D;
}

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

/* Header Styles */
header {
    background: #11111D;
    padding: 20px 0;
}
header .container{
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.logo-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 18px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background-color: #11111D;
}

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

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    background: linear-gradient(45deg, #4f46e5, #ec4899);
}

/* Fitness Advice Section */
.fitness-advice {
    padding: 80px 0;
    background-color: #11111D;
}

.advice-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.advice-text {
    order: 1;
}

.advice-image {
    order: 2;
}

.tips-grid {
    order: 3;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.advice-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    background: linear-gradient(45deg, #4f46e5, #ec4899);
}

.advice-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

.advice-text > p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.tips-section {
    margin-top: 60px;
}

.tip-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.tip-item p {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.8;
}

/* Expert Section */
.expert-section {
    padding: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
}

.expert-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    height: 100%;
}

.expert-text {
    padding: 80px 60px 80px 0;
}

.expert-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
}

.expert-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
    color: #fff;
}

blockquote {
    font-style: italic;
    font-size: 18px;
    line-height: 1.5;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border-left: none;
    color: #fff;
    margin: 0;
}

.expert-image {
    height: 500px;
    overflow: hidden;
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* Community Section */
.community {
    padding: 80px 0;
    background-color: #11111D;
}

.community h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.community-subtitle {
    text-align: center;
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial {
    background-color: #191929;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
    color: #fbbf24;
    font-size: 16px;
    margin-bottom: 16px;
}

.testimonial h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
    font-style: italic;
}

/* Home Gym Section */
.home-gym {
    padding: 80px 0;
    background-color: #11111D;
}

.home-gym h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.exercises-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.exercise {
    background-color: #191929;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.exercise h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.exercise p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.8;
}

.exercises-note,
.exercises-motivation {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Rubik', sans-serif;

    border-radius: 12px;
background: linear-gradient(85deg, #7C72FF 0%, #5246FC 100%);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

/* Footer */
footer {
    background-color: #11111D;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.7;
}

/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #0f0f23;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.btn-accept {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: 'Rubik', sans-serif;
}

.btn-customize,
.btn-decline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Rubik', sans-serif;
}

.btn-customize:hover,
.btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-privacy {
    font-size: 14px;
    opacity: 0.7;
}

.cookie-privacy a {
    color: #667eea;
    text-decoration: underline;
}

/* Mobile Cookie Popup */
.cookie-popup-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-popup-mobile.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content-mobile {
    background-color: #0f0f23;
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 400px;
    margin: 50px auto;
}

.cookie-content-mobile h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
    text-align: center;
}

.cookie-content-mobile p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
    text-align: center;
}

.cookie-buttons-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.btn-accept-mobile {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Rubik', sans-serif;
}

.btn-customize-mobile,
.btn-decline-mobile {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Rubik', sans-serif;
}

.cookie-privacy-mobile {
    font-size: 12px;
    opacity: 0.7;
    text-align: center;
}

.cookie-privacy-mobile a {
    color: #667eea;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 40px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 16px;
    }

    /* Advice Section Mobile */
    .fitness-advice {
        padding: 60px 0;
    }

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

    .advice-text {
        order: 1;
        text-align: center;
    }

    .advice-image {
        order: 2;
    }

    .tips-grid {
        order: 3;
        gap: 24px;
        margin-top: 0;
    }

    .advice-text h2 {
        font-size: 28px;
    }

    /* Expert Section Mobile */
    .expert-section {
        padding: 60px 0;
        min-height: auto;
    }

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

    .expert-text {
        padding: 0;
        text-align: center;
    }

    .expert-text h2 {
        font-size: 28px;
    }

    .expert-image {
        height: 300px;
    }

    blockquote {
        font-size: 16px;
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        border-left: 4px solid #fff;
    }

    /* Community Mobile */
    .community {
        padding: 60px 0;
    }

    .community h2 {
        font-size: 28px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial {
        padding: 24px;
    }

    /* Home Gym Mobile */
    .home-gym {
        padding: 60px 0;
    }

    .home-gym h2 {
        font-size: 28px;
    }

    .exercises-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .exercise {
        padding: 20px;
    }

    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        gap: 20px;
    }

    /* Cookie Popup Mobile */
    .cookie-popup {
        display: none;
    }

    .cookie-popup-mobile {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .advice-text h2,
    .expert-text h2,
    .community h2,
    .home-gym h2 {
        font-size: 24px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .testimonial {
        padding: 20px;
    }

    .exercise {
        padding: 16px;
    }
}

.privacy{
    padding: 60px 0px;
}
.privacy h2{
    color: #FFF;
                font-family: Rubik;
                font-size: 48px;
                font-style: normal;
                font-weight: 500;
                line-height: normal; margin-bottom: 20px;
}
.privacy ul{
   margin-left: 20px;
}