.mainsec {
    padding: 4rem 1rem 2rem 1rem;
    text-align: center;
    transition: all 0.5s ease;
    min-height: calc(100vh - 4rem);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.text1 {
    font-size: 3rem;
    color: #2d5d5d;
    margin-bottom: 1rem;

}

.para {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.para span {
    color: #2d5d5d;

}

/* --- Action Button --- */
.clickables {
    margin-top: 2.5rem;
}

.actionbtn {
    background-color: #faffff;
    color: #2d5d5d;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(45, 93, 93, 0.15);
    border-radius: 50px;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.actionbtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 93, 93, 0.25);
    border-color: #2d5d5d;
}

/* Arrow animation inside button */
.arrow-icon {
    transition: transform 0.4s ease;
}

.actionbtn.active1 .arrow-icon {
    transform: rotate(180deg);
}

/* --- Dropdown Container (The Magic Part) --- */
.steps-container {
    max-width: 800px;
    margin: 0 auto;
    /* Hidden state */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-20px);
    /* Smooth Transition */
    transition: max-height 0.6s ease-in-out, opacity 0.5s ease, transform 0.5s ease;
}

/* Visible state (Toggled via JS) */
.steps-container.open {
    max-height: 1000px;
    /* Large enough to fit content */
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 4rem;
}

/* --- Step Cards --- */
.step-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #2d5d5d;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.step-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.step-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: #484848;

    letter-spacing: 1px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d5d5d;
}

.step-desc {
    font-size: 1.5rem;
    color: #666;
    margin-left: 0;
    margin-top: 0.5rem;

    span {
        color: #2d5d5d;
    }
}

/* --- Decorative Background Elements --- */
.bg-decoration {
    position: absolute;
    z-index: -1;
    opacity: 0.1;
    width: 300px;
}

.bg-top-left {
    top: -50px;
    left: -50px;
    transform: rotate(45deg);
}

.bg-bottom-right {
    bottom: 0;
    right: 0;
}




/* feedbackstyle.css | http://127.0.0.1:5500/jiva_startup/beta/feedbackstyle.css */


.ctabtns {
  flex-direction: row;
}

.ctabtns {
    margin-top: 1rem;
    display: flex;

    .ctabtn {
        background-color: #faffff;
        font-family: 'Avenir Lite';
        margin: 2px 2rem 0 0.1rem;
        display: flex;
        justify-content: space-around;
        color: #2D5D5D;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px;
        border-radius: 11rem;
        width: 13rem;
        padding: 0.3rem 1rem;



        /* color: black;
                border: #484848 1px solid;
                border-radius: 0.4rem;
                width: 11rem;
                padding: 0.25rem; */
        transition: all 0.3s ease;

        .ctalogo {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 2.4rem;
        }

        .ctatext {

            display: flex;
            flex-direction: column;

            span {
                color: #484848
            }

            span:nth-child(1) {
                font-size: 0.8rem;
            }

            span:nth-child(2) {
                font-size: 0.9rem;
            }
        }
    }

    .ctabtn:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(45, 93, 93, 0.25);

        border-color: #2d5d5d;
    }
}
/* --- Mobile Responsiveness --- */
@media (max-width: 600px) {
    .text1 {
        font-size: 2.5rem;
    }

    .para {
        font-size: 1.1rem;
        width: 90%;
    }

    .store-btns {
        justify-content: center;
    }

    .step-card {
        text-align: center;
        border-left: none;
        border-top: 5px solid #2d5d5d;
    }

    .step-header {
        justify-content: center;
        flex-direction: column;
    }

}

@media (max-width: 600px) {
    .step-card {
        /* border-top: 5px solid #2d5d5d; */
        border-top: 3px solid #2d5d5d;
    }
    .step-card {
    /* padding: 1.5rem; */
    padding: 1rem;
}

.ctabtns {
    & .ctabtn {
        margin-top: 1rem;
    }

    /* margin-top: 1rem; */
    margin-top: 0rem;
    flex-direction: column;
    align-items: center;
}

.step-title {
    /* font-size: 1.5rem; */
    font-size: 1.2rem;
}

.step-desc {
    /* font-size: 1.5rem; */
    font-size: 1.2rem;
    text-align: start;
}
}

