
  
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
      display: flex;
      gap: 60px;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .left {
      flex: 1;
      min-width: 280px;
    }

    .left h1 {
      margin-bottom: 20px;
      color: #111;
    }

    .left p {
      color: #555;
      max-width: 500px;
    }

    .right {
      flex: 1;
      background: #f9fafb;
      border-radius: 12px;
      padding: 40px;
      min-width: 300px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    }

    .right h2 {
      margin-bottom: 20px;
    }

    .right p {
      margin-bottom: 10px;
    }

    .actions {
      margin-top: 30px;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 12px 24px;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.3s;
      display: inline-block;
    }

    .btn.services {
      background-color: #111827;
      color: #fff;
    }

    .btn.services:hover {
      background-color: #374151;
    }

    .btn.appointment {
      background-color: #e4be89;
      color: white;
    }

    .btn.appointment:hover {
      background-color: #e4be89;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        padding: 40px 20px;
      }

      .left h1 {

      }

      .right {
        padding: 30px 20px;
      }
    }
  





    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 10px;
      padding: 20px;
    }
    .gallery img {
      width: 100%;
      height: auto;
      cursor: pointer;
      border-radius: 8px;
      transition: transform 0.3s;
    }
    .gallery img:hover {
      transform: scale(1.05);
    }

    .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      flex-direction: column;
    }
    .lightbox img {
      max-width: 90%;
      max-height: 80%;
      border-radius: 10px;
    }
    .lightbox .close, .lightbox .prev, .lightbox .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: white;
      background: rgba(0,0,0,0.5);
      padding: 10px;
      border-radius: 50%;
      cursor: pointer;
      user-select: none;
    }
    .lightbox .close {
      top: 20px;
      right: 30px;
      transform: none;
    }
    .lightbox .prev {
      left: 30px;
    }
    .lightbox .next {
      right: 30px;
    }
