/* Debt Warning Section */
.debt-warning {
    padding: 40px 20px;
}

.debt-warning-container {
    background: linear-gradient(135deg, #4285f4 0%, #3367d6 100%);
    border-radius: 32px;
    padding: 80px 100px;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}

.debt-warning-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.debt-warning-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.debt-warning-content {
    flex: 1;
    max-width: 600px;
}

.debt-warning-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.debt-warning-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px 0;
}

.debt-warning-btn {
    background: linear-gradient(90deg, #d10e0e 0%, #680707 50%, white 50%, white 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    color: #3367d6;
    border: none;
    border-radius: 50px;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.debt-warning-btn:hover {
    background-position: 0% 0;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(209, 14, 14, 0.4);
}

.debt-warning-btn:active {
    transform: translateY(0);
}

.debt-warning-image {
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.debt-warning-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.debt-warning-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.debt-warning-image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .debt-warning {
        padding: 30px 15px;
    }
    
    .debt-warning-container {
        padding: 60px 40px;
        border-radius: 24px;
    }
    
    .debt-warning-wrapper {
        gap: 40px;
    }
    
    .debt-warning-image {
        flex: 0 0 300px;
    }
    
    .debt-warning-title {
        font-size: 40px;
    }
    
    .debt-warning-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .debt-warning {
        padding: 20px 10px;
    }
    
    .debt-warning-container {
        padding: 50px 30px;
        border-radius: 20px;
    }
    
    .debt-warning-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .debt-warning-content {
        max-width: none;
    }
    
    .debt-warning-title {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .debt-warning-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .debt-warning-btn {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .debt-warning-image {
        flex: none;
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .debt-warning {
        padding: 15px 8px;
    }
    
    .debt-warning-container {
        padding: 40px 20px;
        border-radius: 16px;
    }
    
    .debt-warning-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .debt-warning-subtitle {
        font-size: 14px;
    }
    
    .debt-warning-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .debt-warning-image {
        max-width: 280px;
    }
}


@media(max-width: 1400px) {
    .debt-warning__img-container {
        width: 500px !important;
    }
}
@media(max-width: 992px) {
    .debt-warning__img-container {
        width: 300px !important;
    }
}

