.about-us-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-us-wrapper.layout-stacked {
    flex-direction: column;
    text-align: center;
}

.about-us-wrapper.layout-image-right {
    flex-direction: row-reverse;
}

.about-us-image {
    flex: 1;
}

.about-us-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.about-us-content {
    flex: 1;
}

.about-us-sub-heading {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.about-us-title {
    margin-top: 0;
    margin-bottom: 15px;
}

.about-us-desc p {
    margin: 0 0 15px;
}
.about-us-desc p:last-child {
    margin-bottom: 0;
}

.about-us-button {
    display: inline-block;
    padding: 12px 24px;
    margin-top: 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-us-wrapper.layout-stacked .about-us-button {
    margin-left: auto;
    margin-right: auto;
}