@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

.isb-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 8%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.isb-section--reverse-desktop {
    flex-direction: row-reverse;
}

.isb-section--reverse-desktop .isb-col-text {
    padding-left: 0;
    padding-right: 60px;
}

.isb-col-image {
    width: 50%;
}

.isb-image-wrapper {
    width: 100%;
    line-height: 0;
}

.isb-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.isb-col-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
}

.isb-title {
    font-family: 'Rubik', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.0;
    margin: 0 0 20px 0;
    color: #000000;
}

.isb-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;
}

.isb-content {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.6);
}

.isb-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.isb-bullet-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.isb-bullet-icon-wrapper {
    width: 16px;
    height: 16px;
    margin-right: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.isb-bullet-icon {
    width: 100%;
    height: auto;
    display: block;
}

.isb-bullet-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.6);
    padding-top: 2px;
}

.isb-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.isb-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;
}

.isb-button--primary {
    background-color: #000000;
    color: #ffffff !important;
    border: 1px solid #000000;
}

.isb-button--primary:hover {
    background-color: transparent;
    color: #000000 !important;
}

.isb-button--secondary {
    background-color: transparent;
    color: #000000 !important;
    border: 1px solid #000000;
}

.isb-button--secondary:hover {
    background-color: #000000;
    color: #ffffff !important;
}

/* Mobile styles */
@media (max-width: 768px) {
    .isb-section {
        flex-direction: column;
        padding: 60px 7%;
        gap: 0;
    }

    .isb-section--reverse-mobile {
        flex-direction: column-reverse;
    }

    .isb-col-text {
        padding: 40px 0 0 0;
    }

    .isb-section--reverse-mobile .isb-col-text {
        padding: 0 0 40px 0;
    }

    .isb-section--reverse-desktop .isb-col-text {
        padding-right: 0;
    }

    .isb-col-image, .isb-col-text {
        width: 100%;
    }

    .isb-title {
        font-size: 36px;
    }

    .isb-subtitle {
        font-size: 13px;
    }

    .isb-content {
        font-size: 15px;
    }

    .isb-bullet-text {
        font-size: 15px;
    }

    .isb-buttons{
        align-items: center;
        justify-content: center;
    }

    .isb-button {
        box-sizing: border-box;
    }
}
