.section-title {
    color: #003366;
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
}

.section-title-bar {
    width: 120px;
    height: 4px;
    background: #ffcc00;
    margin: 0 auto 1rem auto;
}

.director-card {
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.director-card:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
}

.info-icon {
    position: absolute;
    top: 12%;
    left: 85%;
    transform: translate(-50%, -50%);
    background: #ffcc00;
    color: #fff;
    border-radius: 50%;
    padding: 12px;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.2s;
    z-index: 2;
}

.director-card:hover .info-icon {
    opacity: 1;
}

.director-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.modal-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 14px;
    color: #003366;
    font-weight: 700;
}

.modal-title{
    color: #003366;
}