.faq-page {
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    padding: 80px 20px;
    color: #fff;
}

.robot-img {
    width: 150px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

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

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 50px auto;
    text-align: left;
    padding: 0 20px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    background: #fff;
    color: #333;
    text-align: left;
    padding: 15px 20px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    outline: none;
}

.faq-question.active {
    background: #ff9a9e;
    color: #fff;
}

.faq-answer {
    display: none;
    background: #fff;
    padding: 15px 20px;
    font-size: 0.95rem;
    color: #555;
}

/* CTA Section */
.cta-section {
    background: #ff9a9e;
    color: white;
    padding: 50px 20px;
    border-radius: 30px 30px 0 0;
    margin-top: 50px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .robot-img {
        width: 100px;
    }
}
