.about-me-section {
    padding: 50px 20px;
    background-color: #fff;
    /* height: 70rem; */
  }
  
  .about-me-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    
  }
  
  .about-me-image img {
    flex: 1;
    width: 100%;
    max-width: 500px;
    height: 500px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    animation: fadeIn 2s ease;
  }
  
  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(20px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  .about-me-content {
    /* flex: 1 1 55%; */
    flex: 1;
    padding: 20px;
  }
  
  .about-me-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #ff6600;
  }
  
  .headline {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #555;
  }
  
  .about-me-content p {
    margin-bottom: 15px;
  }
  
  .cta-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    background-color: #ff6600;
    
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #e55c00;
  }
  
  .cta-button:visited {
    color: #fff;
  }
  