/* CWP Tabs Plugin Styles - Clean and Simple */
.it44-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: "Poppins", sans-serif;
}

.it44-tabs-header {
    text-align: center;
    margin-bottom: 40px;
}

.it44-tabs-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    margin: 0 0 15px 0;
    color: var(--aivons-black, #0f0d1d)  !important;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.it44-tabs-description {
    font-size: 18px;
    line-height: 34px;
    color: var(--aivons-gray, #726f84);
    margin: 0;
}

.it44-tabs-wrapper {
    background: transparent;
    margin: 0;
    padding: 0;
}

.it44-tabs-nav {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
}

.it44-tab-button {
    flex: 1;
    text-align: center;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 20px 10px;
    margin: 0;
}

.it44-tab-button span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--aivons-black, #0f0d1d);
    font-size: 16px;
    line-height: 34px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: var(--aivons-letter-space-small, -0.02em);
    transition: all 500ms ease;
    min-height: 80px;
    background-color: #f2f4f8;
    border-radius: 8px;
    padding: 20px 15px;
    margin: 0 5px;
}

.it44-tab-button.active span {
    color: #ffffff;
    background-color: var(--aivons-primary, #3c72fc);
}

.it44-tab-button:hover span {
    color: var(--aivons-primary, #3c72fc);
    background-color: #ffffff;
}

.it44-tab-button i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
    line-height: 1;
}

.it44-tabs-content {
    position: relative;
    display: block;
}

.it44-tab-panel {
    display: none;
}

.it44-tab-panel.active {
    display: block;
}

.it44-tab-content {
    padding: 0;
    margin: 0;
}

.it44-tab-columns {
    display: flex;
    width: 100%;
    gap: 0;
}

.it44-tab-column {
    flex: 1;
    padding: 30px 20px;
    background: transparent;
    box-sizing: border-box;
    position: relative;
}

.it44-tab-column:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background-color: #e0e0e0;
}

.it44-tab-column-image {
    margin-bottom: 20px;
    overflow: hidden;
}

.it44-tab-column-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.it44-tab-column h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: var(--aivons-black, #0f0d1d) !important;
    text-transform: uppercase;
    letter-spacing: var(--aivons-letter-space-small, -0.02em);
}

.it44-tab-column p {
    font-size: 16px;
    line-height: 34px;
    color: var(--aivons-gray, #726f84) !important;
    margin: 0;
}

.it44-tab-text {
    font-size: 16px;
    line-height: 34px;
    color: var(--aivons-gray, #726f84) !important;
    margin: 0;
}

.it44-tab-text h1,
.it44-tab-text h2,
.it44-tab-text h3,
.it44-tab-text h4,
.it44-tab-text h5,
.it44-tab-text h6 {
    color: var(--aivons-black, #0f0d1d) !important;
    font-weight: 700;
    margin: 15px 0 10px 0;
    text-transform: uppercase;
    letter-spacing: var(--aivons-letter-space-small, -0.02em);
}

.it44-tab-text h1 {
    font-size: 1.8rem;
}

.it44-tab-text h2 {
    font-size: 1.5rem;
}

.it44-tab-text h3 {
    font-size: 1.3rem;
}

.it44-tab-text h4 {
    font-size: 1.2rem;
}

.it44-tab-text h5 {
    font-size: 1.1rem;
}

.it44-tab-text h6 {
    font-size: 1rem;
}

.it44-tab-text p {
    font-size: 16px;
    line-height: 34px;
    color: var(--aivons-gray, #726f84) !important;
    margin: 0 0 15px 0;
}

.it44-tab-text ul,
.it44-tab-text ol {
    margin: 15px 0;
    padding-left: 20px;
}

.it44-tab-text li {
    font-size: 16px;
    line-height: 34px;
    color: var(--aivons-gray, #726f84) !important;
    margin-bottom: 8px;
}

.it44-tab-text a {
    color: var(--aivons-primary, #3c72fc);
    text-decoration: none;
}

.it44-tab-text a:hover {
    text-decoration: underline;
}

.it44-tab-text strong,
.it44-tab-text b {
    font-weight: 700;
    color: var(--aivons-black, #0f0d1d) !important;
}

.it44-tab-text em,
.it44-tab-text i {
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .it44-tabs-container {
        padding: 10px;
    }
    
    .it44-tabs-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .it44-tabs-description {
        font-size: 14px;
        line-height: 28px;
    }
    
    .it44-tabs-nav {
        flex-direction: column;
    }
    
    .it44-tab-button {
        margin-bottom: 5px;
    }
    
    .it44-tab-button span {
        font-size: 14px;
        min-height: 60px;
    }
    
    .it44-tab-button i {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .it44-tab-content {
        padding-top: 30px;
    }
    
    .it44-tab-columns {
        flex-direction: column;
        gap: 20px;
    }
    
    .it44-tab-column {
        padding: 15px;
    }
    
    .it44-tab-column-image img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .it44-tabs-container {
        padding: 5px;
    }
    
    .it44-tabs-title {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .it44-tabs-description {
        font-size: 12px;
        line-height: 24px;
    }
    
    .it44-tab-button span {
        font-size: 12px;
        min-height: 50px;
    }
    
    .it44-tab-button i {
        font-size: 1rem;
        margin-bottom: 3px;
    }
    
    .it44-tab-content {
        padding-top: 20px;
    }
    
    .it44-tab-column {
        padding: 12px;
    }
    
    .it44-tab-column h4 {
        font-size: 1rem;
    }
    
    .it44-tab-column p {
        font-size: 0.8rem;
    }
    
    .it44-tab-text h1 {
        font-size: 1.4rem;
    }
    
    .it44-tab-text h2 {
        font-size: 1.2rem;
    }
    
    .it44-tab-text h3 {
        font-size: 1.1rem;
    }
    
    .it44-tab-text h4 {
        font-size: 1rem;
    }
    
    .it44-tab-text h5 {
        font-size: 0.9rem;
    }
    
    .it44-tab-text h6 {
        font-size: 0.8rem;
    }
    
    .it44-tab-text p {
        font-size: 0.8rem;
    }
    
    .it44-tab-text li {
        font-size: 0.8rem;
    }
    
    .it44-tab-column-image img {
        height: 100px;
    }
}

.it44-tab-text h4{
    margin-top: 20px;
}
