.about-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.about-text {
    flex: 1 1 50%;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-image {
    flex: 1 1 40%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}


@media (max-width: 768px) {
    .about-content {
      flex-direction: column;
    }
  }
  