/* Hero Section Styles */
.home {
    min-height: 80vh; 
    /* Primary Blue Gradient Background */
    background: linear-gradient(135deg, #007AFF 0%, #004d99 100%); 
    display: flex;
    justify-content: center; /* Horizontally center content */
    align-items: center; /* Vertically center content */
    text-align: center;
    color: white;
    padding: 2rem;
}
.home-content {
    max-width: 900px;
}
.text-one {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}
.text-two {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}
.text-three {
    font-size: 1.75rem;
    font-weight: 500;
    color: #d1d5db; /* Light gray */
    margin-bottom: 2rem;
}
/* Mobile adjustments */
@media (max-width: 640px) {
    .text-two { font-size: 2.25rem; }
    .text-three { font-size: 1.25rem; }
    .home { min-height: 70vh; }
}
/* Style for the Contact link in footer to override Tailwind color */
.footer-link {
    color: white !important;
}