/* style/beginner-guide-withdrawal-steps.css */

/* Biến CSS */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #000080; /* Dark Blue */
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-on-primary: #333333; /* Dark text for gold background */
    --text-on-secondary: #ffffff; /* Light text for dark blue background */
    --button-bg-primary: var(--primary-color);
    --button-text-primary: var(--text-on-primary);
    --button-bg-secondary: var(--secondary-color);
    --button-text-secondary: var(--text-on-secondary);
}

.page-beginner-guide-withdrawal-steps {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f8f8f8;
}

.page-beginner-guide-withdrawal-steps .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-beginner-guide-withdrawal-steps .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-withdrawal-steps .hero-section h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-beginner-guide-withdrawal-steps .hero-section .subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.page-beginner-guide-withdrawal-steps .hero-section .highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.page-beginner-guide-withdrawal-steps .cta-button {
    display: inline-block;
    background-color: var(--button-bg-primary);
    color: var(--button-text-primary);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-beginner-guide-withdrawal-steps .cta-button:hover {
    background-color: #e6c200; /* Darker gold */
    transform: translateY(-3px);
}

/* Introduction Section */
.page-beginner-guide-withdrawal-steps .introduction-section {
    padding: 60px 0;
    background-color: var(--text-light);
    text-align: center;
    border-bottom: 1px solid #eee;
}

.page-beginner-guide-withdrawal-steps .introduction-section p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 15px;
    color: var(--text-dark);
}

.page-beginner-guide-withdrawal-steps .introduction-section .highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Steps Section */
.page-beginner-guide-withdrawal-steps .steps-section {
    padding: 80px 0;
    background-color: #f0f2f5;
}

.page-beginner-guide-withdrawal-steps .steps-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 60px;
}

.page-beginner-guide-withdrawal-steps .step-item {
    background-color: var(--text-light);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-beginner-guide-withdrawal-steps .step-icon {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-withdrawal-steps .step-item h3 {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.page-beginner-guide-withdrawal-steps .step-item p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-dark);
    max-width: 700px;
}

.page-beginner-guide-withdrawal-steps .step-item ul {
    list-style-type: disc;
    text-align: left;
    margin-left: 20px;
    margin-bottom: 20px;
    max-width: 700px;
}

.page-beginner-guide-withdrawal-steps .step-item ul ul {
    list-style-type: circle;
    margin-left: 20px;
}

.page-beginner-guide-withdrawal-steps .step-item li {
    margin-bottom: 10px;
    font-size: 1em;
    color: var(--text-dark);
}

.page-beginner-guide-withdrawal-steps .step-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-withdrawal-steps .button-small {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-on-secondary);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-beginner-guide-withdrawal-steps .button-small:hover {
    background-color: #000066; /* Darker blue */
    transform: translateY(-2px);
}

.page-beginner-guide-withdrawal-steps .inline-link {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-beginner-guide-withdrawal-steps .inline-link:hover {
    color: var(--primary-color);
}

/* Important Notes Section */
.page-beginner-guide-withdrawal-steps .important-notes-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-on-primary);
}

.page-beginner-guide-withdrawal-steps .important-notes-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--text-on-primary);
    margin-bottom: 60px;
}

.page-beginner-guide-withdrawal-steps .note-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-beginner-guide-withdrawal-steps .note-item {
    background-color: var(--text-light);
    color: var(--text-dark);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-withdrawal-steps .note-item h3 {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-beginner-guide-withdrawal-steps .note-item p, .page-beginner-guide-withdrawal-steps .note-item ul {
    font-size: 1em;
    margin-bottom: 10px;
}

.page-beginner-guide-withdrawal-steps .note-item ul {
    list-style-type: disc;
    margin-left: 20px;
}

.page-beginner-guide-withdrawal-steps .note-icon {
    width: 60px;
    height: 60px;
    margin-top: 20px;
    opacity: 0.7;
}

/* Troubleshooting Section */
.page-beginner-guide-withdrawal-steps .troubleshooting-section {
    padding: 80px 0;
    background-color: #f0f2f5;
}

.page-beginner-guide-withdrawal-steps .troubleshooting-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 60px;
}

.page-beginner-guide-withdrawal-steps .faq-item {
    background-color: var(--text-light);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-withdrawal-steps .faq-item h3 {
    font-size: 1.6em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-beginner-guide-withdrawal-steps .faq-item p, .page-beginner-guide-withdrawal-steps .faq-item ul {
    font-size: 1.05em;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.page-beginner-guide-withdrawal-steps .faq-item ul {
    list-style-type: disc;
    margin-left: 20px;
}

.page-beginner-guide-withdrawal-steps .contact-support {
    text-align: center;
    margin-top: 50px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 40px;
    border-radius: 15px;
}

.page-beginner-guide-withdrawal-steps .contact-support p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* Why Nổ Hũ 789 Section */
.page-beginner-guide-withdrawal-steps .why-nổ_hũ_789-section {
    padding: 80px 0;
    background-color: var(--text-light);
}

.page-beginner-guide-withdrawal-steps .why-nổ_hũ_789-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 60px;
}

.page-beginner-guide-withdrawal-steps .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-beginner-guide-withdrawal-steps .feature-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-beginner-guide-withdrawal-steps .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-withdrawal-steps .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

.page-beginner-guide-withdrawal-steps .feature-item h3 {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-beginner-guide-withdrawal-steps .feature-item p {
    font-size: 1em;
    color: var(--text-dark);
}

/* Final CTA Section */
.page-beginner-guide-withdrawal-steps .final-cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    text-align: center;
}

.page-beginner-guide-withdrawal-steps .final-cta-section h2 {
    font-size: 2.8em;
    margin-bottom: 30px;
    color: var(--text-on-primary);
}

.page-beginner-guide-withdrawal-steps .final-cta-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: var(--text-on-primary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-beginner-guide-withdrawal-steps .cta-buttons .cta-button {
    margin: 0 15px;
}

.page-beginner-guide-withdrawal-steps .cta-buttons .cta-button.secondary {
    background-color: var(--button-bg-secondary);
    color: var(--button-text-secondary);
}

.page-beginner-guide-withdrawal-steps .cta-buttons .cta-button.secondary:hover {
    background-color: #000066;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-beginner-guide-withdrawal-steps .hero-section h1 {
        font-size: 2.8em;
    }
    .page-beginner-guide-withdrawal-steps .hero-section .subtitle {
        font-size: 1.3em;
    }
    .page-beginner-guide-withdrawal-steps .steps-section h2,
    .page-beginner-guide-withdrawal-steps .important-notes-section h2,
    .page-beginner-guide-withdrawal-steps .troubleshooting-section h2,
    .page-beginner-guide-withdrawal-steps .why-nổ_hũ_789-section h2,
    .page-beginner-guide-withdrawal-steps .final-cta-section h2 {
        font-size: 2em;
    }
    .page-beginner-guide-withdrawal-steps .note-grid,
    .page-beginner-guide-withdrawal-steps .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-beginner-guide-withdrawal-steps .hero-section {
        padding: 80px 0;
    }
    .page-beginner-guide-withdrawal-steps .hero-section h1 {
        font-size: 2.2em;
    }
    .page-beginner-guide-withdrawal-steps .hero-section .subtitle {
        font-size: 1.1em;
    }
    .page-beginner-guide-withdrawal-steps .cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-beginner-guide-withdrawal-steps .step-item {
        padding: 30px;
    }
    .page-beginner-guide-withdrawal-steps .step-item h3 {
        font-size: 1.5em;
    }
    .page-beginner-guide-withdrawal-steps .note-grid,
    .page-beginner-guide-withdrawal-steps .feature-grid {
        grid-template-columns: 1fr;
    }
    .page-beginner-guide-withdrawal-steps .cta-buttons .cta-button {
        margin: 10px 0;
        display: block;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-withdrawal-steps .hero-section h1 {
        font-size: 1.8em;
    }
    .page-beginner-guide-withdrawal-steps .hero-section .subtitle {
        font-size: 1em;
    }
    .page-beginner-guide-withdrawal-steps .steps-section h2,
    .page-beginner-guide-withdrawal-steps .important-notes-section h2,
    .page-beginner-guide-withdrawal-steps .troubleshooting-section h2,
    .page-beginner-guide-withdrawal-steps .why-nổ_hũ_789-section h2,
    .page-beginner-guide-withdrawal-steps .final-cta-section h2 {
        font-size: 1.8em;
    }
    .page-beginner-guide-withdrawal-steps .step-item h3 {
        font-size: 1.3em;
    }
    .page-beginner-guide-withdrawal-steps .cta-button {
        width: 90%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-beginner-guide-withdrawal-steps .final-cta-section p {
        font-size: 1em;
    }
}