  .uro-section {
      background: #f5f6f7;
      padding: 60px 20px;
      font-family: Arial, sans-serif;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: 40px;
    }

    /* LEFT CONTENT */
    .uro-left {
      flex: 2;
    }

    .uro-left h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #1c2b4a;
      letter-spacing: -0.2px;
      border-left: 5px solid #f2b326;
      padding-left: 18px;
    }

    .uro-left img {
      width: 100%;
      border-radius: 12px;
      margin-bottom: 24px;
      object-fit: cover;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
      display: block;
    }

    .uro-left p {
      font-size: 15px;
      line-height: 1.65;
      color: #1e2a3e;
      margin-bottom: 18px;
      font-weight: 400;
    }



    /* RIGHT SIDEBAR */
    .uro-right {
      width: 30%;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      gap: 24px;
      position: sticky;
      top: 20px;
      align-self: flex-start;
    }

    /* SERVICES BOX */
    .services-box {
      background: #F5B427;
      padding: 24px 8px;
      border-radius: 20px;
      border: 3px solid #2470e2;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.03);
      transition: all 0.2s;
    }

    .services-box h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 18px;
      color: #1c2125;
      border-left: 3px solid #f2b326;
    }

    .services-box ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

.services-box li {
    padding: 6px 0 7px 0px;
    border-bottom: 1px solid #161616;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 0px;
}
    .services-box li:before {
      content: "•";
      color: #f2b326;
      font-weight: bold;
      font-size: 18px;
    }

    .services-box li:last-child {
      border-bottom: 1px solid black;
    }

    /* CONTACT BOX */
    .contact-box {
      background: #1c4a6b;
      color: #ffffff;
      padding: 24px 22px;
      border-radius: 20px;
      box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
    }

    .contact-box h3 {
      font-size: 22px;
      margin-bottom: 12px;
      font-weight: 700;
      letter-spacing: -0.2px;
      color: #f9e0a0;
    }

    .contact-box p {
      font-size: 14px;
      line-height: 1.5;
      margin-bottom: 20px;
      opacity: 0.92;
      color: #f0f6fa;
    }

    .btn {
      display: inline-block;
      background: #f2b326;
      color: #1e2a2f;
      padding: 10px 26px;
      border-radius: 40px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.25s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      text-align: center;
    }

    .btn:hover {
      background: #e0a10e;
      transform: translateY(-1px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      color: #000;
    }

    /* RESPONSIVE BREAKPOINTS */
    @media (max-width: 900px) {
      .container {
        flex-direction: column;
        gap: 30px;
      }

      .uro-right {
        width: 100%;
        position: static;
        top: auto;
        gap: 20px;
      }

      .uro-left h2 {
        font-size: 28px;
      }

      .services-box, .contact-box {
        width: 100%;
      }
    }

    @media (max-width: 560px) {
      .uro-section {
        padding: 40px 16px;
      }

      .uro-left h2 {
        font-size: 24px;
        padding-left: 14px;
      }

      .uro-left p {
        font-size: 14px;
      }

      .services-box li {
        font-size: 14px;
        padding: 10px 0;
      }
    }

    .uro-left img:hover {
      transform: scale(1.01);
      transition: 0.2s;
    }