/* Testimonials/Internships Section Styles */
.internships-section {
    background-color: #fff9f0;
    padding: 60px 0;
}

/* Section Header Styles */
.internships-heading {
    color: #FFF9ED;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    /*    font-weight: bold;*/
}

.internships-subheading {
    font-size: 1.1rem;
    color: #000000;
    font-weight: bold;
}

/* What We Offer Label */
.offer-label {
    color: #000000;
    font-weight: bold;
    background-color: white;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Card Styles */
.internship-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-height: 380px;
    background-color: white;
}

.internship-card .card-header {
    font-weight: 600;
    border-radius: 20px 20px 0 0;
    background-color: white;
    border: none;
    padding-top: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.internship-card .card-body {
    padding: 1.5rem;
}

.internship-card .card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
}

/* Spacing Utilities */
.card-grid {
    gap: 1.5rem;
    margin-top: 3rem;
}