#section-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 5em 6em;
    gap: 4em;
    text-align: center;
}

.section-container {
    display: flex;
    align-items: center;
    gap: 4em;
}

/* Image */
#section-1 img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.column-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.8em;
    text-align: left;
    color: #12609d;
}

/* Button */
#section-1 .btn-1 {
    background: #fad02c;
    color: white;
    border: none;
    padding: 0.7em 1.4em;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.25s ease;
    align-self: flex-start;
    font-weight: 400;
}

#section-1 .btn-1:hover {
    background: #e8bb0a;
    transform: translateY(-1px);
}

#section-1 .btn-2 {
    background: #cc50bd;
    color: white;
    border: none;
    padding: 0.7em 1.4em;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.25s ease;
    align-self: flex-start;
    font-weight: 400;
}

#section-1 .btn-2:hover {
    background: #b346a7;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 900px) {
    #section-1   {
        flex-direction: column;
        text-align: center;
        padding: 2em 3em;
        gap: 2.2em;
    }

    #section-1 .section-container {
        flex-direction: column;
        align-items: center;
        gap: 2em;
    }

    #section-1 .column-1 {
        text-align: center;
    }

    #section-1 .btn-1 {
    align-self: center;
}

    #section-1 .btn-2 {
    align-self: center;
}

    #section-1 img {
        max-width: 80%;
        aspect-ratio: 16 / 9;
    }
}

#section-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5em 6em;
    gap: 4em;
    text-align: center;
    color: white;
    background-color: #12609d;
}

#section-2 .columns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1.7em;
}

#section-2 .column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
    min-width: 100px;
    max-width: 20%;
    background: white;
    color: #12609d;
    padding: 1.7em;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: justify;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    flex: 1;
    font-size: 0.9em;

}

#section-2 .column p {
    background: linear-gradient(170deg, #0b385e, #4f94cd); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    hyphens: auto;
    margin-top: 1em;
}

.jobsun-video {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    border-radius: 10px;
    object-fit: cover;
}

@media (max-width: 900px) {

    #section-2 {
        padding: 2em 2em;
        gap: 2.5em;
    }

    #section-2 .columns {
        flex-direction: column;
        align-items: center;
        gap: 1.5em;
        width: 100%;
    }

    #section-2 .column {
        max-width: 520px; 
        width: 100%;
        padding: 1.3em;
        font-size: 0.95em;
        text-align: left;
    }

    #section-2 .column p {
    margin-top: 0em;
}

    .video-wrapper {
        width: 200px;
    }
}
