/* Hero Title Adjustments */
.hero-title-small {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
}

.subtitle-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Hero section padding adjustment */
#home {
    padding-top: 100px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title-small {
        font-size: 2.2rem;
    }
    
    .subtitle-text {
        font-size: 1.4rem;
    }
    
    #home {
        padding-top: 80px;
    }
}