/* Reset Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    .appointment-btn {
    background: linear-gradient(135deg, #00529B, #008CBA);
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .appointment-btn:hover {
    background: linear-gradient(135deg, #008CBA, #00529B);
    transform: scale(1.05);
  }

  .appointment-btn:active {
    background: linear-gradient(135deg, #004080, #0078A0);
    transform: scale(0.95);
  }
    /* Global Styles */
    body {
      font-family: Arial, sans-serif;
      background-color: #f7f7f7;
      color: #333;
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    /* Navbar and content container */
    .main-container {
      display: flex;
    }

    /* Navbar Styling */
    .sidebar {
      width: 250px;
      background-color: #f8f9fa;
      padding: 20px;
      box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
      position: fixed;
      height: 100vh;
      overflow-y: auto;
    }

    .sidebar ul {
      list-style: none;
      padding: 0;
    }

    .sidebar li {
      margin-bottom: 10px;
    }

    .sidebar li a {
      display: block;
      padding: 10px;
      color: #333;
      text-decoration: none;
      border-radius: 4px;
      transition: background-color 0.2s ease;
    }

    .sidebar li a:hover {
      background-color: #e2e6ea;
    }

    /* Main content area */
    .content {
      margin-left: 270px;
      padding: 20px;
      flex: 1;
    }

    .container {
      max-width: 1000px;
      margin: auto;
      background-color: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* Footer styling */
    footer {
      background-color: #333;
      color: #fff;
      text-align: center;
      padding: 15px;
      margin-top: auto;
    }

    /* Headings */
    h1, h2, h3 {
      color: #00529B;
    }

    h1 {
      text-align: center;
      margin-bottom: 20px;
    }

    h2 {
      border-bottom: 1px solid #ddd;
      padding-bottom: 5px;
      margin-top: 30px;
    }

    h3 {
      margin-top: 20px;
    }

    /* Paragraphs and lists */
    p {
      margin-bottom: 15px;
    }

    ul {
      list-style-type: disc;
      margin-left: 20px;
      margin-bottom: 15px;
    }

    li {
      margin-bottom: 10px;
    }

    /* Steps styling */
    .step {
      background-color: #f9f9f9;
      padding: 15px;
      border-radius: 5px;
      margin-bottom: 20px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .step-title {
      font-weight: bold;
      margin-bottom: 10px;
      color: #00529B;
    }