body {
    padding: 0;
    margin: 0;
}

.hide {
  display: none !important;
}
.right {
  float: right !important;
}
.center {
    text-align: center;
}

.navbar {
    background-color: #000;
}
/* 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;
}
.grid-1fr-2fr {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}
/* FOOTER styles */
.footer-bottom {
    width: 100%;
    height: 144px;
    background-color: #000;
    color: rgb(150, 150, 150); /* change this as needed for website; the rest most likely should not be changed */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-weight: 400;
}
.footer-bottom i {
    font-size: 1.7rem;
    padding-left: 12px;
}
.footer-bottom a {
    color: #ddd;
    text-decoration: none;
}

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

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

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

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

/* 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-1fr-2fr,
    .grid-4column {
        grid-template-columns: 1fr;
    }
}
