/* Nav Dropdowns */

.navContent ul li ul a {
    white-space: normal !important;
    overflow: visible !important;
}

@media only screen and (min-width: 768px) {
    .navContent ul li ul {
        min-width: 250px !important;
        right: auto !important; 
    }
}

/* 2 Column Form Homepage (Original Layout Rules) */
@media only screen and (min-width: 768px) {
    #madFormContainer,
    #madHeroContent {
        width: 50%;
        float: left;
    }

    div#madHero {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        /* NOTE: Ensure a dark background is set on this or a parent element 
           for the white text to be readable! */
    }
}

/* --- TEXT STYLING (White Text) --- */

.madTitle {
    /* White text */
    color: #fff;
    /* 36px font size */
    font-size: 36px; 
    text-align: left;
}

.madContent {
    /* White text */
    color: #fff;
    font-size: 18px; 
    text-align: left;
}

/* --- PRIMARY BUTTON STYLING (.madButton) --- */

.madButton {
    /* Aesthetic Updates: WHITE BACKGROUND, BLACK TEXT */
    color: #000; /* Text is now black */
    background-color: #fff; /* Background is now white */
    border-color: #000; /* Border is black for definition */
    
    text-decoration: none; /* Removed underline */
    text-transform: uppercase; /* Capitalized text */
    font-weight: 600; /* Medium bold */

    /* Layout */
    padding: 10px 30px;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 15px; /* Spacing between the two buttons */
}

.madButton:hover {
    color: #000;
    background-color: #eee; /* Light gray on hover */
    border-color: #000;
}