.aboutGrid,
.aboutSection {
    width: 90%;
    margin: 0 auto;
}

.aboutSection_Text p,
.aboutSection_Text h3 {
    width: 80%;
    text-align: center;
    margin-left: 50%;
    transform: translateX(-50%);
}

/* Make columns align and equal height */
.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.info-cell {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.473);
    padding: 0;
    margin: 0;
}

.lower-info-cell {
    background-color: rgba(255, 255, 255);
    border-radius: 10px;
}

/* Header section */
.info-header {
    width: 100%;
    background-color: #00354d;
    border-radius: 10px 10px 0 0;
}

.info-header h3 {
    margin: 0;
    padding: 15px;
    color: #fff;
}

/* Body section */
.info-body {
    width: 80%;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 1rem;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.info-body p {
    margin: 0 0 1rem 0;
    color: #00354d;
}

.icon {
    font-size: 2rem;
    text-align: center;
}

/* Icon placement fix */
.abouticon {
    width: 150px;
    height: 150px;
    background-size: cover;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: auto;
    margin-bottom: 5px;
}

.abouticon1 {
    background-image: url('../media/Icons/Bizkey_Icons_designed-by-befound-studio-02.png');
}

.abouticon2 {
    background-image: url('../media/Icons/Bizkey_Icons_designed-by-befound-studio-01.png');
}

.abouticon3 {
    background-image: url('../media/Icons/Bizkey_Icons_designed-by-befound-studio-03.png');
}

/* Decorative background image */
.aboutGridBg {
    display: block;
    width: 100vw;
    height: auto;
    margin-top: -200px;
    z-index: -1;
    position: relative;
}

/* Ensure grid sits above image */
.aboutGrid {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.473);
    border-radius: 10px;
}

/* Mobile adjustment */
@media screen and (max-width: 768px) {
    .aboutGridBg {
        margin-top: 0;
    }

    .info-grid {
        flex-direction: column;
    }
}
