/* Information Disclosure Page Styles */

.info-disclosure-content {
    width: 100%;
}

.info-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #252525;
    margin-bottom: 25px;
    line-height: 1.5;
}

.section-text {
    font-size: 17px;
    color: #454545;
    line-height: 1.9;
    word-break: keep-all;
    margin: 0;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list > li {
    font-size: 17px;
    color: #454545;
    line-height: 1.9;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    word-break: keep-all;
}

.info-list > li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #005770;
    font-weight: 700;
    font-size: 20px;
}

.sub-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    padding-left: 30px;
}

.sub-list li {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.sub-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #005770;
}

.text-link {
    color: #005770;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.text-link:hover {
    color: #004357;
    text-decoration: underline;
}

.back-line-box {
    background-color: #F9F9F9;
    border-radius: 8px;
    padding: 25px 35px 25px 35px;
    position: relative;
    border: 1px solid #EEE;
    overflow: hidden;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* Process Steps */
.process-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: #F8FBFB;
    border-radius: 8px;
    border-left: 4px solid #005770;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #005770;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: #252525;
    margin: 0 0 8px 0;
}

.step-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Contact Box */
.contact-box {
    background-color: #F8FBFB;
    border-radius: 8px;
    padding: 30px;
    margin-top: 20px;
}

.contact-item {
    font-size: 17px;
    color: #454545;
    line-height: 1.9;
    margin-bottom: 15px;
    word-break: keep-all;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    color: #252525;
    font-weight: 600;
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 1300px) {
    .section-title {
        font-size: 22px;
    }

    .section-text,
    .info-list > li {
        font-size: 16px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    .step-content p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .info-section {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .section-text,
    .info-list > li {
        font-size: 15px;
    }

    .info-list > li {
        margin-bottom: 12px;
        padding-left: 18px;
    }

    .sub-list {
        padding-left: 25px;
    }

    .sub-list li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .process-box {
        gap: 15px;
        margin-top: 25px;
    }

    .process-step {
        padding: 20px;
        gap: 15px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .step-content h3 {
        font-size: 17px;
    }

    .step-content p {
        font-size: 14px;
    }

    .contact-box {
        padding: 20px;
    }

    .contact-item {
        font-size: 15px;
        margin-bottom: 12px;
    }
}
