.about-section {
      background-color: #f8fafc;
      padding: 2.5rem 2rem 2.5rem 2rem;
    }

    .about-container {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      max-width: 1300px;
      margin: 0 auto;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .about-text {
      flex: 1;
      min-width: 300px;
    }

    .about-text h2 {
      color: #0e7490;
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 1rem;
    }

    .about-text p {
      font-size: 1rem;
      line-height: 1.7;
      color: #1e293b;
    }

    .about-image {
      flex-shrink: 0;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      overflow: hidden;
      transition: transform 0.4s ease;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      transition: transform 0.4s ease;
    }

    .about-image:hover img {
      transform: scale(1.1);
    }