.about-section {
    padding: 60px 20px;
    background-color: #fff;
  }
  
  .container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .image-container {
    position: relative;
    width: 45%;
    padding: 20px;
  }
  
  .corner-border {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 100px;
    height: 100px;
    border-top: 12px solid #f47c20;
    border-left: 12px solid #f47c20;
    z-index: 1;
  }
  
  .image-container img {
    width: 100%;
    display: block;
    border: 1px solid #ddd;
    background: #fff;
    padding: 10px;
    position: relative;
    z-index: 2;
  }
  
  .content-container {
    width: 50%;
    padding: 20px;
  }
  
  .section-title {
    color: #f47c20;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
  }
  
  .heading {
    font-size: 28px;
    margin: 5px 0;
  }
  
  .divider {
    width: 40px;
    height: 3px;
    background-color: #f47c20;
    margin-bottom: 15px;
  }
  
  .description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
  }
  
  .read-more-btn {
    display: inline-block;
    margin-top: 20px;
    background-color: #f47c20;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .read-more-btn:hover {
    background-color: #2c1800;
  }
  
  /* Responsive */
  @media screen and (max-width: 650px) {
    .container {
      flex-direction: column;
    }
  
    .image-container,
    .content-container {
      width: 100%;
    }
  
    .corner-border {
      top: 0;
      left: 0;
    }
  }