@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Poppins:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #e8e8e8;
    line-height: 1.2;
    color: #333;
}

.main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

.content-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 930px;
    width: 100%;
    padding: 2.5rem 2rem;
    margin-bottom: 40px;
}

/* Header */
.header-text {
    text-align: center;
    margin-bottom: 1.5rem;
}

.header-paragraph {
    font-size: 40px;
    line-height: 1.2;
    color: #000;
    font-weight: 400;
}

/* Image */
.image-container {
    text-align: center;
    margin: 2rem 0;
}

.debt-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Info Text */
.info-text {
    text-align: center;
    margin: 2rem 0;
    padding: 0 1rem;
}

.info-text p {
    font-size: 24px;
    line-height: 1.2;
    color: #333;
}

/* Verify Box */
.verify-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.verify-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: #333;
}

.verify-subtitle {
    font-size: 24px;
    margin-bottom: 1rem;
    color: #555;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steps-list li {
    padding: 0.4rem 0;
    font-size: 24px;
    color: #333;
}

.steps-list li strong {
    color: #000;
}

/* Divider */
.divider {
    border: 0;
    border-top: 4px solid #dc3545;
    margin-top: 2rem;
    margin-bottom: 0;
    opacity: 1;
}

/* Form Section */
#form-container {
    padding: 3rem 0;
    background-color: rgb(248, 250, 252);
    margin-bottom: 200px;
    border: 1px solid #e5e7eb;
}

.question-step {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.question-step.active {
    opacity: 1;
}

.question-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.btn-answer {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-yes,
.btn-no {
    background-color: #e84a5f;
    color: white;
}

.btn-yes:hover,
.btn-no:hover {
    background-color: #d63c51;
    transform: scale(1.02);
}

.btn-yes:active,
.btn-no:active {
    transform: scale(0.98);
}

.btn-retry {
    background-color: #e84a5f;
    color: white;
    max-width: 300px;
}

.btn-call {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: white;
    font-size: 24px;
    font-weight: bold;
    padding: 1rem 2.5rem;
}

.btn-call:hover {
    background: linear-gradient(135deg, #218838 0%, #155724 100%);
    color: white;
}

/* Loading Animation */
.ball {
    width: 15px;
    height: 15px;
    background-color: #e84a5f;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    animation: bounce 1s infinite;
}

.ball2 { animation-delay: 0.1s; }
.ball3 { animation-delay: 0.2s; }
.ball4 { animation-delay: 0.3s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

/* Footer */
.footer-section {
    background-color: #000;
    color: #999;
    padding: 2rem 1rem;
    text-align: center;
    width: 100%;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.copyright {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-links {
    margin: 1rem 0;
    font-size: 0.85rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.disclaimer {
    font-size: 0.75rem;
    line-height: 1.2;
    margin-top: 1.5rem;
    color: #999;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .content-card {
        padding: 2rem 1.5rem;
    }

    .header-paragraph {
        font-size: 28px;
    }

    .question-title {
        font-size: 28px;
    }

    .btn-answer {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }

    .info-text p {
        font-size: 18px;
    }

    .verify-title,
    .verify-subtitle,
    .steps-list li {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .content-card {
        padding: 1.5rem 1rem;
    }

    .header-paragraph {
        font-size: 24px;
    }

    .question-title {
        font-size: 24px;
    }

    .info-text p {
        font-size: 16px;
    }

    .verify-title,
    .verify-subtitle,
    .steps-list li {
        font-size: 16px;
    }
}
