/* style/resources-payment-withdrawal.css */

/* Base styles for the page content wrapper */
.page-resources-payment-withdrawal {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: transparent; /* Body background handled by shared.css */
}

/* Section styling */
.page-resources-payment-withdrawal__section {
    padding: 60px 0;
    margin-bottom: 20px;
    background-color: #1A202C; /* Dark background for sections */
    color: #ffffff; /* White text on dark background */
}

.page-resources-payment-withdrawal__section:nth-of-type(even) {
    background-color: #1A202C; /* Consistent dark background */
}

.page-resources-payment-withdrawal__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-resources-payment-withdrawal__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px; /* Adjust padding, padding-top handled by inline style */
    background-color: #1A202C;
    color: #ffffff;
    overflow: hidden; /* Ensure no overflow */
}

.page-resources-payment-withdrawal__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 40px;
}

.page-resources-payment-withdrawal__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for title */
    line-height: 1.2;
}

.page-resources-payment-withdrawal__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-resources-payment-withdrawal__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%; /* Ensure container takes full width for mobile responsiveness */
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-resources-payment-withdrawal__btn-primary,
.page-resources-payment-withdrawal__btn-secondary {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-payment-withdrawal__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-resources-payment-withdrawal__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background image */
    filter: none; /* No filter for image color */
    min-width: 200px; /* Enforce min-width for content images */
    min-height: 200px; /* Enforce min-height for content images */
}

/* General typography */
.page-resources-payment-withdrawal__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
}

.page-resources-payment-withdrawal__subsection-title {
    font-size: 2em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-resources-payment-withdrawal__section-paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0;
}

/* Buttons */
.page-resources-payment-withdrawal__btn-primary,
.page-resources-payment-withdrawal__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.page-resources-payment-withdrawal__btn-primary {
    background-color: #FFD700;
    color: #1A202C;
    border: 2px solid #FFD700;
}

.page-resources-payment-withdrawal__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-resources-payment-withdrawal__btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-resources-payment-withdrawal__btn-secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-resources-payment-withdrawal__cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}