 * {
        /* outline: 1px solid red; */
      }
      body {
        margin: 0;
        font-family: "Poppins", sans-serif;
        background: linear-gradient(135deg, #f0f4f8, #ffffff);
        color: #2c3e50;
      }

      header {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40vh;
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: white;
        text-align: center;
        padding: 50px 20px 0px 20px;
      }

      header h1 {
        font-size: 4rem;
        font-weight: 700;
        margin: 0;
      }
      .container {
        display: grid;
        grid-template-columns: 60% 35%;
        gap: 5%;
        max-width: 1200px;
        margin: 40px auto;
        padding: 20px;
      }
      section {
        padding: 20px 2%;
        flex: auto;
        margin: 0 auto;
        text-align: left;
      }
      section h2 {
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #34495e;
      }
      section.main,
      section.side {
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      section.main:hover,
      section.side:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      }

      section.main {
        width: 100%;
      }
      section.main div:not(:first-of-type) {
        margin-top: 100px;
      }
      section.side {
        width: 100%;
      }
      section.side > div {
        margin-left: 2.5%;
        margin-right: 2.5%;
        width: 95%;
      }
      section.side h2 {
        font-size: 1.5rem;
      }
      section.side a {
        font-size: 0.8rem;
        color: #007bff;
        padding: 3px 10px;
        border: 1px solid #007bff;
        transition: all 0.3s ease;
      }
      section.side a:hover {
        color: #fff;
      }

      hr {
        border: none;
        height: 2px;
        background-color: #ddd;
        margin: 0px auto;
        width: 100%;
      }

      a {
        display: inline-block;
        margin-top: 20px;
        font-size: 1.2rem;
        text-decoration: none;
        color: #007bff;
        font-weight: 500;
        padding: 5px 10px;
        border: 2px solid #007bff;
        border-radius: 8px;
        transition: all 0.3s ease;
      }

      a:hover {
        color: #fff;
        border-bottom: 2px solid #007bff;
        background-color: #007bff;
      }
      .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: white;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      }

      .nav-container {
        display: flex;
        align-items: center;
        margin: 0 auto;
        padding: 15px;
      }

      .nav-item {
        text-decoration: none;
        color: black;
        font-size: 1.2rem;
        font-weight: 500;
        transition: color 0.3s ease;
        border-color: #fff;
        margin-top: 0;
      }

      .nav-item:hover {
        background-color: rgba(0, 0, 0, 0.1); /* Optional hover effect */
        color: black;
        border-color: #fff;
      }
      
      @media screen and (max-width: 1024px) {
        /* Styles for iPad in landscape */
        .container {
          grid-template-columns: 98%;
        }
      }
      @media only screen and (max-width: 375px) {
        /* Styles for smaller iPhones */
        
      }