h1 {
    display: flex;
    justify-content: center;
    padding-top: 17vh;
    margin-bottom: 5vh;
}

.flickity-prev-next-button {
    background-color: rgba(255, 255, 255, 0) !important;
    transition: background-color 0.7s
}

.flickity-prev-next-button:hover {
    background-color: white !important;
}

.gallery-cell {
    width: 60vw;
    border-radius: 40px;
    padding: 20px;
    margin-left: 10px;
    margin-right: 10px
}

.gallery-cell img {
    margin-left: 30%;
}

.gallery-cell img {
    display: block;
    margin: 0 auto 15px auto;
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.gallery-text {
    text-align: center;
    margin-top: 4%;
}

.gallery-text * {
    width: 100%;
    margin-right: 100%;
}

.about-us-blurb {
    margin-top: 2%;
    margin-left: 6%;
    margin-right: 4%;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-us-table {
    width: 90vw;
    border-collapse: collapse;
    margin-top: 4%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.about-us-table thead tr {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.about-us-table th {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.5);
    padding: 16px 28px;
    text-align: left;
}

.about-us-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
}

.about-us-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.07);
}

.about-us-table td {
    padding: 15px 28px;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

.about-us-table td:first-child {
    font-weight: 700;
    color: white;
}