/* Flow Section & CTA Styles */

/* 1. Overall Layout & Flow Section */
.flow {
    padding-bottom: 0;
    /* Removing bottom padding if any, to let margins handle spacing */
    background-color: #fff;
    border: none !important;
}

.flow-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.flow-header {
    text-align: center;
    margin-bottom: 50px;
}

.flow-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8a10a0;
    display: inline-block;
}

/* Flow Steps Rows */
.flow-rows {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px;
    /* Significant spacing before CTA */
}

.flow-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

/* Left Column (Label) */
.flow-label-box {
    width: 30%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #000;
    border: 2px solid #8a10a0;
    border-radius: 8px;
    /* Optional rounded corners */
}

/* Right Column (Description) */
.flow-desc-box {
    width: 70%;
    background-color: #fff;
    border: 1px solid #6c3cd2;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    /* Vertically center content if needed, currently mainly text */
    border-radius: 8px;
}

.flow-desc-text {
    text-align: left;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.flow-desc-list {
    margin-top: 10px;
    padding-left: 20px;
    list-style-type: disc;
    /* Or none if preferred, bullet points requested */
}

.flow-desc-list li {
    margin-bottom: 5px;
}


/* 2. CTA Banner (Bottom Gray Box) */
.flow-cta-banner {
    background-color: #f5f0ff;
    /* Soft lavender background */
    padding: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: none !important;
    box-shadow: none !important;
}

.flow-cta-content {
    flex: 0 0 65%;
    /* Width approx 65% */
    text-align: left;
}

.flow-cta-headline {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.flow-cta-body p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 30px;
    /* Added spacing after text */
}

.flow-cta-button-col {
    flex: 0 0 35%;
    /* Width approx 35% */
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-flow-cta {
    display: inline-block;
    background-color: #551A8B;
    /* Vivid Blue/Purple */
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 18px 50px;
    border-radius: 50px;
    /* Pill shape */
    transition: opacity 0.3s, transform 0.2s;
    white-space: nowrap;
}

.btn-flow-cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: #fff;
}


/* 3. Mobile Responsiveness */
@media (max-width: 768px) {
    .flow-row {
        flex-direction: column;
        gap: 0;
    }

    .flow-label-box {
        width: 100%;
        margin-bottom: 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        padding: 15px;
    }

    .flow-desc-box {
        width: 100%;
        border-top: none;
        /* Merge look */
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    /* CTA Banner Mobile */
    .flow-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .flow-cta-content {
        flex: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .flow-cta-button-col {
        flex: 100%;
        width: 100%;
    }

    .btn-flow-cta {
        width: 100%;
        max-width: 300px;
        padding: 15px 20px;
    }
}