/* Program Fees Block Styles */
.it-program-fees-block {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #0F1C2E;
    /* Deep Navy Blue */
    color: #FFFFFF;
    max-width: 1000px;
    margin: 40px auto;
    padding: 60px 20px;
    border-radius: 8px;
    /* Optional rounded corners */
    position: relative;
    /* Decorative elements (adjust as needed to match exact image border styles) */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.it-pf-header {
    text-align: center;
    margin-bottom: 60px;
}

.it-pf-header h2 {
    font-family: 'Cinzel', serif;
    /* Or similar serif font */
    font-size: 3rem;
    font-weight: 400;
    margin: 0;
    color: #D6B25E;
    /* Lite Gold/Beige */
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Course Cards */
.it-pf-card {
    background-color: #FFFFFF;
    color: #333333;
    margin-bottom: 25px;
    padding: 30px 40px;
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    /* Desktop: Side by Side */
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Left side of card: Title & Time */
.it-pf-card-info {
    flex: 0 0 45%;
}

.it-pf-title {
    font-size: 1.6rem;
    color: #C19950;
    /* Gold-ish text for title based on image */
    margin-bottom: 8px;
    font-weight: 500;
}

.it-pf-time {
    font-size: 1.1rem;
    color: #333;
    font-weight: 400;
}

/* Right side of card: Pricing details */
.it-pf-card-price {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Spacing between Full and Half rows */
    font-size: 1rem;
    line-height: 1.5;
}

.it-pf-price-row {
    display: block;
}

.it-pf-price-type {
    display: block;
    margin-bottom: 2px;
}

.it-pf-price-val {
    display: block;
    font-weight: 500;
}

/* Footer Text Area */
.it-pf-footer {
    text-align: center;
    margin-top: 60px;
    color: #FFFFFF;
    line-height: 2.2;
    font-size: 1rem;
    font-weight: 400;
}

.it-pf-footer p {
    margin-bottom: 25px;
}

.it-pf-brand {
    display: block;
    margin-top: 40px;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: #8899AA;
    /* Muted text color */
    letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 768px) {
    .it-pf-header h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .it-pf-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }

    .it-pf-card-info {
        margin-bottom: 20px;
        flex: none;
        width: 100%;
    }

    .it-pf-card-price {
        width: 100%;
    }

    .it-pf-title {
        font-size: 1.4rem;
    }
}