/* style/resources-g088-withdrawal-guide.css */
.page-resources-g088-withdrawal-guide {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-resources-g088-withdrawal-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-g088-withdrawal-guide__hero {
    background: linear-gradient(135deg, #003366, #1a4d80);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-g088-withdrawal-guide__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="%23004a8c" stroke-width="0.5"/></pattern><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.1;
    z-index: 0;
}

.page-resources-g088-withdrawal-guide__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00; /* Wealth Gold for accent */
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.page-resources-g088-withdrawal-guide__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.page-resources-g088-withdrawal-guide__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-resources-g088-withdrawal-guide__button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-g088-withdrawal-guide__button--primary {
    background-color: #FFCC00; /* Accent color */
    color: #003366; /* Main color for text */
    border: 2px solid #FFCC00;
}

.page-resources-g088-withdrawal-guide__button--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-2px);
}

.page-resources-g088-withdrawal-guide__button--secondary {
    background-color: transparent;
    color: #FFCC00; /* Accent color for text */
    border: 2px solid #FFCC00;
}

.page-resources-g088-withdrawal-guide__button--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
}

.page-resources-g088-withdrawal-guide__section {
    padding: 60px 0;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.page-resources-g088-withdrawal-guide__section:nth-of-type(even) {
    background-color: #f2f2f2;
}

.page-resources-g088-withdrawal-guide__section-title {
    font-size: 2.5em;
    color: #003366; /* Main color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-g088-withdrawal-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Accent color */
    border-radius: 2px;
}

.page-resources-g088-withdrawal-guide__intro p,
.page-resources-g088-withdrawal-guide__troubleshoot p,
.page-resources-g088-withdrawal-guide__tips ul {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-g088-withdrawal-guide__step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-resources-g088-withdrawal-guide__step-list li {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.page-resources-g088-withdrawal-guide__step-list li::before {
    counter-increment: step-counter;
    content: "Bước " counter(step-counter);
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: #003366; /* Main color */
    color: #FFCC00; /* Accent color */
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-resources-g088-withdrawal-guide__step-list h3 {
    font-size: 1.8em;
    color: #003366; /* Main color */
    margin-top: 10px;
    margin-bottom: 15px;
}

.page-resources-g088-withdrawal-guide__step-list p {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 15px;
    text-align: justify;
}

.page-resources-g088-withdrawal-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-g088-withdrawal-guide__image--small {
    max-width: 60%;
}

.page-resources-g088-withdrawal-guide__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-g088-withdrawal-guide__info-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 5px solid #003366; /* Main color */
}

.page-resources-g088-withdrawal-guide__info-card h3 {
    font-size: 1.6em;
    color: #003366; /* Main color */
    margin-bottom: 15px;
}

.page-resources-g088-withdrawal-guide__info-card p,
.page-resources-g088-withdrawal-guide__info-card ul {
    font-size: 1.05em;
    color: #555;
    text-align: left;
}

.page-resources-g088-withdrawal-guide__info-card ul {
    list-style: disc inside;
    margin-top: 15px;
}

.page-resources-g088-withdrawal-guide__info-card ul li {
    margin-bottom: 8px;
}

.page-resources-g088-withdrawal-guide__conditions ul,
.page-resources-g088-withdrawal-guide__troubleshoot ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-resources-g088-withdrawal-guide__conditions ul li,
.page-resources-g088-withdrawal-guide__troubleshoot ul li {
    background-color: #fff;
    border-left: 5px solid #FFCC00; /* Accent color */
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    font-size: 1.1em;
    color: #444;
    text-align: justify;
}

.page-resources-g088-withdrawal-guide__conditions ul li strong {
    color: #003366;
}

.page-resources-g088-withdrawal-guide__cta {
    background-color: #003366; /* Main color */
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-resources-g088-withdrawal-guide__cta .page-resources-g088-withdrawal-guide__section-title {
    color: #FFCC00; /* Accent color */
}

.page-resources-g088-withdrawal-guide__cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-resources-g088-withdrawal-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-g088-withdrawal-guide__hero-title {
        font-size: 2.5em;
    }
    .page-resources-g088-withdrawal-guide__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-g088-withdrawal-guide__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-g088-withdrawal-guide__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-resources-g088-withdrawal-guide__section-title {
        font-size: 2em;
    }
    .page-resources-g088-withdrawal-guide__info-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-g088-withdrawal-guide__image--small {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .page-resources-g088-withdrawal-guide__hero-title {
        font-size: 2em;
    }
    .page-resources-g088-withdrawal-guide__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-g088-withdrawal-guide__button {
        font-size: 1em;
        padding: 10px 20px;
    }
    .page-resources-g088-withdrawal-guide__section-title {
        font-size: 1.8em;
    }
    .page-resources-g088-withdrawal-guide__step-list li {
        padding: 20px;
    }
    .page-resources-g088-withdrawal-guide__step-list li::before {
        top: -10px;
        left: 15px;
        padding: 6px 12px;
    }
    .page-resources-g088-withdrawal-guide__step-list h3 {
        font-size: 1.5em;
    }
    .page-resources-g088-withdrawal-guide__conditions ul li,
    .page-resources-g088-withdrawal-guide__troubleshoot ul li {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-resources-g088-withdrawal-guide__image--small {
        max-width: 95%;
    }
}