.home-section {
      padding-top: 50px;
      max-width: 1200px;
      margin: auto;
    }

    .home-container {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
    }

    .home-text {
      flex: 1 1 50%;
    }

    .home-text h5 {
      font-size: 1rem;
      color: #000;
      margin-bottom: 0.3rem;
      letter-spacing: 0.05em;
    }

    .home-text h1 {
      font-size: 2.25rem;
      font-weight: 900;
      color: var(--orange);
      text-transform: uppercase;
      margin-bottom: 1rem;
      font-family: Georgia, serif;
    }

    .subtitle-line {
      font-family: monospace;
      font-weight: bold;
      font-size: 0.9rem;
      margin-bottom: 0.75rem;
      border-left: 6px solid var(--black);
      padding-left: 0.75rem;
      color: #000;
    }

    .home-text p {
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 0.75rem;
      color: #1a1a1a;
    }

    .home-image {
      flex: 1 1 45%;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      background-color: #fff;
      max-height: 55vh;
    }

    .home-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .floating-icons {
      position: fixed;
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 1rem;
      z-index: 100;
    }

    .floating-icons button {
      width: 50px;
      height: 50px;
      border: none;
      border-radius: 50%;
      color: #fff;
      font-size: 1.5rem;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
    }

    .floating-icons button:hover {
      transform: scale(1.1);
    }

    .floating-icons button:focus {
      outline: 2px solid #000;
      outline-offset: 3px;
    }

    .info {
      background: radial-gradient(circle at center, #409cff 0%, #1e73e8 80%);
    }

    .phone {
      background: radial-gradient(circle at center, #e00d0d 0%, #a50000 80%);
    }

    .whatsapp {
      background: radial-gradient(circle at center, #2ea333 0%, #207621 80%);
    }

    @media (max-width: 900px) {
      .home-container {
        flex-direction: column;
      }

      .home-text,
      .home-image {
        flex: 1 1 100%;
        max-width: 90%;
      }

      .home-text h1 {
        font-size: 1.75rem;
      }

      .subtitle-line {
        font-size: 0.85rem;
        border-left-width: 4px;
        padding-left: 0.6rem;
      }

      .floating-icons button {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
      }
    }

    @media (max-width: 450px) {
      .home-text h5 {
        font-size: 0.9rem;
      }

      .home-text h1 {
        font-size: 1.5rem;
      }

      .subtitle-line {
        font-size: 0.8rem;
      }

      .home-text p {
        font-size: 0.9rem;
      }
      .home-section {
  padding-top: 25px;
  max-width: 1200px;
  margin: auto;
}
    }