.et_pb_text_24 h4 {
    color: rgba(255, 255, 255, 0.179) !important;
}

.tabs-container {
    display: flex;
    gap: 10px;
    margin-bottom: 3em;
}

.tab {
    flex:1;
    padding: 1em 1em;
    color: rgba(255, 255, 255, 0.179);
    cursor: pointer;
    border-radius: 12px;
}

.tab:hover{
    color: rgba(255, 255, 255, 0.444);
    background: rgba(255, 255, 255, 0.07);
    transition: linear 200ms;
}

.active {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.579);
}

.active:hover {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.579);
}

.et_pb_text_24 .active h4 { 
    color: white !important;
}

.tabs-content-container {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 15px;
    padding: 3em 4em;
}

.tab-content {
    display: flex;
    gap: 50px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-out;
    position: absolute;
    left: 0;
    width: 100%;
}

.active-content {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.column-1 {
    flex: 1;
    display: grid;
    align-content: center;
}

.column-1 p{
    color: white;
}

.column-1 h2{
    margin-bottom: 0.5em;
    width: 70%;
}

.column-1 .btn {
    width:100%;
}

.column-2 {
    flex: 1;
}

.column-2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 15px solid rgba(25,36,36,0.05);
    border-radius: 15px;
}

/* Tablet Media Query */
@media screen and (max-width: 1024px) {
    .tabs-container {
        gap: 8px;
        margin-bottom: 2em;
    }
    
    .tab {
        padding: 0.8em;
    }
    
    .tab h4 {
        font-size: 0.9em;
    }
    
    .tabs-content-container {
        padding: 2em 3em;
    }
    
    .tab-content {
        gap: 30px;
    }
    
    .column-1 h2 {
        width: 80%;
        font-size: 1.5em;
        margin-top: 0.5em;
    }
}

/* Mobile Media Query */
@media screen and (max-width: 768px) {
    .tabs-container {
        display:grid;
        /* flex-direction: column; */
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 1.5em;
    }
    
    .tab {
        padding: 1em;
        text-align: center;
    }
    
    .tab h4 {
        font-size: 1em;
        margin-bottom: 0.5em;
    }
    
    .tab p {
        font-size: 0.9em;
        line-height: 1.4;
    }
    
    .tabs-content-container {
        padding: 1.5em 2em;
    }
    
    .tab-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .column-1 {
        order: 1;
    }
    
    .column-2 {
        order: 2;
    }
    
    .column-1 h2 {
        width: 100%;
        font-size: 1.3em;
        /* text-align: center; */
        /* margin-bottom: 1em; */
    }
    
    .column-1 p {
        /* text-align: center; */
        font-size: 0.9em;
        line-height: 1.5;
    }
    
    .column-1 .btn {
        display: inline-block;
        width: 100%;
        /* margin: 1em auto 0; */
    }
    
    .column-2 img {
        max-height: 250px;
        border-radius: 8px;
    }
}

/* Small Mobile Media Query */
@media screen and (max-width: 480px) {
    .tabs-content-container {
        padding: 1em 1.5em;
    }
    
    .tab {
        padding: 0.8em;
    }
    
    .tab h4 {
        font-size: 0.9em;
    }
    
    .tab p {
        font-size: 0.8em;
    }
    
    .column-1 h2 {
        font-size: 1.1em;
    }
    
    .column-1 p {
        font-size: 0.8em;
    }
    
    .column-2 img {
        max-height: 200px;
    }
}