/* Process Page Specific Styles */
.procedure-process {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.procedure-process-title {
    text-align: center;
    font-size: 32px;
    color: #095f70;
    margin-bottom: 50px;
    font-weight: bold;
}

.procedure-process-steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.procedure-process-steps-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.procedure-process-steps-step-number {
    background: #095f70;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.procedure-process-steps-step-content {
    flex: 1;
}

.procedure-process-steps-step-content-title {
    font-size: 24px;
    color: #095f70;
    margin-bottom: 15px;
    font-weight: bold;
    border-bottom: 2px solid #ececec;
}

.procedure-process-steps-step-content-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.procedure-process-steps-step-content-tip {
    background: #f8f9fa;
    border-left: 4px solid #ffc11c;
    padding: 15px;
    margin: 15px 0;
    font-size: 14px;
    line-height: 1.6;
}

.procedure-process-steps-step-content-tip strong {
    color: #095f70;
}

.procedure-process-steps-step-content-image {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 10px 0;
}

.procedure-process-steps-step-content-caution {
    color: #d32f2f;
    font-weight: bold;
    margin: 10px 0;
}

.procedure-process-steps-step-content-policylist {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.procedure-process-steps-step-content-policylist-item {
    position: relative;
    padding: 8px 0 8px 25px;
    line-height: 1.6;
    color: #333;
}

.procedure-process-steps-step-content-policylist-item:before {
    content: "•";
    position: absolute;
    left: 0px;
    color: #095f70;
    top: 7px;
    font-weight: bold;
    font-size: 18px;
}

/* Responsive Design */
@media screen and (max-width: 767px) {
    .procedure-process {
        padding: 20px 15px;
    }

    .procedure-process-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .procedure-process-steps-step {
        flex-direction: column;
        gap: 20px;
    }

    .procedure-process-steps-step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .procedure-process-steps-step-content-title {
        font-size: 20px;
    }

    .procedure-process-steps-step-content-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .procedure-process-steps-step-content-policylist-item {
        padding: 6px 0 6px 20px;
        font-size: 14px;
    }

    .procedure-process-steps-step-content-policylist-item:before {
        left: 5px;
        font-size: 16px;
    }
}