      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        min-height: 100vh;
        color: white;
      }

      /* Hero Section */
      .school-cta-hero-banner-div {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        width: 100%;
        min-height: 400px;
      }

      .school-cta-hero-banner {
        text-align: center;
        padding: 60px 20px;
        border-radius: 15px;
        position: relative;
        overflow: hidden;
        background-image: url("https://images.pexels.com/photos/257904/pexels-photo-257904.jpeg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        max-width: 1700px;
        min-height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .school-cta-hero-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
      }

      .cta-hero-text-wrapper {
        position: relative;
        z-index: 2;
        max-width: 600px;
        margin: 0 auto;
      }

      .school-transformation-headline {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 15px;
        color: white;
      }

      .school-operations-description {
        font-size: clamp(1rem, 2.5vw, 1.3rem);
        opacity: 0.9;
        margin-bottom: 25px;
        line-height: 1.4;
        color: white;
      }

      .get-started-cta-button {
        background-color: white;
        color: #0068e6;
        border: none;
        padding: 12px 30px;
        border-radius: 25px;
        font-size: clamp(0.9rem, 2vw, 1rem);
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-block;
        text-decoration: none;
      }

      .get-started-cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 104, 230, 0.3);
      }

      /* Footer Styles */
      .school-core-footer-section {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px 20px 20px;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        width: 100%;
        overflow-x: hidden;
      }

      .footer-main-layout-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 40px;
        align-items: start;
        width: 100%;
      }

      .footer-brand-navigation-area {
        display: flex;
        flex-direction: column;
        min-width: 0;
      }

      .school-core-brand-logo {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        font-weight: 800;
        margin-bottom: 25px;
        color: white;
        word-wrap: break-word;
      }

      .navigation-links-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 30px;
        width: 100%;
      }

      .footer-link-category {
        min-width: 0;
      }

      .footer-link-category h4 {
        color: white;
        font-size: clamp(1rem, 2vw, 1.1rem);
        font-weight: 600;
        margin-bottom: 15px;
        opacity: 0.9;
      }

      .footer-link-category ul {
        list-style: none;
      }

      .footer-link-category ul li {
        margin-bottom: 8px;
      }

      .footer-link-category ul li a {
        color: white;
        text-decoration: none;
        font-size: clamp(0.9rem, 2vw, 1rem);
        font-weight: 500;
        opacity: 0.8;
        transition: opacity 0.3s ease;
        display: block;
        word-wrap: break-word;
      }

      .footer-link-category ul li a:hover {
        opacity: 1;
      }

      .mobile-app-download-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        min-width: 0;
      }

      .app-store-download-link {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        padding: 12px 16px;
        color: white;
        text-decoration: none;
        font-size: clamp(0.8rem, 2vw, 0.9rem);
        font-weight: 500;
        transition: all 0.3s ease;
        width: 100%;
        min-width: 140px;
        max-width: 180px;
        justify-content: center;
      }

      .app-store-download-link:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-1px);
      }

      .app-store-download-link svg {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
      }

      .footer-copyright-notice {
        text-align: center;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: clamp(0.8rem, 2vw, 0.9rem);
        font-weight: 600;
        opacity: 0.6;
        color: white;
      }

      /* Large Desktop (1200px+) */
      @media (min-width: 1200px) {
        .school-cta-hero-banner-div {
          padding: 40px;
          min-height: 500px;
        }

        .school-cta-hero-banner {
          padding: 80px 40px;
          min-height: 400px;
        }

        .navigation-links-grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 40px;
        }

        .mobile-app-download-buttons {
          align-items: flex-end;
        }
      }

      /* Desktop (992px - 1199px) */
      @media (max-width: 1199px) and (min-width: 992px) {
        .navigation-links-grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 35px;
        }
      }

      /* Tablet Landscape (768px - 991px) */
      @media (max-width: 991px) and (min-width: 768px) {
        .school-cta-hero-banner-div {
          padding: 20px;
          min-height: 400px;
        }

        .footer-main-layout-grid {
          grid-template-columns: 1fr;
          gap: 30px;
          text-align: center;
        }

        .navigation-links-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 25px;
          justify-items: center;
        }

        .mobile-app-download-buttons {
          flex-direction: row;
          justify-content: center;
          align-items: center;
          gap: 15px;
        }

        .app-store-download-link {
          max-width: 160px;
        }
      }

      /* Tablet Portrait (576px - 767px) */
      @media (max-width: 767px) and (min-width: 576px) {
        .school-cta-hero-banner-div {
          padding: 15px;
          min-height: 350px;
        }

        .school-cta-hero-banner {
          padding: 40px 20px;
          min-height: 300px;
          border-radius: 10px;
        }

        .school-core-footer-section {
          padding: 30px 15px 15px;
        }

        .footer-main-layout-grid {
          grid-template-columns: 1fr;
          gap: 25px;
          text-align: center;
        }

        .navigation-links-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
          justify-items: center;
        }

        .mobile-app-download-buttons {
          flex-direction: row;
          justify-content: center;
          gap: 12px;
        }
      }

      /* Mobile Large (480px - 575px) */
      @media (max-width: 575px) and (min-width: 480px) {
        .school-cta-hero-banner-div {
          padding: 10px;
          min-height: 320px;
        }

        .school-cta-hero-banner {
          padding: 30px 15px;
          min-height: 280px;
          border-radius: 8px;
        }

        .school-core-footer-section {
          padding: 25px 10px 15px;
        }

        .footer-main-layout-grid {
          grid-template-columns: 1fr;
          gap: 20px;
          text-align: center;
        }

        .footer-link-category ul li a {
          color: white;
          text-decoration: none;
          font-size: clamp(0.7rem, 2vw, 1rem);
          font-weight: 500;
          opacity: 0.8;
          transition: opacity 0.3s ease;
          display: block;
          word-wrap: break-word;
        }



        .school-core-brand-logo {
          font-size: clamp(1.8rem, 4vw, 2.5rem);
          font-weight: 500;
          margin-bottom: 25px;
          color: white;
          word-wrap: break-word;
        }

        .navigation-links-grid {
          grid-template-columns: 1fr 1fr;
          gap: 15px;
          justify-items: center;
        }

        .mobile-app-download-buttons {
          flex-direction: column;
          align-items: center;
          gap: 10px;
        }

        .app-store-download-link {
          width: 100%;
          max-width: 200px;
        }
      }

      /* Mobile Small (320px - 479px) */
      @media (max-width: 479px) {
        .school-cta-hero-banner-div {
          padding: 8px;
          min-height: 300px;
        }

        .school-cta-hero-banner {
          padding: 25px 12px;
          min-height: 260px;
          border-radius: 6px;
        }

        .get-started-cta-button {
          padding: 10px 25px;
          border-radius: 20px;
        }

        .school-core-footer-section {
          padding: 20px 8px 12px;
          height: 300px;
        }

        .footer-main-layout-grid {
          grid-template-columns: 1fr;
          gap: 15px;
          text-align: center;
        }

        .school-transformation-headline {
          font-size: clamp(1.1rem, 4vw, 2.5rem);
          font-weight: 600;
          line-height: 1.2;
          margin-bottom: 15px;
          color: white;
        }


        .school-operations-description {
          font-size: clamp(0.8rem, 2.5vw, 1.3rem);
          opacity: 0.9;
          margin-bottom: 25px;
          line-height: 1.4;
          color: white;
        }

        .footer-link-category ul li a {
          color: white;
          text-decoration: none;
          font-size: clamp(0.7rem, 2vw, 1rem);
          font-weight: 500;
          opacity: 0.8;
          transition: opacity 0.3s ease;
          display: block;
          word-wrap: break-word;
        }


        .school-core-brand-logo {
          margin-bottom: 15px;
          font-size: 14px;
        }

        .navigation-links-grid {
          grid-template-rows: 1fr;
          gap: 30px;
          justify-items: center;
        }

        .footer-link-category {
          margin-bottom: 15px;
        }

        .footer-link-category h4 {
          margin-bottom: 10px;
        }

        .footer-link-category ul li {
          margin-bottom: 6px;
        }

        .mobile-app-download-buttons {
          flex-direction: row;
          align-items: center;
          justify-content: center;
          gap: 8px;
          width: 100%;
        }

        .app-store-download-link {
          width: 100%;
          max-width: 90px;
          padding: 10px 12px;
          justify-content: center;
        }

        .footer-copyright-notice {
          margin-top: 20px;
          padding-top: 15px;
          line-height: 1.4;
        }
      }

      /* Extra Small Mobile (below 320px) */
      @media (max-width: 319px) {
        .school-cta-hero-banner-div {
          padding: 5px;
          min-height: 280px;
        }

        .school-cta-hero-banner {
          padding: 20px 8px;
          min-height: 240px;
          border-radius: 4px;
        }

        .school-core-footer-section {
          padding: 15px 5px 10px;
        }

        .footer-main-layout-grid {
          gap: 12px;
        }

        .school-core-brand-logo {
          margin-bottom: 12px;
        }

        .navigation-links-grid {
          gap: 10px;
        }

        .mobile-app-download-buttons {
          gap: 6px;
        }

        .app-store-download-link {
          max-width: 160px;
          padding: 8px 10px;
        }

        .footer-copyright-notice {
          margin-top: 15px;
          padding-top: 12px;
        }
      }

      /* Landscape orientation fixes for mobile */
      @media (max-height: 500px) and (orientation: landscape) {
        .school-cta-hero-banner-div {
          min-height: 250px;
        }

        .school-cta-hero-banner {
          min-height: 200px;
          padding: 20px 15px;
        }

        .school-core-footer-section {
          padding: 20px 15px 10px;
        }
      }