/* About Section Styles */
.about {
  background-color: var(--gray-100);
  position: relative;
  overflow: hidden;
}

.about-content {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.about-text {
  flex: 1;
}

.about-text p {
  color: var(--gray-700);
  margin-bottom: var(--space-3);
}

.about-features {
  margin-top: var(--space-4);
}

.feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-3);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--navy-900);
  margin-right: var(--space-2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Feature Icons */
.local-icon:before,
.results-icon:before,
.support-icon:before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.local-icon:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
}

.results-icon:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m22 12-4 4-4-4'%3E%3C/path%3E%3Cpath d='M18 16V4'%3E%3C/path%3E%3Cpath d='M2 8h16'%3E%3C/path%3E%3Cpath d='M2 16h10'%3E%3C/path%3E%3C/svg%3E");
}

.support-icon:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 2h4v4'%3E%3C/path%3E%3Cpath d='m22 2-7.5 7.5'%3E%3C/path%3E%3Cpath d='M2 22h4v-4'%3E%3C/path%3E%3Cpath d='m2 22 7.5-7.5'%3E%3C/path%3E%3Ccircle cx='12' cy='12' r='4'%3E%3C/circle%3E%3C/svg%3E");
}

.feature-text h4 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.feature-text p {
  margin-bottom: 0;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-lg);
  position: relative;
  z-index: 1;
}

.about-image:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: var(--space-2);
  left: var(--space-2);
  background-color: var(--orange-500);
  border-radius: var(--border-radius-lg);
  z-index: 0;
}

/* About Section Animation */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-text, .about-image {
  opacity: 0;
}

.about-text.animated {
  animation: fadeSlideUp 0.8s forwards;
}

.about-image.animated {
  animation: fadeSlideUp 0.8s 0.3s forwards;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .about-content {
    flex-direction: column-reverse;
    gap: var(--space-5);
  }
  
  .about-image {
    max-width: 80%;
    margin: 0 auto;
  }
  
  .about-text {
    max-width: 100%;
    text-align: center;
  }
  
  .about-features {
    max-width: 500px;
    margin: var(--space-4) auto 0;
  }
  
  .feature {
    text-align: left;
  }
}

@media screen and (max-width: 576px) {
  .feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .feature-icon {
    margin-right: 0;
    margin-bottom: var(--space-1);
  }
}
