/* Section 8: Training Details Styles */
.training-details-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
    padding: 40px 20px;
}

.training-details-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
}

/* Section Header */
.section-header {
    text-align: center;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a237e;
    margin-bottom: 0.4rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-header .subtitle {
    font-size: 1rem;
    color: #424242;
    font-weight: 500;
}

/* Details Content */
.details-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(63, 81, 181, 0.15);
}

.info-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card.duration .info-icon {
    background: rgba(63, 81, 181, 0.1);
    color: #3f51b5;
}

.info-card.mode .info-icon {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
}

.info-icon svg {
    width: 28px;
    height: 28px;
}

.info-content h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #616161;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content p {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a237e;
    margin: 0;
    line-height: 1.3;
}

/* Includes Section */
.includes-section {
    background: #fff;
    padding: 2rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.includes-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.includes-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #424242;
    font-weight: 500;
}

.include-item svg {
    width: 22px;
    height: 22px;
    color: #4caf50;
    flex-shrink: 0;
    stroke-width: 3;
}

/* Responsive Design */
@media (max-width: 900px) {
    .training-details-section {
        height: auto;
        min-height: 100vh;
        padding: 50px 20px;
    }

    .training-details-container {
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .details-content {
        gap: 1.5rem;
    }

    .info-cards {
        gap: 1.2rem;
    }

    .info-card {
        padding: 1.5rem 1.2rem;
    }

    .info-icon {
        width: 50px;
        height: 50px;
    }

    .info-icon svg {
        width: 26px;
        height: 26px;
    }

    .info-content h3 {
        font-size: 0.85rem;
    }

    .info-content p {
        font-size: 1rem;
    }

    .includes-section {
        padding: 1.5rem 1.5rem;
    }

    .includes-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .includes-list {
        gap: 0.9rem;
    }

    .include-item {
        font-size: 0.9rem;
    }

    .include-item svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 600px) {
    .training-details-section {
        padding: 40px 20px;
    }

    .training-details-container {
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header .subtitle {
        font-size: 0.9rem;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
    }

    .info-card {
        padding: 1.3rem 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .info-icon {
        width: 48px;
        height: 48px;
    }

    .info-icon svg {
        width: 24px;
        height: 24px;
    }

    .info-content h3 {
        font-size: 0.8rem;
    }

    .info-content p {
        font-size: 0.95rem;
    }

    .includes-section {
        padding: 1.3rem 1.2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .includes-section h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .includes-list {
        gap: 0.8rem;
    }

    .include-item {
        font-size: 0.85rem;
    }

    .include-item svg {
        width: 18px;
        height: 18px;
    }
}
