.ise-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 8%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.ise-section--reverse-desktop {
    flex-direction: row-reverse;
}

.ise-section--reverse-desktop .ise-col-text {
    padding-left: 0;
    padding-right: 60px;
}

.ise-col-image {
    width: 50%;
}

.ise-image-wrapper {
    width: 100%;
    line-height: 0;
}

.ise-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.ise-col-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
}

.ise-title {
    font-family: 'Rubik', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.0;
    margin: 0 0 20px 0;
    color: #000000;
}

.ise-subtitle {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    color: #000000;
    line-height: 1.4;
}

.ise-embed-container {
    margin-bottom: 30px;
    width: 100%;
}

.ise-content {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 30px;
}

.ise-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.ise-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: fit-content;
    text-align: center;
    min-width: 200px;
}

.ise-button--primary {
    background-color: #000000;
    color: #ffffff !important;
    border: 1px solid #000000;
}

.ise-button--primary:hover {
    background-color: transparent;
    color: #000000 !important;
}

.ise-button--secondary {
    background-color: transparent;
    color: #000000 !important;
    border: 1px solid #000000;
}

.ise-button--secondary:hover {
    background-color: #000000;
    color: #ffffff !important;
}

/* Mobile styles */
@media (max-width: 768px) {
    .ise-section {
        flex-direction: column;
        padding: 60px 7%;
        gap: 0;
    }

    .ise-section--reverse-mobile {
        flex-direction: column-reverse;
    }

    .ise-col-text {
        padding: 40px 0 0 0;
    }

    .ise-section--reverse-mobile .ise-col-text {
        padding: 0 0 40px 0;
    }

    .ise-section--reverse-desktop .ise-col-text {
        padding-right: 0;
    }

    .ise-col-image, .ise-col-text {
        width: 100%;
    }

    .ise-title {
        font-size: 36px;
    }

    .ise-subtitle {
        font-size: 13px;
    }

    .ise-content {
        font-size: 15px;
    }

    .ise-buttons{
        align-items: center;
        justify-content: center;
    }

    .ise-button {
        box-sizing: border-box;
    }
}
