/* Style for image on right in #skyat-approach */
.skyat-approach-flex {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
}
.skyat-approach-content {
    flex: 1 1 0;
}
.skyat-approach-img {
    flex: 0 0 340px;
    max-width: 340px;
    align-self: flex-start;
}
.skyat-approach-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}
@media (max-width: 900px) {
    .skyat-approach-flex {
        flex-direction: column;
        gap: 1.5rem;
    }
    .skyat-approach-img {
        max-width: 100%;
        width: 100%;
    }
}