
/* ======================== faq 2 ================================== */

.mtp-margin {
    position: relative;
    margin: 75px 0;
}
.color-full-border-how {
    border: 20px solid transparent;
    border-radius: 30px;
    background: linear-gradient(var(--secondary-color), var(--dy-nav)) padding-box, linear-gradient(45deg, var(--dy-nav), var(--dy-copy), var(--dy-hero1), var(--primary-color), var(--dy-footer), var(--primary-color)) border-box;
}
.mtp-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.mtp-header h3 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -1.25px;
    color: #171717;
    margin-bottom: 0;
    margin-top: 20px;
}
.mtp-header p {
    font-size: 15px;
    margin-bottom: 0;
    color: #7b7b7b;
    max-width: 850px;
    white-space: pre-line;
}
.cost-factors-component {
    max-width: 1400px;
    width: 100%;
    background: linear-gradient(180deg, var(--dy-footer), var(--dy-hero1));
    border-radius: 20px;
    border: 1px solid #e4f6ed;
    padding: 35px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.cost-factors-component .main-content {
    display: flex;
    gap: 30px;
}
.cost-factors-component .image-placeholder {
    flex: 1;
    position: sticky;
    top: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    max-width: 480px;
    max-height: 480px;
    margin: 0 auto;
}
.cost-factors-component .feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}
.cost-factors-component .feature-accordion {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 5px;
    overflow: auto;
    max-height: 450px;
    padding: 0 10px 0 0;
}
.accordion-item {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125);
}
.cost-factors-component .accordion-item .accordion-header {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #f5f8ff;
    border: 1px solid #d7def4;
    padding: 15px 10px;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}
.cost-factors-component .accordion-item .accordion-header:before {
    content: '';
    width: 4px;
    height: 60%;
    background: #3be395;
    border-radius: 0 5px 5px 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
}
.cost-factors-component .accordion-item .accordion-header h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    color: #171717;
}
.cost-factors-component .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, margin-top 0.5s ease-out;
}
.readmoreBtn {
    cursor: pointer;
}
.cost-factors-component:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 75px;
    background: linear-gradient(180deg, var(--dy-footer), var(--primary-color));
    -webkit-filter: blur(57px);
    filter: blur(57px);
    z-index: 1;
}

.details-area {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 25px 0px;
}
.details-area details {
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    border: 1px solid #cdd6f2;
    padding: 5px 0;
    background-color: #f6f9ff;
}
.details-area details summary {
    cursor: pointer;
    list-style: none;
    position: relative;
}
details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    list-style: none;
    user-select: none;
    padding: 15px;
}
.details-area details summary:before {
    content: '';
    width: 5px;
    height: 60%;
    background: #3be395;
    border-radius: 0 5px 5px 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
}
.details-area details[open] summary h2, .details-area details[open] summary h3 {
    color: #3be395;
}
.details-area details summary h2, .details-area details summary h3 {
    font-size: 18px;
    color: #171717;
    margin-bottom: 0;
}
.details-area details>div {
    font-size: 14px;
    color: #171717;
    padding: 0 10px 10px 10px;
}
.details-area details p {
    padding: 15px;
    margin-bottom: 0;
    border: none;
}
.mtp-margin .glow {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 50%;
    height: 100px;
    background: radial-gradient(circle at 30% 107%, #6cef59 0%, #4dd672 5%, #40cb7d 45%, #0fa352 60%, #3ac782 90%);
    border-radius: 100px;
    filter: blur(100px);
    opacity: .3;
    z-index: -1;
}
.cost-factors-component .accordion-item.active .accordion-content {
    max-height: max-content;
    margin-top: 8px;
    padding:10px;
}