/* Main content area */
.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/* Container */
.inner-main {
    width: 100%;
}

/* List reset + layout */
.main-about-list {
    display: flex;
    flex-direction: column;
    list-style-type: none;

    width: 100%;
    padding: 0;
    margin: 0;
}

/* Individual rows */
.about-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    padding: 60px;
    gap: 45px;
}

/* Background Color */
.about-item--aqua {
    background-color: rgb(196, 196, 196);
    color: #fff;
}
.about-item--white {
    background-color: #f5f5f5;
}

.about-title {
    font-size: 1.5rem;
    font-weight: 500;
}

/* Text block */
.about-text {
    text-align: left;
}

/* Image block */
.about-image img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 200px;
}

/* Responsive styling */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    .content {
        flex-direction: column;
        align-items: center;
    }

    .content section {
        width: 80%;
    }

    nav ul li {
        display: block;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }

    nav ul li {
        font-size: 1em;
    }

    .content section {
        width: 100%;
    }
}
