/* style/blog-secure-withdrawal-process.css */

/* Custom Colors */
:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient-start: #2AD16F;
    --color-button-gradient-gradient-end: #13994A;
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

/* Base styles for the page content, ensuring contrast with dark body background */
.page-blog-secure-withdrawal-process {
    font-family: Arial, sans-serif;
    color: var(--color-text-main); /* Light text for dark background */
    background-color: var(--color-background); /* Dark background */
    line-height: 1.6;
    padding-bottom: 40px; /* Add some padding at the bottom for content */
}

/* General section styling */
.page-blog-secure-withdrawal-process__section {
    padding: 40px 0;
    margin-bottom: 20px;
}

.page-blog-secure-withdrawal-process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-secure-withdrawal-process__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    background-color: var(--color-deep-green); /* A darker green for the hero section background */
    overflow: hidden;
}

.page-blog-secure-withdrawal-process__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height to prevent image from being too tall */
    overflow: hidden;
    margin-bottom: 30px;
}

.page-blog-secure-withdrawal-process__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-secure-withdrawal-process__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-secure-withdrawal-process__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    color: var(--color-text-main);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-blog-secure-withdrawal-process__description {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-blog-secure-withdrawal-process__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-secure-withdrawal-process__btn-primary {
    background: var(--color-button-gradient-start); /* Fallback for gradient */
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: #ffffff;
    border: none;
}

.page-blog-secure-withdrawal-process__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-blog-secure-withdrawal-process__btn-secondary {
    background-color: var(--color-card-bg); /* Dark green for secondary button background */
    color: var(--color-text-main);
    border: 2px solid var(--color-border);
}

.page-blog-secure-withdrawal-process__btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    background-color: var(--color-deep-green);
    color: var(--color-gold);
}

/* Section Titles */
.page-blog-secure-withdrawal-process__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-gold); /* Gold for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Text Blocks */
.page-blog-secure-withdrawal-process__text-block {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-text-main);
}

/* Image Styling */
.page-blog-secure-withdrawal-process__image-wrapper {
    text-align: center;
    margin: 30px 0;
}

.page-blog-secure-withdrawal-process__image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin: 0 auto; /* Center images */
}

/* Why Choose Section */
.page-blog-secure-withdrawal-process__why-choose {
    background-color: var(--color-background);
}

/* Withdrawal Guide Section */
.page-blog-secure-withdrawal-process__withdrawal-guide {
    background-color: var(--color-card-bg); /* Slightly lighter dark for steps */
    padding-bottom: 60px;
}

.page-blog-secure-withdrawal-process__step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 30px;
}

.page-blog-secure-withdrawal-process__step-item {
    background-color: var(--color-deep-green);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-left: 5px solid var(--color-primary);
}

.page-blog-secure-withdrawal-process__step-title {
    font-size: 1.5rem;
    color: var(--color-text-main);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-secure-withdrawal-process__step-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

/* Security Measures Section */
.page-blog-secure-withdrawal-process__security-measures {
    background-color: var(--color-deep-green); /* Darker background */
    color: var(--color-text-main);
}

.page-blog-secure-withdrawal-process__security-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-secure-withdrawal-process__security-item {
    background-color: var(--color-card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-top: 5px solid var(--color-gold);
}

.page-blog-secure-withdrawal-process__security-feature-title {
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-secure-withdrawal-process__security-feature-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

/* Withdrawal Tips Section */
.page-blog-secure-withdrawal-process__withdrawal-tips {
    background-color: var(--color-background);
}

.page-blog-secure-withdrawal-process__tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-secure-withdrawal-process__tips-item {
    background-color: var(--color-card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-right: 5px solid var(--color-secondary);
}

.page-blog-secure-withdrawal-process__tips-title {
    font-size: 1.4rem;
    color: var(--color-text-main);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-secure-withdrawal-process__tips-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

/* Common Issues Section */
.page-blog-secure-withdrawal-process__common-issues {
    background-color: var(--color-card-bg); /* Use a card background for this section */
    color: var(--color-text-main);
}

.page-blog-secure-withdrawal-process__issue-card {
    background-color: var(--color-deep-green);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-left: 5px solid var(--color-gold);
}

.page-blog-secure-withdrawal-process__issue-title {
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-secure-withdrawal-process__issue-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

/* Customer Support Section */
.page-blog-secure-withdrawal-process__customer-support {
    background-color: var(--color-deep-green);
    color: var(--color-text-main);
    text-align: center;
}

.page-blog-secure-withdrawal-process__contact-list {
    list-style: none;
    padding: 0;
    margin: 20px auto 30px auto;
    max-width: 600px;
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

.page-blog-secure-withdrawal-process__contact-item {
    margin-bottom: 10px;
    padding: 10px;
    background-color: var(--color-card-bg);
    border-radius: 5px;
}


/* FAQ Section */
.page-blog-secure-withdrawal-process__faq-section {
    background-color: var(--color-background);
}

.page-blog-secure-withdrawal-process__faq-list {
    margin-top: 30px;
}

.page-blog-secure-withdrawal-process__faq-item {
    background-color: var(--color-card-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 1px solid var(--color-divider);
}

.page-blog-secure-withdrawal-process__faq-item summary {
    list-style: none; /* Hide default marker */
}

.page-blog-secure-withdrawal-process__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-blog-secure-withdrawal-process__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-text-main);
    cursor: pointer;
    background-color: var(--color-deep-green);
    border-bottom: 1px solid var(--color-divider);
}

.page-blog-secure-withdrawal-process__faq-question:hover {
    background-color: var(--color-deep-green);
    opacity: 0.9;
}