/* ===== INTRO SECTION ===== */
.intro-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--color-white);
  }
  
  .intro-inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .intro-text {
    padding: 0;
  }

  .intro-text h1 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .intro-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-hero);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: white;
  }
  
  .intro-text p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2rem;
  }
  
  .intro-image-container {
    display: flex;
    justify-content: flex-end;
  }
  
  .intro-image {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
    padding: 10px;
  }
  
  .intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 4px;
  }
  
  .intro-image:hover img {
    transform: scale(1.03);
  }