/* ==========================================
   TRAINING & ACCREDITATION PAGE SPECIFIC STYLES
   TSB Protection Services
========================================== */

/* Override CTA Section to White for better separation */
.training-page .cta-section {
    background: ##F0F2F5;
}

/* Optional: Add a subtle border-top to the CTA for separation */
.training-page .cta-section {
    background: ##F0F2F5;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ------------------------------------------
   TRAINING PROCESS SECTION
------------------------------------------ */
.training-process-section {
    padding: clamp(48px, 6vw, 80px) 0;
    background: #ffffff;
}

.training-process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.training-process-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.training-process-content p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.process-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    width: 36px;
    height: 36px;
    background: rgba(214, 154, 59, 0.12);
    color: var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.process-step h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.process-step p {
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.5;
}

.training-process-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: #f5f5f5;
}

.training-process-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ------------------------------------------
   WHO WE TRAIN SECTION
------------------------------------------ */
.who-we-train-section {
    padding: clamp(48px, 6vw, 80px) 0;
    background: #F0F2F5;
}

.who-we-train-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.who-we-train-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.who-we-train-content p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

.train-list {
    list-style: none;
    padding: 0;
}

.train-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.85rem;
    color: var(--color-text);
}

.train-list li:last-child {
    border-bottom: none;
}

.train-list li i {
    color: var(--color-primary);
    width: 22px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.who-we-train-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: #f5f5f5;
}

.who-we-train-image img {
    width: 100%;
    height: auto;
    display: block;
}

.why-choose-service-section {
    background: #ffffff;
}

/* ------------------------------------------
   RESPONSIVE BREAKPOINTS
------------------------------------------ */

/* Tablet portrait */
@media (max-width: 991px) {
    .training-process-grid,
    .who-we-train-grid {
        gap: 2rem;
    }
    
    .process-steps {
        gap: 1rem;
    }
}

/* Mobile landscape */
@media (max-width: 768px) {
    .training-process-grid,
    .who-we-train-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .training-process-image,
    .who-we-train-image {
        order: -1;
    }
    
    .training-process-content h2 {
        font-size: 1.2rem;
    }
    
    .training-process-content p {
        font-size: 0.85rem;
    }
    
    .process-step h4 {
        font-size: 0.85rem;
    }
    
    .process-step p {
        font-size: 0.75rem;
    }
    
    .who-we-train-content h2 {
        font-size: 1.2rem;
    }
    
    .who-we-train-content p {
        font-size: 0.85rem;
    }
    
    .train-list li {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* Mobile portrait */
@media (max-width: 640px) {
    .process-step {
        gap: 0.75rem;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .process-step h4 {
        font-size: 0.8rem;
    }
    
    .train-list li {
        font-size: 0.75rem;
        gap: 0.6rem;
    }
    
    .train-list li i {
        width: 18px;
        font-size: 0.75rem;
    }
}