/* style/resources-mcw77-deposits-withdrawals.css */

/* Base styles for the page content */
.page-resources-mcw77-deposits-withdrawals {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light background */
  background-color: #ffffff; /* Explicitly setting for clarity, though shared.css might define body */
}

/* Hero Section */
.page-resources-mcw77-deposits-withdrawals__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-resources-mcw77-deposits-withdrawals__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-mcw77-deposits-withdrawals__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
  z-index: 2;
}

.page-resources-mcw77-deposits-withdrawals__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
}

.page-resources-mcw77-deposits-withdrawals__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff; /* Ensure high contrast */
  font-weight: 700;
}

.page-resources-mcw77-deposits-withdrawals__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0; /* Slightly lighter white for description */
  font-weight: 400;
}

/* General Section Styling */
.page-resources-mcw77-deposits-withdrawals__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-resources-mcw77-deposits-withdrawals__section-title {
  font-size: 2.5em;
  color: #017439; /* Brand primary color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-mcw77-deposits-withdrawals__text-block {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.8;
  color: #333333;
}

.page-resources-mcw77-deposits-withdrawals__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-resources-mcw77-deposits-withdrawals__card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease;
  color: #333333;
  display: flex;
  flex-direction: column;
}

.page-resources-mcw77-deposits-withdrawals__card:hover {
  transform: translateY(-5px);
}

.page-resources-mcw77-deposits-withdrawals__card-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-mcw77-deposits-withdrawals__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-mcw77-deposits-withdrawals__list li {
  margin-bottom: 10px;
  color: #333333;
}

/* Images in content areas */
.page-resources-mcw77-deposits-withdrawals__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}