/* About Section Styles */
.about-section {
  color: #1f2937; /* gray-800 */
  padding: 0px 16px 16px;
  position: relative;
  background-color: white;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .about-section {
    padding: 4px 80px 16px;
  }
}

/* About Container */
.about-container {
  display: grid;
  gap: 10px;
  align-items: center;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .about-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-image {
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  width: 100%;
  height: auto;
}

/* About Content */
.about-content {
  max-width: 600px;
}

.section-subtitle {
  color: #e11d48; /* rose-600 */
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937; /* gray-800 */
}

@media (min-width: 768px) {
  .section-title {
    font-size: 36px;
  }
}

.about-text {
  color: #374151; /* gray-700 */
  margin-bottom: 24px;
  line-height: 1.6;
}

.about-list {
  color: #374151; /* gray-700 */
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 24px;
}

.about-list li {
  margin-bottom: 8px;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: #e11d48; /* rose-600 */
  color: white;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #be123c; /* rose-700 */
}

/* Support Section */
.support-header {
  text-align: center;
  margin-bottom: 40px;
}

.support-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .support-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.support-card {
  background-color: #ffe4e6; /* rose-100 */
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 24px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.support-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.support-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.support-title {
  color: #be123c; /* rose-700 */
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}

.support-text {
  color: #374151; /* gray-700 */
  font-size: 14px;
  line-height: 1.5;
}