/* ====================================================
   Moval 24/7 Custom Styles
   ==================================================== */

    main {
      max-width: 1200px;
      width: 75%;
      margin: auto;
      background-color: #ffffff;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Hero Section */
    .hero-container {
      width: 90%;
      margin: auto;
      text-align: center;
    }

    .hero {
      width: 100%;
      text-align: center;
      margin: auto;
    }

    .hero img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    .hero-info {
      margin-bottom: 40px;
    }

    h1 {
      font-size: 48px;
      margin-bottom: 10px;
      font-weight: 900;
      color: var(--sub-brand-green);
    }

    .subtitle {
      font-size: 24px;
      margin-bottom: 30px;
      font-weight: 600;
    }

    .subtitle p {
      font-size: 18px;
      max-width: 80%;
      margin: 0 auto 40px;
      line-height: 1.8;
      font-weight: normal;
    }



    /* Access Section */
    .access-section {
      background-color: #f5f5f5;
      padding: 80px 0;
    }

    .access-section h2 {
      color: #2c5aa0;
      font-size: 36px;
      text-align: center;
      font-weight: 700;
    }

    .access-options {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      max-width: 900px;
      margin: 0 auto;
    }

    .access-card {
      background-color: var(--neutral-white);
      border-radius: 10px;
      padding: 40px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .access-card .icon {
      font-size: 64px;
      color: #2c5aa0;
      margin-bottom: 20px;
    }

    .access-card h3 {
      color: #2c5aa0;
      font-size: 24px;
      margin-bottom: 20px;
    }

    .access-card a {
      color: var(--neutral-white);
    }

    .app-badges {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 20px;
    }

    .app-badge {
      display: inline-block;
      background-color: #2c5aa0;
      color: var(--neutral-white);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      transition: background-color 0.3s;
    }

    .app-badge:hover {
      background-color: #1e4277;
      color: #f5f5f5;
    }

    /* Alert Section */
    .alert-section {
      background-color: #fff3cd;
      border-left: 5px solid #ffc107;
      padding: 40px;
      margin: 60px 0;
    }

    .alert-section h3 {
      color: #856404;
      margin-bottom: 15px;
      font-size: 24px;
    }

    .alert-section p {
      color: #856404;
      margin-bottom: 10px;
      line-height: 1.8;
    }

    .alert-section strong {
      font-weight: 700;
    }

    /* Help Section */
    .help-section {
      background-color: var(--neutral-white);
      padding: 60px 0;
    }

    .help-section h2 {
      color: #2c5aa0;
      font-size: 36px;
      margin-bottom: 30px;
      text-align: center;
      font-weight: 700;
    }

    .contact-info {
      max-width: 600px;
      margin: 0 auto;
      background-color: #f9f9f9;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .contact-info h3 {
      color: #2c5aa0;
      margin-bottom: 20px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      color: #555;
    }

    .contact-item i {
      font-size: 20px;
      color: #2c5aa0;
      margin-right: 15px;
      width: 30px;
    }

    .contact-item a {
      color: #2c5aa0;
      text-decoration: none;
    }

    .contact-item a:hover {
      text-decoration: underline;
    }

    /* Commitment Section */
    .commitment-section {
      background: linear-gradient(135deg, #2c5aa0 0%, #1e4277 100%);
      color: var(--neutral-white);
      padding: 60px 0;
      text-align: center;
    }

    .commitment-section h2 {
      font-size: 36px;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .commitment-section p {
      font-size: 18px;
      max-width: 800px;
      margin: 0 auto;
    }



    .highlight-green {
      color: var(--sub-brand-green);
    }

    h1.page-name {
      font-weight: 300 !important;

      margin-left: 8px;
    }



    /* ====================================================
       RESPONSIVE STYLES
       ==================================================== */

    /* Tablet (max 1024px) */
    @media (max-width: 1024px) {
      main {
        width: 90%;
      }

      h1 {
        font-size: 40px;
      }

      .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
      }

      .access-options {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      }
    }

    /* Mobile (max 768px) */
    @media (max-width: 768px) {
      /* Full-width main on mobile */
      main {
        width: 100%;
      }

      .container {
        padding: 0 15px;
      }

      /* Top bar stacks vertically */
      .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 0 15px;
      }

      /* Header stacks logo above nav */
      .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
      }

      .logo img {
        max-width: 180px;
      }

      /* Nav wraps and centers */
      nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 20px;
      }

      nav a {
        font-size: 14px;
      }

      /* Hero */
      .hero-container {
        width: 100%;

      }

      h1 {
        font-size: 28px;
      }

      h1.page-name {
        font-size: 26px;
        margin-left: 0;
      }

      .subtitle {
        font-size: 18px;
      }

      .subtitle p {
        font-size: 15px;
        max-width: 100%;
      }

      /* Services */
      .services-section {
        padding: 50px 0;
      }

      .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
      }

      .service-card {
        padding: 25px 20px;
      }

      /* Access */
      .access-section {
        padding: 50px 0;
      }

      .access-section h2 {
        font-size: 26px;
        padding: 0 15px;
      }

      .access-options {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
      }

      .access-card {
        padding: 25px 20px;
      }

      /* Alert */
      .alert-section {
        padding: 25px 15px;
        margin: 30px 0;
      }

      .alert-section h3 {
        font-size: 20px;
      }

      /* Help / Contact */
      .help-section {
        padding: 40px 0;
      }

      .help-section h2 {
        font-size: 26px;
        padding: 0 15px;
      }

      .contact-info {
        padding: 25px 20px;
        margin: 0 15px;
      }

      /* Commitment */
      .commitment-section {
        padding: 40px 15px;
      }

      .commitment-section h2 {
        font-size: 26px;
      }

      .commitment-section p {
        font-size: 16px;
      }

      /* Buttons — full width on small screens */
      .btn-primary {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 16px;
      }

      .app-badge {
        display: block;
        text-align: center;
      }

      /* Footer */
      .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* Breadcrumb */
      .breadcrumb {
        margin-left: 0;
        padding: 0 15px;
      }
    }

    /* Small mobile (max 480px) */
    @media (max-width: 480px) {
      h1 {
        font-size: 24px;
      }

      .subtitle {
        font-size: 16px;
      }

      nav ul {
        gap: 8px 15px;
      }

      .service-card h3 {
        font-size: 20px;
      }

      .access-card .icon {
        font-size: 48px;
      }
    }