/* Hero text color updates */

/* Text styling only - no layout changes */
.hero-text {
    /* No display or layout properties here */
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Professor of Computer Science & Engineering title */
.hero-subtitle {
    color: #ffffff !important; /* White color with !important to override any existing styles */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Subtle shadow for better visibility */
    text-align: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
    max-width: 700px;
}

/* Pioneering research description */
.hero-description {
    color: #ffffff !important; /* White color with !important to override any existing styles */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Subtle shadow for better visibility */
    text-align: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
    max-width: 700px;
    line-height: 1.8;
}