/* General Section Styles */
.training-section {
    padding: 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.training-section h2 {
    margin-bottom: 30px;
    color: #007bff;
}

/* Card Container Styles */
.training-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
	
}

.training-card {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
	margin-bottom: 40px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	height:200px
}

.training-image {
    width: 300px; /* Increased from 200px */
    flex-shrink: 0;
}

.training-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
	
}

.training-content {
    padding: 1rem;
    flex-grow: 1;
}

/* Title Styles */
.training-title {
    margin: 0 0 10px;
    color: #333;
    font-size: 1.5em;
	
}

/* Subtitle Styles */
.training-subtitle {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Information Styles */
.training-info p {
    margin: 15px 0;
}

/* Button Styles */
.training-info button {
    background-color: #204789;
    color: white;
    border: none;
    padding: 10px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 50px;
	margin-bottom: -20px;
}

.training-info button:hover {
    background-color: #0056b3;
}
/* Ensure cards stack on smaller screens */
@media (max-width: 768px) {
    .training-card {
        flex-direction: column; /* Stack image and content */
        height: auto; /* Allow content to determine height */
        text-align: center; /* Center content for better visual balance */
    }
    
    .training-image {
        width: 100%; /* Ensure full-width image */
    }
}
.advisory{
	text-align:center;
	
}