/* Reset + base */
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

/* Page wrapper for sticky footer */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main-content {
  flex: 1;
  padding-top: 80px; /* same as your header height */

  
}

.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;

  
}

.site-header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); */
}

/* Navbar flex layout */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.logo-container {
  width: 300px;
  display: flex;
  align-items: center;
}
.logo-container img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Nav links */
.site-nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.site-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Hamburger button */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

/* Mobile Nav Dropdown */
.mobile-nav {
  display: flex;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 80px; /* directly under header */
  left: 0;
  right: 0;
  overflow: hidden;
  max-height: 0;
  padding: 0 1rem;
  gap: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: max-height 0.4s ease, padding 0.4s ease;
  z-index: 999;
}
.mobile-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.1rem;
}

.mobile-nav a:hover {
  color: grey;
}

.mobile-nav.open {
  max-height: 400px;
  padding: 1rem 1rem;
}

/* Hero */
.hero {
  /* background: #f7f9fc; */
  background: #F8F8FF;
  padding: 3rem 0 5rem;
  text-align: center;
  border-top: .5px solid #eee;
}
.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #222;
}

.hero h3 {
  font-size: 1.5rem;
  
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: #555;
}




.btn-primary {
  background: #0055ff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: #003ecf;
}

/* Features */
.features {
  background: #ffffff;
  padding: 5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  border-top: .5px solid #eee;
}
.feature {
  flex: 1 1 30%;
  min-width: 250px;
  /* background: #003F91; */

  background: #8A8D8F;
  
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease;
  text-align: center;
}
.feature:hover {
  transform: translateY(-4px);
}

.feature h2 {
  
  color: white;
  margin-bottom: 1rem;

  /* background-color: red; */
}
.feature h3 {
  color: white;
  margin-bottom: 1rem;
}
.feature p {
  /* color: #555; */
  color: white;
}

.feature-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  gap: 10px;
  width: 100%;
  align-items: start;
}

.feature-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}


.strategy-infographic {
    /* max-width: 900px; */
    margin: 2rem auto;
    padding: 1rem 4rem 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    background-color: #0C2340;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .strategy-infographic-container {
    max-width: 1200px;
    
    /* border: 1px solid white; */
  }
  .strategy-infographic h2 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    color: white;
  }
  .strategy-infographic .subtitle {
    color: grey;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
  }
  .flow-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }
  .step {
    background: #f7f9fc;
    border: 1px solid lightgrey;
    border-radius: 5px;
    padding: 1rem;
    width: 20%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;

    height: 200px;
    min-height: 80px;
  }
  .step:hover {
    box-shadow: 0 4px 12px rgba(0,115,230,0.4);
  }
  .circle {
    /* background-color: #4B92DB; */
    background-color: #5c90d5;
    
    color: white;
    font-weight: 700;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    border: .5px solid grey;
  }
  .step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #004a99;
  }
  .step p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.3;
  }
  .arrow {
    font-size: 4rem;
    color: white;
    margin: 0 1rem;
    user-select: none;
    
  }

/* Footer */
.site-footer {
  background: #fff;
  text-align: center;
  font-size: 0.5rem;
  /* font-weight: bold; */
  color: black;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border-top: 1px solid #ddd; */

  border-top: .5px solid #eee;
}

.offering {
        display: flex; 
        flex-direction: column; 
        padding-bottom: 20px;
    }
    .offering-title {
        font-size: 24px;
        font-weight: bold;
    }

    .offering-header-text {
        display: flex; 
        flex-direction: column; 
        padding-bottom: 20px;
    }


    .offering-header {
        font-size: 16px;
        font-weight: bold;
    }

    .offering-text {
        font-size: 16px;
        font-weight: 300;
    }

    .agenda-detail {
        display: flex; 
        grid-gap: 10px;
    }

    .agenda-detail-overview {
        width: 40%;
    }

    .agenda-detail-days {
        display: flex; 
        flex-direction: column;
    }


/* Responsive */
@media (max-width: 768px) {
  .site-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .logo-container {
    width: 200px;
  }

  .hero {
    padding: 1rem 0;
  }

  .feature-container {
    display: flex;
    flex-direction: column;
    
  }

  .feature-container > div {
    margin-bottom: 1rem;
  }

  .feature-container > div {
    margin-bottom: 1rem;
  }

  .sidebar {
    text-align: center;
    order: -1; /* Now works because you're using flex */
  }


  .flow-container {
    flex-direction: column;
    gap: 1rem;
  }
  .arrow {
    display: none;
  }
  .step {
    width: 100%;
  }
  
  .agenda-detail {
      flex-direction: column;
  }

  .agenda-detail-overview {
      width: 100%;
  }
}