.jet-section {
    display: flex;
    align-items: stretch;
    background-color: #ffffff;
    margin-bottom: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
    border-radius: 12px;
    overflow: hidden;
    min-height: 280px;
}

.jet-image {
    flex: 0 0 38%;
    position: relative;
    overflow: hidden;
}

    .jet-image img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.jet-content {
    flex: 1;
    padding: 28px 32px;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

    .jet-content h1 {
        font-size: 2.2em;
        margin-bottom: 12px;
        color: #111827;
    }

    .jet-content p {
        font-size: 1em;
        color: #4b5563;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .jet-content ul {
        margin-bottom: 16px;
    }

.jet-icons {
    display: flex;
    gap: 40px;
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1f2937;
}

    .jet-icons span {
        display: flex;
        align-items: center;
        gap: 8px;
    }

.jet-button {
    background-color: #0099ff;
    color: white;
    padding: 12px 28px;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    width: fit-content;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .jet-button:hover {
        background-color: #007acc;
    }

/* Mobile / tablet: stack image on top, full width */
@media (max-width: 991px) {
    .jet-section {
        flex-direction: column;
        min-height: unset;
    }

    .jet-image {
        flex: none;
        position: relative;
        height: 240px;
        width: 100%;
    }

        .jet-image img {
            position: absolute;
        }

    .jet-content {
        padding: 20px;
    }
}
