.resultMain {
    padding: 15px 12rem;
}

.box {
    background-color: white;
    border-radius: 16px;
    margin-bottom: 10px;
    border-style: none;
    margin-top: 0;
}

b {
    color: #525866;
}

.asideBox {
    background-color: white;
    border-radius: 16px;
    margin-bottom: 16px;
    padding: 16px;
}

.title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #31353F;
    margin-bottom: 30px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 15px;
}

.step {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    background-color: #F6F8FA;
    color: #20232D;
    width: 30px;
    height: 30px;
    border: 1px solid #CDD0D5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-content {
    flex: 1;
    line-height: 1.6;
    color: #555;
    font-size: 14px;
}

.step-title {
    font-weight: bold;
    color: #525866;
    margin-bottom: 5px;
    font-size: 15px;
}

.step-description {
    color: #868C98;
    font-size: 15px;
}

.image-container {
    text-align: center;
    padding: 20px;
}

.main-image {
    max-width: 100%;
    border-radius: 15px;
}

.text-section {
    text-align: right;
    padding: 0 0 25px 0;
}

.section-first-title {
    color: #31353F;
    margin: 0;
    padding: 10px 0;
}

.how-to-title {
    margin: 0;
    padding: 5px 0;
}

.steps-container {
    margin: 25px 0;
}

.secondary-image {
    max-width: 100%;
    border-radius: 15px;
}

.sidebar-image {
    max-width: 50%;
}

.request-button {
    height: 2.6rem;
}

.terms-header {
    background-color: #F6F8FA;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 13px;
    transition: background-color 0.3s ease;
}

.terms-header:hover {
    background-color: #dee2e6;
}

.terms-title {
    font-size: 16px;
    font-weight: bold;
    color: #495057;
    margin: 0;
}

.collapse-arrow {
    color: #20232D;
    transition: transform 0.3s ease;
}

.collapse-arrow.expanded {
    transform: rotate(180deg);
}

.terms-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    text-align: right;
}

.terms-content.expanded {
    max-height: 2000px;
    padding: 30px;
    background: #F6F8FA;
}

.section {
    margin-bottom: 25px;
}

.section-title {
    font-weight: bold;
    color: #2981EC;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-content {
    color: #2981EC;
    font-size: 14px;
    line-height: 1.8;
}

.bullet-point {
    margin-bottom: 15px;
    padding-right: 15px;
    position: relative;
}

.bullet-point::before {
    content: "•";
    color: #2981EC;
    font-size: 16px;
    position: absolute;
    right: 0;
    top: 0;
}

.sub-bullet {
    margin-bottom: 10px;
    padding-right: 30px;
    position: relative;
}

.sub-bullet::before {
    content: "◦";
    color: #2981EC;
    font-size: 14px;
    position: absolute;
    right: 15px;
    top: 2px;
}

.highlight {
    background-color: #e3f2fd;
    padding: 2px 4px;
    border-radius: 3px;
}

.note {
    background-color: #f8f9fa;
    border-right: 4px solid #007bff;
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 4px 4px 0;
}

.first-section-description {
    color: #868C98;
    font-size: 15px
}

@media (max-width: 992px) {
    .resultMain {
        padding: 5px 0;
    }

    .asideBox {
        background-color: white;
        position: fixed;
        bottom: 0px;
        left: 0px;
        width: 100%;
        padding: 5px 15px;
        z-index: 10;
        margin: 0;
        border-radius: 10px 10px 0 0;
    }

    .terms-title {
        font-size: 14px;
    }

    .step-title {
        font-size: 14px;
    }

    .step-description {
        font-size: 14px;
    }

    .first-section-description {
        font-size: 14px
    }
}
