/* About section styles */
.about-section {
  padding: 4rem 2rem;
  background-color: #1e293b;
  color: #ffffff;
}

.about-container {
  max-width: 90%;
  margin: 0 auto;
}

.about-header {
  margin-bottom: 2rem;
  position: relative;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  position: relative;
  display: inline-block;
  padding-top: 1rem;
}

.about-title::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 80px;
  height: 6px;
  background-color: #f97316;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.about-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-content {
  width: 100%;
}

.about-text {
  flex: 1;
}

.about-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f97316;
  margin-top: 0;
  margin-bottom: 1rem;
}

.about-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.about-button-container {
  margin-top: 2rem;
}

.about-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #f97316;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.25rem;
  transition: background-color 0.3s ease;
}

.about-button:hover {
  background-color: #ea580c;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (min-width: 992px) {
  .about-content-wrapper {
    flex-direction: row;
    align-items: center;
  }
  
  .about-image {
    width: 45%;
    margin-right: 5%;
  }
  
  .about-content {
    width: 50%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about-content-wrapper {
    flex-direction: column-reverse;
  }
  
  .about-image {
    width: 100%;
    margin-bottom: 2rem;
  }
  
  .about-content {
    width: 100%;
  }
  
  .about-title {
    font-size: 2rem;
    text-align: left;
  }
  
  .about-title::before {
    left: 0;
    right: auto;
  }
  
  .about-subtitle {
    text-align: left;
    font-size: 1.3rem;
  }
  
  .about-description {
    text-align: left;
  }
  
  .about-button-container {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .about-content-wrapper {
    flex-direction: column-reverse;
  }
  
  .about-image {
    width: 100%;
    margin-bottom: 2rem;
  }
  
  .about-content {
    width: 100%;
  }
  
  .about-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .about-title::before {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-subtitle {
    text-align: center;
    font-size: 1.3rem;
  }
  
  .about-description {
    text-align: center;
  }
  
  .about-button-container {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 3rem 1rem;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .about-subtitle {
    font-size: 1.2rem;
  }
  
  .about-description {
    font-size: 0.9rem;
  }
  
  .about-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}
