     .about {
        background-color: #f3fcf8;
            position: relative;
padding-top: 50px;    
            padding-bottom: 50px;   

 }
      

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
        }

        .about-content {
            display: grid;

            grid-template-columns: 1fr 1.5fr;
            gap: 6rem;
            align-items:self-start;
            position: relative;
        }

        .about-image {
            width: 100%;
            height: 350px;
            background: url('../img/about/logo_about.png') center/cover;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-2xl);
            transform: rotate(-2deg);
            transition: transform 0.4s ease;

        }

        .about-image:hover {
            transform: rotate(0deg) scale(1.02);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.2) 100%); */
            transition: opacity 0.3s ease;
        }

        .about-image:hover::before {
            opacity: 0.7;
        }

        .about-image::after {



        }

        .about-text h3 {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            /* text-align: center; */
            font-size: 3rem;
            margin-bottom: 2rem;
            color: var(--text-primary);
            font-weight: 500;
            line-height: 1.3;
        }

        .about-text p {
            font-size: 1.4rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  .section-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
  }
  .cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  .card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
  }
  .card-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #006072; /* you can change the color */
  }
  .card-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .card-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
  }
