/* style/blog-how-to-securely-deposit-withdraw-ax88.css */

:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --btn-register: #C30808;
    --btn-login: #C30808;
    --btn-text-register-login: #FFFF00;
}

.page-blog-how-to-securely-deposit-withdraw-ax88 {
    font-family: Arial, sans-serif;
    color: var(--text-dark); /* Body background is light, so use dark text */
    line-height: 1.6;
}

.page-blog-how-to-securely-deposit-withdraw-ax88__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    background-color: var(--secondary-color);
}

.page-blog-how-to-securely-deposit-withdraw-ax88__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-blog-how-to-securely-deposit-withdraw-ax88__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-how-to-securely-deposit-withdraw-ax88__hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 20px;
}

.page-blog-how-to-securely-deposit-withdraw-ax88__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-how-to-securely-deposit-withdraw-ax88__hero-description {
    font-size: 1.1em;
    color: var(--text-dark);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-securely-deposit-withdraw-ax88__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-blog-how-to-securely-deposit-withdraw-ax88__btn-primary,
.page-blog-how-to-securely-deposit-withdraw-ax88__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-how-to-securely-deposit-withdraw-ax88__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-blog-how-to-securely-deposit-withdraw-ax88__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.page-blog-how-to-securely-deposit-withdraw-ax88__btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-how-to-securely-deposit-withdraw-ax88__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.page-blog-how-to-securely-deposit-withdraw-ax88__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--secondary-color); /* Explicitly white background for content */
    color: var(--text-dark);
}

.page-blog-how-to-securely-deposit-withdraw-ax88__container {
    max-width: 100%;
    box-sizing: border-box;
}

.page-blog-how-to-securely-deposit-withdraw-ax88__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-blog-how-to-securely-deposit-withdraw-ax88__subsection-title {
    font-size: clamp(1.4em, 2.5vw, 2em);
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-how-to-securely-deposit-withdraw-ax88 p,
.page-blog-how-to-securely-deposit-withdraw-ax88 li {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: var(--text-dark);
}

.page-blog-how-to-securely-deposit-withdraw-ax88 ul,
.page-blog-how-to-securely-deposit-withdraw-ax88 ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-blog-how-to-securely-deposit-withdraw-ax88__method-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
    margin-bottom: 40px;
}

.page-blog-how-to-securely-deposit-withdraw-ax88__card {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    color: var(--text-dark);
}

.page-blog-how-to-securely-deposit-withdraw-ax88__card:hover {
    transform: translateY(-5px);
}

.page-blog-how-to-securely-deposit-withdraw-ax88__card-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 15px auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
}

.page-blog-how-to-securely-deposit-withdraw-ax88__card-title {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-how-to-securely-deposit-withdraw-ax88__cta-block {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-blog-how-to-securely-deposit-withdraw-ax88__cta-title {
    font-size: clamp(1.5em, 2.5vw, 2.2em);
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-blog-how-to-securely-deposit-withdraw-ax88__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.page-blog-how-to-securely-deposit-withdraw-ax88__faq-list {
    margin-top: 30px;
}

.page-blog-how-to-securely-deposit-withdraw-ax88__faq-item {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-dark);
}

.page-blog-how-to-securely-deposit-withdraw-ax88__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--primary-color);
    outline: none;
}

.page-blog-how-to-securely-deposit-withdraw-ax88__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-how-to-securely-deposit-withdraw-ax88__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.page-blog-how-to-securely-deposit-withdraw-ax88__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--primary-color);
}

.page-blog-how-to-securely-deposit-withdraw-ax88__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    color: var(--text-dark);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-blog-how-to-securely-deposit-withdraw-ax88 {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-how-to-securely-deposit-withdraw-ax88__hero-section {
        padding: 10px 15px 40px 15px;
    }

    .page-blog-how-to-securely-deposit-withdraw-ax88__main-title {
        font-size: 1.8em; /* Adjusted for mobile */
    }

    .page-blog-how-to-securely-deposit-withdraw-ax88__hero-description {
        font-size: 1em;
    }

    .page-blog-how-to-securely-deposit-withdraw-ax88__cta-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }

    .page-blog-how-to-securely-deposit-withdraw-ax88__btn-primary,
    .page-blog-how-to-securely-deposit-withdraw-ax88__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-how-to-securely-deposit-withdraw-ax88__content-area {
        padding: 30px 15px;
    }

    .page-blog-how-to-securely-deposit-withdraw-ax88__section-title {
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-blog-how-to-securely-deposit-withdraw-ax88__subsection-title {
        font-size: 1.2em;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .page-blog-how-to-securely-deposit-withdraw-ax88__method-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-how-to-securely-deposit-withdraw-ax88__card {
        padding: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .page-blog-how-to-securely-deposit-withdraw-ax88__card-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px; /* Still ensure minimum size */
        min-height: 150px;
    }

    .page-blog-how-to-securely-deposit-withdraw-ax88 p,
    .page-blog-how-to-securely-deposit-withdraw-ax88 li {
        font-size: 0.95em;
    }

    .page-blog-how-to-securely-deposit-withdraw-ax88__cta-block {
        padding: 30px 20px;
    }

    .page-blog-how-to-securely-deposit-withdraw-ax88__cta-title {
        font-size: 1.4em;
    }

    .page-blog-how-to-securely-deposit-withdraw-ax88__cta-description {
        font-size: 1em;
    }

    .page-blog-how-to-securely-deposit-withdraw-ax88__faq-item summary {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-blog-how-to-securely-deposit-withdraw-ax88__faq-answer {
        padding: 0 20px 15px 20px;
    }
    
    /* Ensure all content containers are responsive */
    .page-blog-how-to-securely-deposit-withdraw-ax88__container,
    .page-blog-how-to-securely-deposit-withdraw-ax88__hero-content,
    .page-blog-how-to-securely-deposit-withdraw-ax88__method-cards,
    .page-blog-how-to-securely-deposit-withdraw-ax88__cta-block,
    .page-blog-how-to-securely-deposit-withdraw-ax88__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}