:root {
  --phsky-primary-color: #F2C14E;
  --phsky-secondary-color: #FFD36B;
  --phsky-card-bg: #111111;
  --phsky-background: #0A0A0A;
  --phsky-text-main: #FFF6D6;
  --phsky-border-color: #3A2A12;
  --phsky-glow-color: #FFD36B;
  --phsky-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-support {
  font-family: Arial, sans-serif;
  color: var(--phsky-text-main); /* Default text color for the page */
  background-color: var(--phsky-background); /* Page background from custom scheme */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-support__hero-section {
  background: var(--phsky-background);
  padding-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.page-support__hero-content {
  max-width: 800px;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-support__hero-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  color: var(--phsky-primary-color);
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.page-support__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--phsky-text-main);
  margin-bottom: 30px;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-support__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-support__section {
  padding: 60px 0;
  background-color: var(--phsky-background);
}

.page-support__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 700;
  color: var(--phsky-primary-color);
  text-align: center;
  margin-bottom: 20px;
}

.page-support__section-intro {
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--phsky-text-main);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-support__card {
  background-color: var(--phsky-card-bg);
  border: 1px solid var(--phsky-border-color);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-support__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px var(--phsky-glow-color);
}

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

.page-support__card-title {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--phsky-primary-color);
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-support__card-title a {
  color: var(--phsky-primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__card-title a:hover {
  color: var(--phsky-secondary-color);
  text-decoration: underline;
}

.page-support__card-text {
  font-size: 1em;
  color: var(--phsky-text-main);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-primary {
  background: var(--phsky-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-support__btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6), 0 0 10px var(--phsky-glow-color);
}

.page-support__btn-secondary {
  background-color: transparent;
  color: var(--phsky-primary-color);
  border: 2px solid var(--phsky-primary-color);
}

.page-support__btn-secondary:hover {
  background-color: var(--phsky-primary-color);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-support__content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.page-support__content-block--reversed {
  flex-direction: row-reverse;
}

.page-support__content-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  min-height: 200px; /* Enforce minimum size */
}

.page-support__content-image--left {
  margin-right: 20px;
}

.page-support__content-image--right {
  margin-left: 20px;
}

.page-support__text-content {
  flex: 1;
  min-width: 300px;
}

.page-support__sub-title {
  font-size: 1.5em;
  font-weight: 600;
  color: var(--phsky-primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-support__text-content p {
  font-size: 1em;
  line-height: 1.7;
  color: var(--phsky-text-main);
  margin-bottom: 20px;
}

.page-support__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-support__list-item {
  background-color: var(--phsky-card-bg);
  border: 1px solid var(--phsky-border-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-support__list-title {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--phsky-primary-color);
  margin-bottom: 10px;
}

.page-support__list-item p {
  font-size: 1em;
  line-height: 1.6;
  color: var(--phsky-text-main);
}

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

.page-support__faq-item {
  background-color: var(--phsky-card-bg);
  border: 1px solid var(--phsky-border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: var(--phsky-card-bg);
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}