/* Home section container */
#home {
    padding: 0 20px;
    text-align: center;
}

/* Hero Section */
#home h1 {
    font-size: 2.5rem;
    color: #333;
}

#home p {
    font-size: 1.2rem;
    color: #666;
}

/* Features Section */
#home .row {
    display: grid;
    gap: 2rem;
}

.feature-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon {
    font-size: 3rem;
    color: rgba(72, 186, 255, 0.8);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #777;
    font-size: 1rem;
}

/* Call to Action Button */
.cta-button {
    background-color: #007BFF;
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.cta-button i {
    margin-left: 8px;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    #home .row {
        grid-template-columns: 1fr;
    }
}
/* FAQ Section Styles */
.faq-section {
    margin: 40px 0;
    background-color: #f9fafc;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Button */
.faq-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.faq-button:hover {
    background-color: #edf2f7;
    border-color: #cbd5e0;
}

/* FAQ Icon */
.faq-icon {
    font-size: 22px;
    color: #3182ce;
    margin-right: 10px;
}

/* Toggle Icon */
.toggle-icon {
    font-size: 18px;
    color: #a0aec0;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
    display: none;
    padding: 15px 20px;
    background-color: #f7fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.5;
	margin-bottom: 12px;
}

/* Active State for FAQ Answer */
.faq-item.active .faq-answer {
    display: block;
}

/* FAQ Heading */
#home h2 {
    font-size: 36px;
    color: #2d3748;
    text-align: center;
    margin-bottom: 30px;
}

/* Home Container */
#home {
    text-align: center;
}

/* Button Styling */
.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #3182ce;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #2563eb;
}
.btn-primary:active {
    transform: scale(0.95);
}

/* Why Choose Section */
.why-choose .feature-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.feature-icon {
    font-size: 40px;
    color: #3182ce;
    margin-bottom: 12px;
}

/* How It Works */
.how-it-works .step-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.step-icon {
    font-size: 40px;
    color: #38a169;
    margin-bottom: 12px;
}

/* FAQ Section */
.faq-section {
    background-color: #f9fafc;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.faq-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: white;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    margin-bottom: 10px;
}
.faq-button:hover {
    background: #edf2f7;
}
.faq-icon {
    font-size: 22px;
    color: #3182ce;
    margin-right: 10px;
    display: flex;
    align-items: center;
}
.toggle-icon {
    font-size: 18px;
    color: #a0aec0;
    transition: transform 0.3s ease;
}
.faq-item.active .toggle-icon {
    transform: rotate(180deg);
}
.faq-answer {
    display: none;
    padding: 15px;
    background: #f7fafc;
    border-radius: 10px;
    font-size: 16px;
    border: 1px solid #e2e8f0;
    text-align: left;
}
.faq-item.active .faq-answer {
    display: block;
}
