
.about-section {
    text-align: center;
    padding: 40px 20px;
}

.about-image-container img {
    width: 40%;
    height: auto;
    border-radius: 10px;
}

.about-content {
    margin-top: 20px;
}

.about-content h1 {
    font-size: 2.5rem;
    color: #0355cc;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
    margin: 20px;

  }
  
  .tile {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s;
  }
  
  .tile:hover {
    transform: translateY(-10px);
  }
  
  .tile h4 {
    font-size: 1.6rem;
    color: #34495e;
  }
  
  .tile p {
    color: #7f8c8d;
  }
  .img-box img{

    border-radius: 15px;
  }
  .detail-box p{
    font-size: 1.2rem;
  }

@media (max-width: 480px) {
    .about-image-container img {
        width: 80%;
        height: auto;
    }

    .about-content h1 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

  
  