.phone-highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.phone-highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.phone-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--light-cream);
}

.phone-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.phone-text {
    font-size: 1.2rem;
    opacity: 0.9;
}
