/* Debt Types Component Styles */
.debt-types {
    padding: 60px 20px;
    background-color: #F8F7F2;
    overflow: hidden;
}

.debt-types-container {
    max-width: 1200px;
    margin: 0 auto;
}

.debt-types-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.debt-types-title {
    margin: 0;
    line-height: 1.2;
    flex: 1;
    min-width: 300px;
}

.debt-types-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* Ensure inline styles in title work properly */
.debt-types-title span[style*="color"] {
    color: unset;
}


.debt-types-button {
    display: inline-block;
    background-color: #F9A825;
    color: #1A1A1A;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.debt-types-button:hover {
    background-color: #FF8F00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 168, 37, 0.3);
}

.debt-types-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.accepted-debt-types,
.not-accepted-debt-types {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 50px;
}

@media (max-width: 768px) {
    .accepted-debt-types,
    .not-accepted-debt-types {
        padding: 20px;
    }
}

.accepted-debt-types {
    background-color: #4CAF50;
}

.not-accepted-debt-types {
    background-color: #E0E0E0;
}

.debt-types-header-bar {
    padding: 5px;
    border-radius: 60px;
    text-align: center;
}

.debt-types-header-bar.accepted {
    background-color: #388E3C;
}

.debt-types-header-bar.not-accepted {
    background-color: #757575;
}

.debt-types-header-bar h3 {
    margin: 0;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.debt-types-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.debt-type-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
    white-space: nowrap;
}

.debt-type-tag.accepted {
    background-color: #8BC34A;
    color: #424242;
}

.debt-type-tag.not-accepted {
    background-color: #F5F5F5;
    color: #424242;
}

.debt-type-tag i {
    font-size: 16px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.debt-type-tag span {
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .debt-types {
        padding: 40px 15px;
    }
    
    .debt-types-header {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 30px;
    }
    
    .debt-types-title {
        margin-bottom: 20px;
    }
    
    .debt-types-title {
        font-size: 32px;
    }
    
    .debt-types-button {
        align-self: flex-start;
        padding: 14px 28px;
        font-size: 13px;
    }
    
    .debt-types-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .debt-types-grid {
        gap: 10px;
    }
    
    .debt-type-tag {
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .debt-types {
        padding: 30px 10px;
    }
    
    .debt-types-title {
        font-size: 28px;
    }
    
    .debt-types-button {
        padding: 12px 24px;
        font-size: 12px;
    }
    
    .debt-types-header-bar {
        padding: 15px 20px;
    }
    
    .debt-types-header-bar h3 {
        font-size: 14px;
    }
    
    .debt-types-grid {
        gap: 8px;
    }
    
    .debt-type-tag {
        padding: 8px 12px;
        font-size: 12px;
        gap: 6px;
    }
    
    .debt-type-tag i {
        font-size: 14px;
        width: 14px;
        height: 14px;
    }
}

/* Elementor Editor Styles */
.elementor-editor .debt-types-container {
    min-height: 400px;
}

.elementor-editor .debt-types-button:hover {
    transform: none;
    box-shadow: none;
}

/* Focus states for accessibility */
.debt-types-button:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .debt-types-button {
        background-color: #F9A825 !important;
        color: #1A1A1A !important;
        box-shadow: none !important;
    }
    
    .debt-types-container {
        background-color: #F8F7F2 !important;
    }
}
