*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a2e; /* Dark background for the whole page */
    color: #e0e0e0; /* Light text color */
}

.hero-banner {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.6));
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.feature-card {
    background-color: #2a2a4a;
    border: 1px solid #3a3a5a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}
.accordion-item {
    background-color: #2a2a4a;
    border: 1px solid #3a3a5a;
}
.accordion-header {
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.accordion-header:hover {
    background-color: #3a3a5a;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.accordion-content.active {
    max-height: 200px; /* Adjust as needed, should be larger than content */
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.icon-bg {
    background: linear-gradient(45deg, #6a0dad, #007bff); /* Gradient for icons */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header {
    background: #111;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  nav {
    display: flex;
    gap: 15px;
  }
  nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  nav a:hover, nav a.active {
    color: #facc15; /* gold hover */
  }
  .menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }
  @media (max-width: 768px) {
    nav {
      display: none;
      flex-direction: column;
      background: #222;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      padding: 10px 0;
    }
    nav.show {
      display: flex;
      padding: 10px 23px;
      z-index: 99;
      background-color: #1a1a2ea9;
    }
    .menu-toggle {
      display: block;
    }
  }

  img[alt="Thoughts"] {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  