/* New Mexico Hero Section Styling */
.nm-hero-section {
    position: relative;
    /* Using a high-quality image with a New Mexico theme */
    background: url("../images/new-mexico-flag.jpg") no-repeat center center/cover;
    background-color: #DA291C; /* Fallback color (NM flag red) */
}

/* Dark overlay for text readability */
.nm-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* A neutral dark overlay */
    z-index: 1;
}
