.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #ffffff; /* Explicitly set for clarity, though shared.css should handle body */
}

.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);
  background: linear-gradient(135deg, #017439, #ffffff);
  color: #ffffff;
}

.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;
  max-width: 800px; /* Limit hero image width on desktop for better composition */
}

.page-support__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
}

.page-support__main-title {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support__intro-text {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-support__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #C30808; /* Use specific color for CTA button */
  color: #FFFF00; /* Use specific color for CTA button font */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
}

.page-support__cta-button:hover {
  background: #a30606;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-support__section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-support__dark-section {
  background-color: #017439;
  color: #ffffff;
}

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

.page-support__section-title {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
  color: #017439;
}

.page-support__dark-section .page-support__section-title {
  color: #ffffff;
}

.page-support__section-description {
  font-size: 16px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

.page-support__features-grid,
.page-support__contact-grid,
.page-support__guides-grid,
.page-support__responsible-features,
.page-support__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__feature-item,
.page-support__contact-item,
.page-support__guide-item,
.page-support__responsible-item,
.page-support__security-item {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__dark-section .page-support__feature-item,
.page-support__dark-section .page-support__contact-item,
.page-support__dark-section .page-support__guide-item,
.page-support__dark-section .page-support__responsible-item,
.page-support__dark-section .page-support__security-item {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.page-support__feature-item:hover,
.page-support__contact-item:hover,
.page-support__guide-item:hover,
.page-support__responsible-item:hover,
.page-support__security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-support__feature-item img,
.page-support__contact-item img,
.page-support__guide-item img,
.page-support__responsible-item img,
.page-support__security-item img {
  max-width: 100%; /* Ensure images are responsive */
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 5px;
  object-fit: cover;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-support__feature-title,
.page-support__contact-title,
.page-support__guide-title,
.page-support__responsible-title,
.page-support__security-title {
  font-size: 22px;
  color: #017439;
  margin-bottom: 15px;
}

.page-support__dark-section .page-support__feature-title,
.page-support__dark-section .page-support__contact-title,
.page-support__dark-section .page-support__guide-title,
.page-support__dark-section .page-support__responsible-title,
.page-support__dark-section .page-support__security-title {
  color: #ffffff;
}

.page-support__guide-title a,
.page-support__security-title a {
  color: #017439;
  text-decoration: none;
}

.page-support__guide-title a:hover,
.page-support__security-title a:hover {
  text-decoration: underline;
}

.page-support__dark-section .page-support__guide-title a,
.page-support__dark-section .page-support__security-title a {
  color: #ffffff;
}

.page-support__dark-section .page-support__guide-title a:hover,
.page-support__dark-section .page-support__security-title a:hover {
  color: #f0f0f0;
}