body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #f4f9fb;
      margin: 0;
      padding: 0;
      color: #333;
    }

    :root {
      --accent-clr: rgb(52, 133, 255);
      --accent-clr-2: rgb(19, 50, 90);
      --txt-clr: black;
      --bg-clr: #f0f8ff;
      --accent-clr-3: #0056b3;
      --sizer: 2rem;
      --para-size: 1.3rem;
      --wide-size: 2.5rem;
      --para-size-s: 1.1rem;
    }

    .hero {
      position: relative;
      background-image: url('/images/parent-guide.webp'); /* Replace with your actual image path */
      background-size: cover;
      background-position: center;
      height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @media screen and (max-width: 600px) {
        .hero {
            background-image: url('/images/parent-guide-small.webp');
        }
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: rgba(0, 0, 0, 0.5);
    }

    .hero h1 {
      position: relative;
      color: white;
      font-size: 2.5em;
      z-index: 1;
      text-align: center;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    }

    main {
      max-width: 900px;
      margin: 40px auto;
      padding: 0 20px;
    }

    .section {
      background-color: white;
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 30px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .section h2 {
      color: var(--accent-clr);
      margin-top: 0;
    }

    .section p {
      line-height: 1.6;
    }

    ul {
      padding-left: 20px;
    }

    .download-link {
      display: inline-block;
      margin-top: 15px;
      background-color: var(--accent-clr);
      color: white;
      padding: 10px 18px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
    }

    .download-link:hover {
      background-color: var(--accent-clr-3);
    }

    footer {
            background: rgb(9, 16, 46);
            
          }

          footer .footer-title {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            align-items:top;
          }

          footer .logo {
            display: flex;
            align-items:center
          }

          footer h2 {
            color:var(--bg-clr);
            margin: 0 0 0.5rem 0;
            font-size: var(--para-size-s)
          }          

          footer .logo img {
            width: 60px;
          }


          

          footer p {
            color: var(--accent-clr);
            letter-spacing: 2px;
            line-height: 20px;
            font-weight: bold;
            font-size: 1rem;
            cursor:pointer;
            margin: 0 0 1rem 0;
          }

          footer .social {
            display: flex;
            flex-direction:column;
            padding: 0.5rem 0 0 0;
          }

          footer .social i {
            font-size: 1.2rem;
            color: var(--accent-clr);
            box-shadow: 0px 0px 5px rgba(97, 108, 255, 0.9);
            border-radius: 15px;
            margin: 0.5rem 5px 0 0;
            padding: 4px;
            transition: all 0.3s ease;
          }

          footer .social i:hover {
            background: var(--bg-clr);
          }


          footer .nav-links {
            display: grid;
            grid-template-columns: 2fr 1fr;
            align-items:top;
            margin: 2rem 0 3.9rem 0;
            padding: 0 0 0 2rem;
          }

          footer .nav-links div {
            display: flex;
            flex-direction:column;
            letter-spacing: 2px;
          }


          footer .nav-links div a {
            color: var(--accent-clr);
            margin: 0 0 1rem 0;
            transition: all 0.3s ease;
          }


          footer .nav-links div a:hover{
            color:var(--bg-clr);
          }
          

          footer .copyright {
            text-align: center;
            padding: 20px;
            background-color: #eaf4f7;
            font-size: 0.9em;
            color: #555;
          }

          @media (min-width: 1123px) {

            footer h2 {
                font-size: var(--sizer)
            }

            footer .footer-title {
                grid-template-columns: 1fr 1fr;               
            }

            footer .nav-links {
                grid-template-columns: 1fr 1fr;
            }

            .footer-links {
               margin-left: 20rem;
            }

            footer .social i {
                font-size: 1.5rem;
            }
          }

    @media screen and (max-width: 600px) {
      .hero h1 {
        font-size: 1.8em;
        padding: 0 10px;
      }

      main {
        padding: 0 15px;
      }
    }