#banner-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #2C3E50, #34495E);
    color: #ECF0F1;
    text-align: center;
    /* margin-top: 105px; */
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1; /* Particles behind the text */
}

.banner-content {
    position: relative;
    z-index: 2;
    /* --- ENSURE TEXT IS LIGHT --- */
    color: #ECF0F1; /* Explicitly set for content */
    padding: 0 20px;
}

.banner-content h1 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 2.5em;
}

.banner-content p {
    font-size: 1.1em;
    line-height: 1.5;
    max-width: 800px; /* Limit text width for better readability */
    margin: 0 auto;
}

/* Responsive adjustments if needed */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 1.8em;
    }
    .banner-content p {
        font-size: 0.9em;
    }
}