.directors-message-area {
    background: #f8f9fa;
    padding: 80px 0;
}
.director-image-wrapper {
    position: relative;
    overflow: hidden;
}
.director-image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}
.director-image-wrapper:hover img {
    transform: scale(1.05);
}
.director-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(74, 144, 226, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}
.directors-message-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.title.split-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
}
.title.split-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #133674;
}
.director-name {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 5px;
}
.director-title,
.director-org {
    color: #6c757d;
    font-size: 1rem;
}
.message-highlight {
    border-left: 4px solid #133674;
}
.vision-list {
    list-style: none;
    padding-left: 0;
}
.vision-list li {
    font-size: 1.1rem;
    color: #495057;
}
.message-quote {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    font-style: italic;
}
.contact-card {
    background: linear-gradient(135deg, #133674 0%, #357ABD 100%);
    transition: transform 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-5px);
}
.appointment-card {
    background: white;
    border: 2px dashed #133674;
    color: #133674;
    transition: all 0.3s ease;
}
.appointment-card:hover {
    background: #133674;
    color: white;
    border-color: white;
}
@media (max-width: 768px) {
    .directors-message-content {
        padding: 20px;
        margin-top: 30px;
    }
    .title.split-text {
        font-size: 2rem;
    }
    .director-badge {
        left: 10px;
        bottom: 10px;
        padding: 8px 15px;
        font-size: 12px;
    }
}