/* style/support.css */

/* --- General Styles --- */
.page-support {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #f8f8f8; /* Light background for the page */
}

.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-support__section-title {
  font-size: 36px;
  color: #0A2239;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-support__text-block {
  font-size: 17px;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

/* --- Hero Section --- */
.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background: linear-gradient(135deg, #0A2239, #1a3c5a); /* Dark background for hero */
  color: #ffffff; /* Light text for dark background */
  overflow: hidden; /* Prevents image overflow */
}

.page-support__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-support__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-support__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
  min-width: 200px;
  min-height: 200px;
}

.page-support__hero-image img:hover {
  transform: scale(1.02);
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-support__hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 800;
  color: #E6B325; /* Auxiliary color for highlight */
}

.page-support__hero-description {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-support__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #E6B325; /* Auxiliary color for CTA */
  color: #0A2239;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-support__cta-button:hover {
  background: #ffc83a;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* --- Intro Section --- */
.page-support__intro-section {
  padding: 60px 0;
  background-color: #ffffff; /* Light background */
}

/* --- Channels Section --- */
.page-support__channels-section {
  padding: 60px 0;
  background-color: #0A2239; /* Dark background */
  color: #ffffff; /* Light text for dark background */
}

.page-support__channels-section .page-support__section-title {
  color: #E6B325; /* Auxiliary color for title */
}

.page-support__channels-section .page-support__text-block {
  color: #f0f0f0;
}

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

.page-support__card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.page-support__card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Enforce min-size */
  min-height: 200px; /* Enforce min-size */
}

.page-support__card-title {
  font-size: 24px;
  color: #0A2239;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-support__card-text {
  font-size: 16px;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1; /* Allows text to take available space */
}

.page-support__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: #E6B325;
  color: #0A2239;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.page-support__btn-primary:hover {
  background: #ffc83a;
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* --- Issues Section --- */
.page-support__issues-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-support__issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-support__issue-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__issue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.page-support__issue-title {
  font-size: 22px;
  color: #0A2239;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-support__issue-description {
  font-size: 15px;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: #0A2239;
  color: #E6B325;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #0A2239;
}

.page-support__btn-secondary:hover {
  background: #1a3c5a;
  color: #ffc83a;
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* --- Commitment Section --- */
.page-support__commitment-section {
  padding: 60px 0;
  background-color: #0A2239;
  color: #ffffff;
}

.page-support__commitment-section .page-support__section-title {
  color: #E6B325;
}

.page-support__commitment-section .page-support__text-block {
  color: #f0f0f0;
}

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

.page-support__commitment-list li {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
  min-height: 250px; /* Ensure sufficient height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-support__commitment-list li:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.page-support__commitment-list img {
  width: 200px; /* Adhering to the strict minimum size for ALL images */
  height: 200px; /* Adhering to the strict minimum size for ALL images */
  margin-bottom: 20px;
  filter: brightness(1.2); /* Allowed for icons to make them pop, not changing original color */
  object-fit: contain; /* Ensure the image fits within the 200x200 area without cropping */
}

.page-support__list-title {
  font-size: 20px;
  color: #E6B325;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-support__commitment-list p {
  font-size: 15px;
  color: #cccccc;
}

/* --- Self-Help Section --- */
.page-support__self-help-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

/* Reusing .page-support__card styles for self-help cards */

/* --- FAQ Section --- */
.page-support__faq-section {
  padding: 60px 0;
  background-color: #0A2239;
  color: #ffffff;
}

.page-support__faq-section .page-support__section-title {
  color: #E6B325;
}

.page-support__faq-section .page-support__text-block {
  color: #f0f0f0;
}

.page-support__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}