﻿.adhesion-page {
  max-width: 1150px;
  margin: 0 auto;
  padding: 30px 16px;
}

.adhesion-intro {
  text-align: center;
  margin-bottom: 28px;
}

.adhesion-intro h2 {
  color: #004080;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 34px;
  margin-bottom: 10px;
}

.adhesion-intro p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
}

.adhesion-card {
  background: white;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 26px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.08);
}

.adhesion-card h3 {
  color: #004080;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 26px;
  margin-top: 0;
}

.adhesion-card p {
  font-size: 18px;
  line-height: 1.7;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.bureau-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.bureau-table th {
  background: #004080;
  color: white;
  padding: 12px;
  text-align: left;
}

.bureau-table td {
  padding: 12px;
  border: 1px solid #d6d6d6;
}

.bureau-table tr:nth-child(even) {
  background: #f3f7fb;
}

.members-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.member-photo-card {
  background: #f8fbff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,64,128,0.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

.member-photo-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.member-photo-caption {
  padding: 18px;
}

.member-photo-caption h4 {
  margin: 0 0 8px;
  color: #004080;
  font-size: 22px;
  font-family: "Roboto", Arial, sans-serif;
}

.member-photo-caption p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

.adhesion-actions {
  background: #eef6ff;
  border: 1px solid rgba(0,64,128,0.18);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

.download-link {
  display: inline-block;
  background: #004080;
  color: white;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 18px;
}

.download-link:hover {
  background: #0066cc;
  color: white;
}

.email-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #004080;
  font-weight: 700;
}

.email-box img {
  width: 28px;
  height: 28px;
}

.email-box p {
  margin: 0;
  font-size: 18px;
}

.email-box a {
  color: #004080;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .adhesion-page {
    padding: 18px 10px;
  }

  .adhesion-intro h2 {
    font-size: 28px;
  }

  .adhesion-card {
    padding: 18px;
  }

  .members-gallery {
    grid-template-columns: 1fr;
  }

  .member-photo-card img {
    height: auto;
  }

  .email-box {
    flex-direction: column;
  }

  .email-box p {
    font-size: 16px;
  }
}
