/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f5f6f9;
  color: #333;
  line-height: 1.6;
}

/* HEADER */
.header {
  background: #000000;
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 24px;
  font-weight: bold;
}
.nav ul {
  display: flex;
  list-style: none;
}
.nav ul li {
  margin-left: 20px;
}
.nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.nav ul li a:hover,
.nav ul li a.active {
  color: #00c853;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('bank-bg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 80px 20px;
}
.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}
.hero p {
  font-size: 18px;
}

/* TERMS CONTENT */
.terms {
  background: white;
  margin-top: 40px;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.terms h2 {
  margin-top: 20px;
  color: #f88400;
}
.terms p {
  margin: 10px 0;
  text-align: justify;
}

/* ACCEPT BOX */
.accept-box {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accept-box button {
  padding: 10px 20px;
  background: #000000;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: not-allowed;
  transition: 0.3s;
}
.accept-box button.enabled {
  background: #00c853;
  cursor: pointer;
}

/* FOOTER */
.footer {
  background: #070707;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
}
.footer nav a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
  transition: 0.3s;
}
.footer nav a:hover {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav ul {
    flex-direction: column;
    background: #090a0a;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    display: none;
  }
  .nav ul.show {
    display: block;
  }
  .accept-box {
    flex-direction: column;
    gap: 15px;
  }
}
.logo {
  max-height: 60px; /* ajuste selon la taille que tu veux */
  width: auto;
  display: block;
}
