
.about-section {
  padding: 20px 15px;
  background: #f8f9fa;
}


.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.image-container {
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.content-container {
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-title {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-text {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.highlight-box {
  background: #fff5f5;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.highlight-box h3 {
  color: #c00;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.features-list li::before {
  content: "✓";
  color: #c00;
  position: absolute;
  left: 0;
}

.cta-button {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  background: #c00;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  text-decoration: none;
  color: white;
 
  background: #a00;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .image-container {
    aspect-ratio: 1/1; 
    max-width: 400px;
    margin: 0 auto;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .content-container {
    padding: 25px;
  }

  .cta-button {
    width: 100%;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 1.5rem;
  }
  
  .about-text {
    font-size: 1rem;
  }
  .image-container {
    max-width: 100%;
  }
}
