/* ====================================
   ABOUT SECTION STYLES
   ==================================== */

.about-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(0, 102, 204, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-text {
  padding: 20px 0;
  text-align: left;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin: 0 0 25px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.2;
}

.about-description {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin: 0 0 40px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.about-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0 0 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.about-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  transition: all 0.2s ease;
  border: none;
  border-left: none;
}

.feature-item:hover {
  background-color: transparent;
  border-left-color: transparent;
  box-shadow: none;
  transform: none;
}

.feature-item:hover .feature-text {
  color: #0066CC;
}

.feature-icon {
  width: 20px;
  height: 20px;
  color: #0066CC;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}

.feature-text {
  font-size: 17px;
  font-weight: 400;
  color: #555;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  aspect-ratio: 4/3;
  background: transparent;
  padding: 0;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 16px;
  position: relative;
}

.about-image:hover .about-img {
  transform: scale(1.05);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .about-content {
    gap: 40px;
  }
  
  .about-title {
    font-size: 36px;
  }
  
  .about-description {
    font-size: 17px;
  }
  
  .about-subtitle {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .about-section {
    padding: 60px 15px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-text {
    order: 2;
    text-align: left;
  }
  
  .about-image {
    order: 1;
  }
  
  .about-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .about-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .about-subtitle {
    font-size: 22px;
    margin-bottom: 18px;
  }
  
  .about-features {
    align-items: flex-start;
    max-width: 100%;
    margin: 0;
    gap: 10px;
  }
  
  .feature-text {
    font-size: 16px;
  }
  
  .feature-icon {
    width: 18px;
    height: 18px;
  }
}

@media screen and (max-width: 480px) {
  .about-section {
    padding: 50px 10px;
  }
  
  .about-title {
    font-size: 28px;
  }
  
  .about-description {
    font-size: 15px;
  }
  
  .about-subtitle {
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .about-features {
    gap: 10px;
  }
  
  .feature-item {
    padding: 0;
  }
  
  .feature-icon {
    width: 18px;
    height: 18px;
  }
  
  .feature-text {
    font-size: 15px;
  }
}
