* {
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Roboto', sans-serif;
      margin: 0;
      background: linear-gradient(to right, #e3f2fd, #ffffff);
      color: #263238;
      line-height: 1.6;
    }
   

    header, footer {
      background-color: navy; /* Dark navy header */
      color: white;
      padding: 1.5rem 2rem;
      text-align: center;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    nav {
      background-color: #003366; /* Slightly lighter blue than navy */
      padding: 0.75rem 2rem;
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      color: white;
    }

    nav a {
      color: white;
      text-decoration: none;
      
    }

    nav a:hover {
      text-decoration: underline;
    }

    section {
      margin: 2rem auto;
      max-width: 1200px; /* Increased the max-width */
      padding: 0 1rem;
    }

    h1 {
      color : #ffffff;
      text-shadow: -1px -1px 0 #000, 1px -1px 0 #000,
                   -1px  1px 0 #000, 1px  1px 0 #000;
    }

    h2, h3, h4, h5, h6 {
      color: #9B1C2A;
    }

    .services-section {
      margin-top: 2rem;
    }
    /* Mobile Menu Button */
  

/* Responsive Navbar */

 