/* about-section-2.css */

.about-section-2 {
    padding: 60px 20px;
    background-color: #fff;
    font-family: 'Helvetica Neue', sans-serif;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .about-section-2-wrapper {
    max-width: 1200px;
    width: 100%;
  }
  
  .about-section-2-small-title {
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 50px;
    text-transform: uppercase;
  }
  
  .about-section-2-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .about-section-2-wrapper > .about-section-2-small-title {
    width: 100%;
  }
  
  .about-section-2-about-left,
  .about-section-2-right {
    flex: 1;
  }
  
  .about-section-2-about-left,
  .about-section-2-right {
    width: 50%;
  }
  
  .about-section-2-wrapper > .about-section-2-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
    width: 100%;
  }
  
  .about-section-2-subtitle {
    font-size: 50px;
    padding: 20px 50px 10px 0;
    font-weight: 700;
    color: #0a0a23;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  
  .about-section-2-intro div {
    padding: 0 50px 30px 0;
    font-size: 20px;
    line-height: 1.5;
    color: #5f6c7b;
    margin-bottom: 10px;
  }
  
  .about-section-2-button-wrapper {
    margin-top: 10px;
  }
  
  .about-section-2-button {
    background-color: #3366ff;
    color: #fff;
    border: none;
    padding: 20px 40px;
    border-radius: 6px;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .about-section-2-button:hover {
    background-color: #0d111f;
  }
  
  .section-2-image {
    padding-top: 40px;
    max-width: 100%;
    border-radius: 8px;
    object-fit: cover;
  }
  