.ics-section {
    display: flex;
    width: 100%;
    min-height: 80vh;
    align-items: stretch;
    background-color: #ffffff;
    overflow: hidden;
}

.ics-section--reverse-desktop {
    flex-direction: row-reverse;
}

.ics-column {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.ics-column--image {
    position: relative;
}

.ics-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.ics-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ics-column--text {
    justify-content: center;
    padding: 80px 8%;
}

.ics-content-inner {
    max-width: 600px;
}

.ics-title {
    font-family: 'Rubik', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 20px 0;
    line-height: 1.0;
    letter-spacing: -1.5px;
}

.ics-subtitle {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ics-description {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 50px 0;
}

.ics-description p {
    margin: 0 0 1.5em 0;
}

.ics-description p:last-child {
    margin-bottom: 0;
}

.ics-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.ics-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;
}

.ics-button--primary {
    background-color: #000000;
    color: #ffffff !important;
    border: 1px solid #000000;
}

.ics-button--primary:hover {
    background-color: transparent;
    color: #000000 !important;
}

.ics-button--secondary {
    background-color: transparent;
    color: #000000 !important;
    border: 1px solid #000000;
}

.ics-button--secondary:hover {
    background-color: #000000;
    color: #ffffff !important;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .ics-title {
        font-size: 42px;
    }
    
    .ics-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .ics-section {
        flex-direction: column;
    }

    .ics-section--reverse-mobile {
        flex-direction: column-reverse;
    }

    .ics-column {
        width: 100%;
    }

    .ics-column--text {
        padding: 60px 7%;
    }

    .ics-title {
        font-size: 38px;
    }

    .ics-button {
        font-size: 16px;
    }
    .ics-buttons{
        align-items: center;
        justify-content: center;
    }
    
    .ics-image-wrapper {
        min-height: 350px;
    }
}
