* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  color: #001F4D;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Logo image */
.logo-img {
  height: 24px;
}

/* Header */
header {
  background-color: #004A99;
  color: white;
  padding: 1em;
}

.header-container {
  display: flex;
  align-items: center;
}

/* Title Bar */
.title-bar {
  background-color: #d9e6f2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  margin: 1em;
  border-radius: 8px;
}

.title-bar h1 {
  font-size: 1.2rem; /* plus petit que la normale */
}

.menu-icon {
  font-size: 1.5em;
}

/* Payment Section */
.payment-section {
  margin: 1em;
  padding: 1em;
}

.payment-section h2 {
  border-bottom: 3px solid #ff7e67;
  display: inline-block;
  margin-bottom: 1em;
  font-size: 1.2rem;
}

/* Box with instruction + buttons */
.payment-box {
  background-color: #d9e6f2;
  padding: 1.2em;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.instruction {
  margin-bottom: 0.8em;
  font-size: 0.875rem;
  color: #001f4d;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}

button {
  background-color: #004A99;
  color: white;
  padding: 0.6em 1em;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
  box-shadow: 0 3px #003366;
  transition: background 0.2s ease;
}

.infraction-button {
  background-color: #004A99;
  color: white;
  padding: 0.6em 1em;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
  box-shadow: 0 3px #003366;
  transition: background 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

button:hover {
  background-color: #003366;
}

.infraction-button:hover {
  background-color: #003366;
}

/* Footer */
footer {
  margin-top: auto;
  text-align: center;
  padding: 1em;
  font-size: 0.9em;
}

.footer-logo {
  margin-top: 0.5em;
}
