/* =============================== */
/*         About Section           */
/* =============================== */

.about-section {
    background-color: var(--primary-color);
    color: var(--bg-color);
  }
  
  .about-section .content-wrapper {
    text-align: center;
  }
  
  .about-section .about-element-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: calc(var(--element-gap) * var(--cfactor));
    margin-bottom: calc(var(--text-gap) * var(--cfactor));
  }
  
  .about-section .about-element {
    width: calc(var(--about-img-w) * var(--cfactor));
    text-align: left;
  }
  
  .about-section .about-element-image {
    max-width: calc(var(--about-img-w) * var(--cfactor));
    height: auto;
    background-color: var(--image-bg, #333);
    display: flex;
    justify-content: left;
    align-items: left;
    overflow: hidden;
    box-shadow: 0 12px 24px var(--shadow-color), 0 6px 10px rgba(0, 0, 0, 0.15);
    margin-bottom: calc(var(--about-img-bottom-gap) * var(--cfactor));
    border-radius: 20px;
  }
  
  .about-section .about-element-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .about-section h1 {
    color: white;
    font-weight: normal;
    font-size: calc(var(--headline) * var(--cfactor-f));
    margin: 0;
    margin-bottom: calc(var(--text-gap) * var(--cfactor));
  }
  
  .about-element h2 {
    font-size: calc(var(--headline2) * var(--cfactor-f));
    margin: 0;
  }
  
  .about-element p {
    font-size: calc(var(--text1) * var(--cfactor-f));
    font-weight: normal;
    line-height: calc(var(--text1-lh) * var(--cfactor-f));
  }
  
  @media screen and (max-width: 768px) {
    .about-section .content-wrapper {
      width: 90%;
      padding: 0;
      margin: 0 auto;
    }

    .about-section .about-element-grid {
      flex-direction: column;
      gap: 40px;
    }

    .about-section .about-element {
      width: 100%;
    }
  }