body {
      font-family: Arial, sans-serif;
      background-color: #fafafa;
      margin: 0;
      padding: 0;
    }

    header {
      background-color: #0d0854;
      color: white;
      text-align: center;
      padding: 20px 0;
    }

    /* Navigation bar using simple inline-block items */
    nav {
      background-color: #e6f2ff;
      padding: 10px 0;
      text-align: right;
    }

    nav a {
      color: black;
      text-decoration: none;
      font-weight: bold;
      display: inline-block;
      padding: 10px 20px;
      margin: 0 10px;
      border-radius: 4px;
      
    }

    nav a:hover {
      background-color: #007acc;
      color: white;
    }
    
    .grid-container {
      display: grid;
grid-template-columns: auto auto auto;
    }
      
    /* Positioning sections manually without grid or flex */
    .left-section {
      text-align: center;
      padding: 20px;
width:300px;
    }

    .center-section {
      text-align: center;
      padding: 20px;
width:300px;
    }

    .right-section {
      text-align: center;
      padding: 20px;
width:300px;
    }

    main {
      background-color: #fff;
      margin: 20px;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
.round-image {
  width: 150px;          /* control the size */
  height: 150px;         /* keep it square for a perfect circle */
  border-radius: 50%;    /* makes it round */
  object-fit: cover;     /* crops it nicely inside the circle */
  border: 3px solid #99ccff;  /* optional border */
}

footer{
      text-align: center;
      margin: 0 auto;
}

 form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    input, textarea {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1em;
    }
    button {
      background-color: #3366cc;
      color: white;
      border: none;
      padding: 10px;
      font-size: 1em;
      border-radius: 5px;
      cursor: pointer;
    }

    button:hover {
    background-color: #003366;


    }
