.hide {
  display: none !important;
}
.right {
  float: right !important;
}

/* Reusable Grid Classes */
.grid-2column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}

.grid-3column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4column {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* MOBILE MENU */
.mobile-menu {
    grid-template-columns: 1fr;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 999;
}

.mobile-nav-link {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    color: #0c0c12;
    font-weight: 600;
    text-align: center;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover {
    background-color: #c9d4d5;
    color: #101051;
}
/* FOOTER styles */
.footer-bottom {
    color: #809ec3; /* change this as needed for website; the rest most likely should not be changed */
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom a {
    color: #809ec3;
    text-decoration: none;
}

.footer-bottom-left {
    flex: 1;
    text-align: left;
    margin-left: 36px;
    min-width: 300px;
}

.footer-bottom-right {
    margin-right: 36px;
    text-align: right;
    min-width: 200px;
}

.footer-bottom-right p {
    margin: 0;
}

/* Responsive Adjustments for New Classes */
@media (max-width: 992px) {
    .grid-4column {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2column,
    .grid-3column,
    .grid-4column {
        grid-template-columns: 1fr;
    }
}
