/* Reset et styles de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  border-bottom: 3px solid #007acc;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

header h1 {
  font-size: 2.5rem;
  color: #007acc;
}

main {
  flex: 1;
}

section {
  margin-bottom: 30px;
}

h2 {
  font-size: 2rem;
  color: #007acc;
  margin-bottom: 15px;
}

.text-content {
  line-height: 1.8;
  font-size: 1rem;
  color: #555;
}

.text-content p {
  margin-bottom: 15px;
  text-align: justify;
}

.contact-info {
  background-color: #f9f9f9;
  border-left: 4px solid #007acc;
  padding: 20px;
  margin-top: 30px;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info a {
  color: #007acc;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
  color: #005a9c;
}

footer {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  header h1 {
    font-size: 2rem;
  }

  .text-content {
    font-size: 0.95rem;
  }
}
