.title-header {
    text-align: center;
    padding: 40px 0;
    /*background: linear-gradient(135deg, #1a6fc4 0%, #0d4a85 100%);*/
    background-color: #ffffff;
    color: #333;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.title-header h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.title-header .subtitle {
    font-size: .8rem;
    opacity: 0.9;
    max-width: 80%;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: #1a6fc4;
    color: white;
    padding: 20px;
    text-align: center;
}

.department {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.card-body {
    padding: 25px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #e8f1fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #1a6fc4;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 3px;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #1a6fc4;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #0d4a85;
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: #1a6fc4;
    border: 1px solid #1a6fc4;
}

.btn-outline:hover {
    background: #e8f1fd;
}

.btn i {
    margin-right: 8px;
}



@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1rem;
    }
}