* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

nav {
  background-color: #5a8dde;
  padding: 1rem 2rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: #fff;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
}

/* Hamburger */
#toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 3px;
}

/* Menu */
.menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  transition: all 0.3s ease;
}

.menu li {
  position: relative;
}

.menu li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 0.5rem;
  transition: 0.3s;
}

.menu li a:hover {
  color: #00c9ff;
}

/* Dropdown */
.menu li ul {
  /* margin: 10px 0; */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #2c5364;
  display: none;
  list-style: none;
  padding: 0.5rem 0;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 160px;
}

.menu li:hover ul {
  display: block;
}

.menu li ul li a {
  padding: 0.6rem 1rem;
  display: block;
}

.menu li ul li a:hover {
  background-color: #1e3c52;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .menu {
    width: 100%;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
  }

  .menu li {
    width: 100%;
  }

  .menu li ul {
    position: static;
    box-shadow: none;
  }

  #toggle:checked + .hamburger + .menu {
    max-height: 1000px;
    margin-top: 2rem;
  }
}
/* navbarend */

/*FAQ Start*/


/*FAQ Start*/

.team-h1{
  text-align: center;
}

.collapsible{
    background-color: #849596;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

.fa-lightbulb {
  padding-right: 1rem;
}

.activefaq, .collapsible:hover{
    background-color: #555;
}

.collapsible::after{
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.activefaq::after{
    content: '\2212';
}

.content{
    padding: 0 18px;
    font-size: 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #f1f1f1;
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.footer {
  background: linear-gradient(to right, #5a8dde, #0046a7);
  color: #fff;
  padding: 40px 0 20px;
}

.container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  margin: 20px;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 10px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.footer-col.subscribe form {
  display: flex;
  background: white;
  border-radius: 5px;
  overflow: hidden;
  margin: 10px 0;
}

.footer-col.subscribe input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

.footer-col.subscribe button {
  padding: 10px 15px;
  background: transparent;
  border: none;
  color: #0a6ed1;
  cursor: pointer;
  font-size: 18px;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0 5px;
  border: 1px solid #ccc;
  border-radius: 50%;
  color: #fff;
}