/* Reset and font */
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  background-image: url('./rectifie.png'); /* Use your existing background */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Container to ensure content is readable */
.regulations-container {
  max-width: 900px;
  margin: 60px auto;
  background-color: rgba(255,255,255,0.85); /* Semi-transparent for background visibility */
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Headings */
.regulations-container h1 {
  text-align: center;
  color: #000;
  margin-bottom: 20px;
}

.regulations-container h2 {
  margin-top: 25px;
  color: #c7a76a;
  font-size: 1.2rem;
}

/* Paragraphs and lists */
.regulations-container p,
.regulations-container li {
  font-size: 1rem;
  color: #222;
  margin-bottom: 12px;
}

.regulations-container ul {
  margin-left: 20px;
}

/* Footer */
.regulations-container footer {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #a3b18a;
}

/* Links */
.regulations-container a {
  color: #c7a76a;
  text-decoration: none;
  font-weight: 500;
}

.regulations-container a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .regulations-container {
    margin: 40px 15px;
    padding: 20px;
  }
}
