/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

/* Header/Hero Section */
.hero-section {
    background-color: #fff0f5; /* Light Pink */
    padding: 60px 20px;
    text-align: center;
    border-bottom: 2px solid #fce4ec;
}

.hero-section h1 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.2rem;
    color: #444;
}

.btn-demo {
    background-color: #ff4081; /* Pinkish-Red Button */
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-demo:hover {
    background-color: #000;
    color: #fff;
}

/* Content Section */
.content-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.content-container h2 {
    color: #000;
    font-size: 1.8rem;
    border-left: 5px solid #ff4081;
    padding-left: 15px;
    margin-bottom: 20px;
}

.content-container p {
    margin-bottom: 20px;
    text-align: justify;
}

/* FAQ Section */
.faq-section {
    background-color: #fafafa;
    padding: 50px 20px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h4 {
    color: #ff4081; /* Pink for Questions */
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #333;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 { font-size: 1.8rem; }
    .content-container h2 { font-size: 1.5rem; }
}