        body h1 h2 h3 h4 p ul li button {
          font-family: 'Archivo', sans-serif!important;
            color: black;
        }
        
        a {color: #000!important;}
        a:hover {color: #0382fc!important;}
        .linkblue {color: #cccccc!important; text-transform:uppercase!important;}
        
        /* Navigation */ 
        .sticky.is-stuck.is-at-top {  opacity: 1!important;         
        /* top: 0; */
        margin-top: 0!important; }
        
        .drop-round {
            border-radius: 20px;
            filter: drop-shadow(0 5px 5px rgba(0,0,0,.3));
        }
        
        
        .title-bar {
          padding: 2rem!important;
          background: #fff!important;
          color: #000!important;
}
        
        
        .top-bar ul {background-color: #fff!important; font-family: 'Archivo', sans-serif!important;     text-transform: uppercase;
            letter-spacing: 0.8px; 
            font-size: 14px; 
            opacity: 1!important; } 
        
        .top-bar li {margin-top: 12px; }
        
        /* icons */  
        
        i {font-size: 40px;}
        .small {font-size: 20px;}
        
        
        /* Buttons */        
        
        .button {border-radius: 5px!important; background-color: #FF12A0!important; color: white!important;     text-transform: uppercase; border: solid white 0px;
            letter-spacing: 2px;} 
        .button:hover {color: #fff!important; transform: translateY(-3px);}
        .secondary {color: white; border-radius: 5px; background-color: #031B41!important;}
        .success {background:#FF12A0!important; color: white!important; }
         .success:hover {transform: translateY(-3px);}
        
        .lozenge {background: #0382fc; border-radius: 40px; padding: 5px 15px 10px 15px; color: white!important; font-weight: 300!important;           
            font-family: 'Archivo', sans-serif!important;}
        
        .cta-primary {
            background: #0382fc;
            color: white;
        }

        .cta-primary:hover {
            background: #0382fc;
            color: white;
        }

        .cta-secondary {
            background: transparent;
            color: #0382fc;
            border: 2px solid #3498db;
        }

        .cta-secondary:hover {
            background: #0382fc;
            color: white;
        }
        
 
        /* Hero Banner Styles */
        .hero-banner {
            font-family: inherit;
            position: relative;
            height: 50vh;
            overflow: hidden;
            margin-top: 0px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0);
            z-index: -1;
        }

        .hero-content {
            text-align: center;
            color: black;
            z-index: 1;
            padding: 0 2rem;
        }

        .hero-title {
            font-family: 'Archivo', sans-serif;
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: white;
            background: #0382FC;
            border-radius: 30px;
        }

        .hero-cta {
            color: black;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            transition: background 0.3s ease;
        }

        @media screen and (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
        }

        /* Section Styles */
        .content-section {
            width: 100%;
            padding: 3rem 0;
        }

        .content-section:nth-child(even) {
            background: #f8f9fa;
        }
        
        .content-section:nth-child(odd) {
            background: #ffffff;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
            text-align: center;
            margin-bottom: 3rem;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-item {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: #0382FC;
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
        } 

        /* Footer Styles */
        .footer {
            background: #0382FC;
            color: white;
            padding: 3rem 0 1rem;
            background-image: url("/images/website2025/st-background-footer-lighter.jpg");
                   background-size: cover;
            
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            color: #ecf0f1;
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: #fff!important;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #ecf0f1!important;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #ffffff;
            color: #ffffff;
        }
        
        

        .input-group-rounded .input-group-field {
          border-radius: 5000px 0 0 5000px;
          padding-left: 1rem;
        }

        .input-group-rounded .input-group-button .button {
          border-radius: 0 5000px 5000px 0;
          font-size: 0.8rem;
        }
        
        .boldlink {color: #0382FC!important; }
        
        
    .accordion-title {
      position: relative;
      display: block;
      padding: 1.25rem 1rem;
      border: 1px solid #e6e6e6;
      border-bottom: 0;
      font-size: 1rem!important;
      line-height: 1;
      color: #0382FC;
    }
        
    .accordion-title:focus,.accordion-title:hover {
        background-color: #F8F9FA!important;
    }
        
        
/* Use Cases */

    .container {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 20px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .overview {
            background: #ffffff;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 50px;
            border-left: 5px solid #0382FC;
        }
        
        .overview h2 {
            color: #cccccc;
            margin-top: 0;
            font-size: 1.5rem;
        }
        
        .categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .category {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border-top: 4px solid #0382FC;
        }
        
        .category h3 {
            margin-top: 0;
            color: #2c3e50;
            font-size: 1.2rem;
        }
        
        .category ul {
            margin: 0;
            padding-left: 20px;
        }
        
        .category li {
            margin: 8px 0;
            color: #34495e;
        }
        
        .use-case {
            background: white;
            margin: 0px 0;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-left: 6px solid #0382FC;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .use-case:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .use-case h2 {
            color: #2c3e50;
            margin-top: 0;
            font-size: 1.8rem;
            font-weight: 600;
            background: linear-gradient(135deg, #0382FC, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .use-case h3 {
            color: #34495e;
            font-size: 1.2rem;
            margin: 20px 0 10px 0;
            font-weight: 600;
        }
        
        .challenge-tag {
            display: inline-block;
            background: linear-gradient(135deg, #0382FC, #FF12A0);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            margin: 10px 10px 10px 0;
        }
        
        .segment-tag {
            display: inline-block;
            background: linear-gradient(135deg, #36d1dc, #5b86e5);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            margin: 10px 10px 10px 0;
        }
        
        .tools-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }
        
        .tool-tag {
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.85rem;
            color: #495057;
            font-weight: 500;
        }
        
        .objectives-list {
            background: #f8f9ff;
            padding: 15px;
            border-radius: 10px;
            margin: 10px 0;
        }
        
        .objectives-list ul {
            margin: 0;
            padding-left: 20px;
        }
        
        .objectives-list li {
            margin: 8px 0;
            color: #2c3e50;
        }
        
        .description {
            color: #34495e;
            line-height: 1.7;
            margin: 15px 0;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 20px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .categories {
                grid-template-columns: 1fr;
            }
            
            .use-case {
                padding: 20px;
            }
        }
      
        /* Icon List */
        
        
    .list-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .list-item {
            background: white;
            display: flex;
            align-items: center;
            padding: 16px 20px;
            margin-bottom: 12px;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .list-item:hover {
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
            transform: translateX(4px);
        }

        .icon {
            width: 40px;
            height: 40px;
            background: #0382FC;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
            flex-shrink: 0;
        }

        .icon svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .text {
            flex: 1;
            color: #333;
            font-size: 16px;
        }

        .arrow {
            width: 24px;
            height: 24px;
            color: #999;
            flex-shrink: 0;
        }

        .arrow svg {
            width: 100%;
            height: 100%;
            fill: currentColor;
        }
        
        /* foresight journey */        
        
        
        .card-article-hover {
          box-shadow: 0px 0px 7px #888888;
            border-radius: 20px;
        }

        .card-article-hover .card-section {
          width: 90%;
          background: #fff;
          margin: 0 auto;
          padding-top: 25px;
          margin-top: -3rem;
          z-index: 2;
                border-radius: 20px !important;
        }

        .card-article-hover .card-section .article-subtext {
          text-transform: uppercase;
          letter-spacing: 2px;
          font-size: 1rem;
           color: #0382FC;
        }

        .card-article-hover .card-section .article-title {
          font-weight: bold;
          font-size: 1.2rem;
          color: #000;
        }

        .card-article-hover .card-section .article-desc {
          font-size: 1rem;
        }

        .card-article-hover .card-divider {
            
          background: #fff;
        }

        .card-article-hover .card-divider .author {
          text-transform: uppercase;
          letter-spacing: 2px;
          color: #2daebf;
            padding-left: 20px;
        }

        .card-article-hover .hover-border {
          height: 10px;
          width: 450px;
          background: #0382FC;
          width: 0;
          transition: width 1s ease;
        }

        .card-article-hover:hover .hover-border {
          height: 10px;
          width: 450px;
          transition: width 1s ease;
        }

        .card-article-hover .author {
          color: navy;
        }

        .card-article-hover .avatar {
          border-radius: 50%;
          margin: 0 1rem;
        }

        .card-article-hover .meta-data {
          text-transform: uppercase;
        }
        
        .card {border-radius: 20px!important;}

          .brighten {
            position: relative;
            display: inline-block;
          }

          .brighten img {
            display: block;
            width: 100%;
            height: auto;
          }

          .brighten::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.25); /* Light overlay */
            mix-blend-mode: screen; /* Makes colours pop */
            pointer-events: none;
          }
        .menu .button, .menu a {
                          text-transform: uppercase;
                      font-size: 14px;
                      letter-spacing: 1px!important;
          }

          .menu .is-active>a {
              background: #fff!important;
              color: #000!important;
             font-family: 'Archivo', sans-serif!important;padding-top: 20px; 
              letter-spacing: 1px!important;
              font-size: 14px;
          }

          .menu {
             font-family: 'Archivo', sans-serif!important;
          }
        
        .menu-icon {
            color: black!important;
            position: relative;
            display: inline-block;
            vertical-align: middle;
            width: 30px!important;
            height: 26px!important;
            cursor: pointer;
        }
        
        .menu-icon::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: black!important;
    -webkit-box-shadow: 0 7px 0 black, 0 14px 0 black;
    box-shadow: 0 7px 0 black, 0 14px 0 black;
    content: '';
}
        
            .reveal {
      
        max-width: 75rem;
                border-radius: 20px;
    }


.flash-success {
  border-color: #00ff00 !important;
     background-color: #fff !important;
}

.flash-success strong, .flash-success a, .flash-success .close-button   {
  /* text-shadow: 1px 1px 1px rgba(150, 150, 150, 1); */
  color: #019905 !important;
}

.flash-error {
  border-color: #D21743 !important; background-color: #fff !important;
}


.flash-error strong, .flash-error a, .flash-error .close-button {
  /* text-shadow: 1px 1px 1px rgba(150, 150, 150, 1); */
  color: #9c1132 !important;
}

.flash-flashalert {
  border-color: #D21743 !important;
}

.flash-flashalert strong, .flash-flashalert a, .flash-flashalert .close-button {
  /* text-shadow: 1px 1px 1px rgba(150, 150, 150, 1); */
  color: #9c1132 !important;
}