/* --- Global Styles for this Page --- */
main {
    padding-top: 70px;
}

/* Page Header styles are loaded from its own component CSS file */

/* We reuse the pricing section component, so its styles are in its own CSS file.
   We can add specific overrides here if needed. */
main .pricing-section {
    padding-top: 60px;
}

/* --- How to Use Section --- */
.how-to-use-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}
.how-to-use-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.how-to-use-section .section-heading {
    text-align: center;
    margin-bottom: 50px;
}
.how-to-use-section .section-heading h2 {
    font-size: 2.5rem;
    color: #1E1E3C;
    margin-bottom: 10px;
}
.how-to-use-section .section-heading p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.step {
    text-align: center;
}
.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #f0eefc;
    border-radius: 12px;
    margin-bottom: 20px;
}
.step-icon i {
    font-size: 1.8rem;
    color: #7553DD;
}
.step h4 {
    font-size: 1.3rem;
    color: #1E1E3C;
    margin: 0 0 10px 0;
}
.step p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    .how-to-use-section .section-heading h2 {
        font-size: 2rem;
    }
}