.main-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}

.left-section {
    flex: 3;
    min-width: 250px;
}

.right-section {
    flex: 1;
    min-width: 200px;
}

.college-carousel img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
}

.youtube-embed {
    margin-top: 20px;
    aspect-ratio: 16/9;
    width: 100%;
}
.section-title {
    text-align: left !important;
    font-size: 32px;
    font-weight: bold;
    color: #052374;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    letter-spacing: 0.5px;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #052374;
    display: block;
    margin: 12px 0 0; /* Aligned left */
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: width 0.3s;
}

.section-title:hover::after {
    width: 80px;
}

.program-table-wrapper {
    margin-top: 30px;
    overflow-x: auto;
}

.program-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.program-table thead {
    background-color: #052374;
    color: #fff;
}

.program-table th, .program-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.program-table tbody tr:hover {
    background-color: #f6f9ff;
}

.view-btn {
    background-color: transparent;
    border: 2px solid #052374;
    color: #052374;
    padding: 6px 12px;
    font-size: 0.9rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.view-btn:hover {
    background-color: #052374;
    color: white;
}

.view-btn .arrow-icon {
    width: 16px;
    height: 16px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.view-btn:hover .arrow-icon {
    transform: translateX(4px);
}

.program-table tbody tr:nth-child(even) {
    background-color: #f6f6f6;
}

.program-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}
.college-refund-policy {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    font-size: 0.95rem;
    line-height: 1.6;
}

.college-refund-policy h4,
.college-refund-policy h5 {
    color: #052374;
    margin-top: 15px;
}
.refund-heading {
    background-color: #041b5e; /* Darker than #052374 */
    color: white;
    font-size: 18px;
    padding: 10px 16px;
    border-radius: 4px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.refund-icon {
    width: 18px;
    height: 18px;
    fill: white;
    margin-right: 8px;
    vertical-align: middle;
}
.college-carousel .carousel-item {
    height: 200px; /* Adjust as needed */
}

.college-carousel .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}