--brand-blue
/* ====================================================
   Your Custom Styles Start Here
   ==================================================== */
    /* Reset and Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
         --brand-blue: #2E5A93;
         --brand-maroon: #582b2c;
         --brand-orange: #ff6e00;
         --brand-dark-orange: #AF3802;
         --brand-green: #3E6314;
         --brand-dark-gray: #2a2b32;

         --sub-brand-green: #8dc63f;

         --neutral-white: #ffffff;
         --neutral-gray-light: #F1F1F2;
         --neutral-gray-medium: #B2B2B2;
         --neutral-gray-dark: #4D515F;

         --semantic-error: #c4262e;
         --semantic-success: #536315;
         --semantic-highlight: #F7E380;

         --font-family-base: "Lato", Arial, sans-serif;
         --max-width: 1200px;
        }

    body {
      font-family: 'Lato', sans-serif;
      line-height: 1.6;
      color: #333;
    }

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

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

    /* Top Bar */
    #top-bar {
      background-color: #1F1F1F;
      color: var(--neutral-gray-light) ;
      padding: 10px 0;
      font-size: 14px;
    }

    .top-bar-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .social-links a {
      color: var(--neutral-gray-light);
      margin-left: 15px;
      text-decoration: none;
    }

    .social-links a:hover {
      color: #3498db;
    }

    .social-icons {
      display: flex;
      gap: 10px;
    }

    .social-icons a {
      color: var(--neutral-gray-light);
      font-size: 18px;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #3498db;
    }

    /* Header */
    header {
      background-color: #303030;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
    }

    .logo img {
      max-width: 250px;
      height: auto;
    }

    /* Navigation */
    nav ul {
      list-style: none;
      display: flex;
      gap: 30px;
    }

    nav a {
      text-decoration: none;
      color: var(--neutral-gray-light);
      font-weight: 600;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #3498db;
    }

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

      text-align: center;
    }

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


    .hero img{
      width:75%;
      margin-bottom: 20px;
    }

    .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;
    }



    /* Services Grid */
    #services {
      text-align: center;
    }
    .services-section {
      background-color: var(--neutral-white);
      padding: 80px 0;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 40px;
      margin-top: 50px;
    }

    .service-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      padding: 40px 30px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .service-card .icon {
      font-size: 48px;
      color: var(--sub-brand-green);
      margin-bottom: 20px;
      text-align: center;
    }

    .service-card h3 {
      color: #2c5aa0;
      font-size: 24px;
      margin-bottom: 20px;
      text-align: center;
    }

    .service-card p {
      text-align: center;
    }

    .service-card ul {
      list-style: none;
      padding-left: 0;
    }

    .service-card ul li {
      padding: 8px 0;
      padding-left: 25px;
      position: relative;
      color: #555;
    }

    .service-card ul li:before {
      content: "✓";
      color: #2c5aa0;
      font-weight: bold;
      position: absolute;
      left: 0;
    }

    .service-card p {
      color: #666;
      margin-top: 20px;
      font-style: italic;
    }

    /* 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;
    }

    .btn-primary {
      display: inline-block;
      background-color: #2c5aa0;
      color: var(--neutral-white);
      padding: 15px 40px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      font-size: 18px;
      transition: background-color 0.3s;
      margin-top: 20px;
    }

    .btn-primary:hover {
      background-color: #1e4277;
    }

    /* 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;
    }

    /* Footer */
    footer {
      display: block;
    }

    footer ul {
        padding-left: 0;
        margin-left: 0;
    }
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-bottom: 30px;
    }

    .footer-section h4 {
      margin-bottom: 15px;
      color: #3498db;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section a {
      color: var(--neutral-white);
      text-decoration: none;
      line-height: 2;
    }

    .footer-section a:hover {
      color: #3498db;
    }


    /* Responsive */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 32px;
      }

      .subtitle {
        font-size: 18px;
      }

      nav ul {
        flex-direction: column;
        gap: 15px;
      }

      .header-content {
        flex-direction: column;
      }

      .top-bar-content {
        flex-direction: column;
        gap: 10px;
      }

      .services-grid,
      .access-options {
        grid-template-columns: 1fr;
      }
    }

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

    h1.page-name {
      font-family: "Lato", Arial, sans-serif;
      font-weight: 300 !important;
      font-size: 40px;
      margin-left: 8px;
    }

    .breadcrumb {
      margin-left: 10px;
    }