.hero {
    text-align: center;
    padding: 5rem;
    background: linear-gradient(180deg, #f2f6fe, white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 2;
}

.hero1 {
    text-align: center;
    padding: 2rem;
    background-color: var(--surface);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 50%;
    margin-left: 25%;
    margin-top: 5%;
    line-height: 1.6;
    background: linear-gradient(180deg, #f2f6fe, white);
}

.hero1 img {
    width: 80px;
    height: 80px;
    background-color: blue;
    padding: 1%;
    border-radius: 50px;
}

#who {
    margin-top: 1%;
    font-size: 28px;
    text-transform: capitalize;
    padding: 10px;
}

.hero1 p {
    font-size: 16px;
    margin-top: 1%;
    color: grey;
}

.hero2 {
    display: flex;
    justify-content: space-around;
    margin-top: 3%;
    line-height: 1.6;
    width: 80%;
    margin-left: 10%;
}

.hero2 div {
    width: 45%;
    background: linear-gradient(45deg, #f2f6fe, white);
    padding: 2%;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.hero2 div h4 {
    font-size: 20px;
    margin-bottom: 1%;
    text-transform: capitalize;
}
.hero2 div ul {
    list-style-type: disc;
    padding-left: 20px;
}
.hero2 div ul li {
    margin-top: 1%;
    font-size: 16px;
    color: grey;
}

/* Section styles */
.section {
    padding: 2rem 0;
    margin: 2rem 0;
}

.alt-bg {
    background-color: #f9f9f9;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.badge {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}

/* Steps styles */
.steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.step h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #333;
}

.step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* FAQ styles */
details {
    margin: 1rem 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

summary {
    padding: 1rem;
    background: linear-gradient(45deg, #f2f6fe, white);
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    border-bottom: 1px solid #ddd;
    transition: background 0.3s ease;
}

summary:hover {
    background: #e9ecef;
}

details p {
    padding: 1rem;
    margin: 0;
    background: white;
    color: #555;
    line-height: 1.6;
}

/* CTA styles */
.cta {
    text-align: center;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.cta h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.btn {
    background: white;
    color: #007bff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background: #f8f9fa;
    color: #0056b3;
}

/* Responsive design */
@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        gap: 1rem;
    }

    .step {
        min-width: auto;
    }

    .hero2 {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
    }

    .hero2 div {
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero1 {
        width: 100%;
        margin-left: 0;
    }
}
