/* Business Content Block Styles */
.it-business-block {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    max-width: 1000px;
    margin: 40px auto;
    background-color: #fff;
}

/* =========================================
   Header Section (Image 2)
   ========================================= */
.it-biz-header-wrap {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: #0F1C2E;
    /* Fallback to theme dark */
    overflow: hidden;
    margin-bottom: 40px;
}

.it-biz-header-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.8;
    /* Dim background image slightly */
}

.it-biz-header-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(15, 28, 46, 0.7);
    /* Dark semi-transparent overlay */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    z-index: 2;
}

.it-biz-logo-text {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: #D6B25E;
    /* Gold */
    margin-bottom: 15px;
    line-height: 1.2;
}

.it-biz-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
}

/* =========================================
   Description & Pricing (Image 2)
   ========================================= */
.it-biz-intro {
    padding: 0 20px;
    text-align: center;
    margin-bottom: 50px;
    background-color: #fff;
    /* Ensure white bg */
    color: #333;
    /* Ensure text is dark on white bg */
}

.it-biz-desc-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #333;
}

.it-biz-price-box {
    background: linear-gradient(to bottom, #E6E6E6, #D9D9D9);
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.it-biz-price-title {
    background-color: #555;
    /* Darker grey for better white text contrast */
    color: #fff;
    display: inline-block;
    padding: 5px 30px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.it-biz-price-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #222;
    /* Darker for readability */
}

.it-biz-price-small {
    font-size: 0.9rem;
    color: #444;
    margin-top: 15px;
}

/* =========================================
   Training Examples (Image 1)
   ========================================= */
.it-biz-examples-section {
    padding: 40px 20px;
    margin-top: 60px;
    background-color: #fff;
    /* Ensure white bg */
}

.it-biz-examples-header {
    display: flex;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.it-biz-ex-logo {
    width: 60px;
    margin-right: 15px;
    display: none;
}

.it-biz-ex-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.it-biz-example-item {
    margin-bottom: 50px;
}

.it-biz-ex-head {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1F2A44;
    /* Dark Navy */
    /* Navy Blueish */
    margin-bottom: 15px;
}

.it-biz-english {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.it-biz-label {
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.it-biz-japanese {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .it-biz-header-wrap {
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .it-biz-header-bg {
        height: 200px;
    }

    .it-biz-header-overlay {
        position: relative;
        width: 100%;
        top: 0;
        clip-path: none;
        padding: 30px;
    }

    .it-biz-title {
        font-size: 1.5rem;
    }

    .it-biz-desc-text {
        text-align: left;
    }

    .it-biz-price-box {
        padding: 20px;
    }
}