body{
    background: rgb(20, 20, 20);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.nav-contain{
border-bottom:  1px solid #ffffff1a;
position: fixed;
background: rgb(20, 20, 20);

}
.hero {
    width: 100%;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.hero-container {
    max-width: 1200px;
    text-align: center;
    padding: 2rem;
}

.hero-image {
    max-width: 100%;
    height: 70px;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.hero-title {
    font-size: 3.75rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: white; 
}

.hero-text {
    font-size: 18px;
    margin-bottom: 2rem;
    color: rgb(130 129 121);
}

.cta-button {
    background-color: #e50914;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #f40612;
}

/* benefits css */
.benefits {
    padding: 5rem 2rem;
    /* background-color: #000; */
    color: #fff;
}

.benefits-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: bold;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    /* padding: 1rem; */
}

.benefit-box {
    background-color: rgb(26, 26, 26);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 2.5rem;
    color: #e50914;
    margin-bottom: .5rem;
}

.benefit-box h4 {
    font-size: 1.25rem !important;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.benefit-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgb(130 129 121);
}

/* faq section  */
.faq {
    padding: 5rem 2rem;
    color: #fff;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    /* color: #e50914; */
    font-weight: bold;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: .5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: white;
    background: #fafaf880;
}

.faq-question.active {
    color: white;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom:0;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #fafaf880;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    
    
}

.faq-answer.active {
    max-height: 200px;
    border: 1px solid white;
    border-top: 0px !important;

}
.faq-answer p {
    padding: 1.5rem;
    color: white;
    line-height: 1.6;
}

/* cta section  */
.cta-section {
    padding: 5rem 2rem;
    color: #fff;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.cta-text {
    font-size: 16px;
    margin-bottom: 2.5rem;
    color: #fffc;
    line-height: 1.6;
}

/* footer section  */
.footer {
    padding: 2rem;
    border-top: 1px solid #ffffff1a;
}

.footer-content {
  
    text-align: center;
}

.footer-logo {
    height: 30px;
    width: auto;
}

.footer-text {
    color: #ffffffb3;
    font-size: 0.9rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    .benefits-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-box {
        padding: 1rem;
    }
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        height: 24px;
    }
    
    .footer-text {
        font-size: 0.8rem;
    }
}