/* style/deposit-withdrawal-usdt-guide.css */

/* General styling for the specific page content */
.page-deposit-withdrawal-usdt-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333; /* Dark gray for good contrast on light background */
    background-color: #f9f9f9; /* Light background */
}

/* Container for content width */
.page-deposit-withdrawal-usdt-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-deposit-withdrawal-usdt-guide__hero {
    background: linear-gradient(135deg, #007BFF, #4da3ff); /* Gradient with main color and lighter variant */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-deposit-withdrawal-usdt-guide__title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-deposit-withdrawal-usdt-guide__subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-deposit-withdrawal-usdt-guide__cta-group {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-deposit-withdrawal-usdt-guide__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-deposit-withdrawal-usdt-guide__btn--primary {
    background-color: #FFD700; /* Accent color */
    color: #0056b3; /* Darker blue for contrast */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal-usdt-guide__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker accent */
    transform: translateY(-3px);
}

.page-deposit-withdrawal-usdt-guide__btn--secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-deposit-withdrawal-usdt-guide__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.page-deposit-withdrawal-usdt-guide__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
    background-color: #FFD700;
    color: #0056b3;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-deposit-withdrawal-usdt-guide__btn--large:hover {
    background-color: #e6c200;
    transform: translateY(-4px);
}

.page-deposit-withdrawal-usdt-guide__hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Sections */
.page-deposit-withdrawal-usdt-guide__section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-deposit-withdrawal-usdt-guide__section:last-of-type {
    border-bottom: none;
}

.page-deposit-withdrawal-usdt-guide__section-title {
    font-size: 2.5em;
    color: #007BFF; /* Main color for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-deposit-withdrawal-usdt-guide__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Accent underline */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-deposit-withdrawal-usdt-guide__section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #444;
    text-align: justify;
}

.page-deposit-withdrawal-usdt-guide__section strong {
    color: #007BFF;
}

/* Step List Styling */
.page-deposit-withdrawal-usdt-guide__step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-deposit-withdrawal-usdt-guide__step-list li {
    background-color: #f0f8ff; /* Light blue background for steps */
    border-left: 5px solid #007BFF; /* Main color accent */
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-deposit-withdrawal-usdt-guide__step-list li:hover {
    transform: translateY(-5px);
}

.page-deposit-withdrawal-usdt-guide__step-title {
    font-size: 1.8em;
    color: #007BFF;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-deposit-withdrawal-usdt-guide__image-step {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-deposit-withdrawal-usdt-guide__image-inline {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}


/* Bullet List Styling */
.page-deposit-withdrawal-usdt-guide__bullet-list {
    list-style: none;
    padding: 0;
}

.page-deposit-withdrawal-usdt-guide__bullet-list li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.page-deposit-withdrawal-usdt-guide__bullet-list li::before {
    content: '✓';
    color: #FFD700; /* Accent color for checkmark */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
}

/* FAQ Section */
.page-deposit-withdrawal-usdt-guide__faq-item {
    background-color: #f0f8ff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-deposit-withdrawal-usdt-guide__faq-question {
    font-size: 1.3em;
    color: #007BFF;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer; /* To indicate it's interactive */
    position: relative;
    padding-right: 30px;
}

.page-deposit-withdrawal-usdt-guide__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #007BFF;
    transition: transform 0.3s ease;
}

.page-deposit-withdrawal-usdt-guide__faq-question.active::after {
    content: '-';
    transform: rotate(0deg); /* No rotation for minus, just change content */
}

.page-deposit-withdrawal-usdt-guide__faq-answer {
    font-size: 1em;
    color: #555;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 10px;
}

.page-deposit-withdrawal-usdt-guide__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    padding: 10px;
}

/* Conclusion Section */
.page-deposit-withdrawal-usdt-guide__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

.page-deposit-withdrawal-usdt-guide__conclusion p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
    font-size: 1.15em;
}

/* Disclaimer */
.page-deposit-withdrawal-usdt-guide__disclaimer {
    background-color: #f0f0f0;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
    color: #666;
    border-top: 1px solid #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-deposit-withdrawal-usdt-guide__title {
        font-size: 2.2em;
    }

    .page-deposit-withdrawal-usdt-guide__subtitle {
        font-size: 1em;
    }

    .page-deposit-withdrawal-usdt-guide__section-title {
        font-size: 2em;
    }

    .page-deposit-withdrawal-usdt-guide__step-title {
        font-size: 1.5em;
    }

    .page-deposit-withdrawal-usdt-guide__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-deposit-withdrawal-usdt-guide__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-deposit-withdrawal-usdt-guide__cta-group {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-deposit-withdrawal-usdt-guide__title {
        font-size: 1.8em;
    }

    .page-deposit-withdrawal-usdt-guide__section-title {
        font-size: 1.8em;
    }

    .page-deposit-withdrawal-usdt-guide__step-list li {
        padding: 15px;
    }

    .page-deposit-withdrawal-usdt-guide__faq-question {
        font-size: 1.1em;
    }
}