* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-height: 80px;
  border-bottom: 1px solid #eaeaea;
}

.navbar .logo {
  padding: 0 2rem;
}

.navbar .logo img {
  height: 50px;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.navbar a {
  color: #0056a6;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 1rem 1.2rem;
  display: block;
}

.navbar a:hover,
.navbar a.active {
  color: #0CC5AB;
  background: rgba(0, 86, 166, 0.05);
}

.btn-nav {
  background: #0056a6;
  color: white !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 4px;
  font-weight: bold !important;
  margin: 0 1rem;
  transition: all 0.3s ease;
}

.btn-nav:hover {
  background: #003b75 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
}

.dropdown-arrow {
  margin-left: 5px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 4px 4px;
  z-index: 10;
  overflow: hidden;
  border-top: 2px solid #0056a6;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  color: #0056a6 !important;
  padding: 0.8rem 1.2rem;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: #f0f7ff;
  color: #003b75 !important;
}

.dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hamburger menu - móvil */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: 1.5rem;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #0056a6;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero */
.hero {
  position: relative;
  height: 80vh;
  background: url('../img/banner.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  background: #0CC5AB;
  color: #0056a6;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  text-shadow: none;
}

.btn:hover {
  background: #0CC5AB;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: transparent;
  color: #0CC5AB;
  border: 2px solid #0CC5AB;
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
}

/* News */
.news {
  padding: 80px 20px;
  background: white;
}

.news h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #0056a6;
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 15px;
}

.news h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #0CC5AB;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.news-item {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #0056a6;
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.news-item h3 {
  margin-bottom: 15px;
  color: #0056a6;
  font-size: 1.4rem;
}

.news-item p {
  color: #555;
  line-height: 1.6;
}

/* Footer */
footer {
  background: #0056a6;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  margin-top: 40px;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

footer p {
  margin-bottom: 15px;
}

footer a {
  color: #0CC5AB;
  text-decoration: none;
  transition: all 0.2s ease;
}

footer a:hover {
  text-decoration: underline;
  color: #ffd700;
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    transition: all 0.4s ease;
    padding: 1rem 0;
    gap: 0;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  
  .navbar a {
    color: #0056a6;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    background: #f9f9f9;
    display: none;
    margin-top: 0;
    border-radius: 0;
    animation: none;
    border-top: 1px solid #eaeaea;
  }
  
  .dropdown.active .dropdown-menu {
    display: block;
  }
  
  .dropdown-toggle {
    justify-content: center;
  }
  
  .hamburger.active span {
    background: #0056a6;
  }
  
  .hero {
    height: 70vh;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 80%;
    margin-bottom: 10px;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .navbar .logo img {
    height: 40px;
  }
  
  .hero h1 {
    font-size: 1.6rem;
  }
  
  .news {
    padding: 50px 15px;
  }
  
  .news-item {
    padding: 20px;
  }
  
  .navbar .logo {
    padding: 0 1rem;
  }
  
  .hero {
    height: 60vh;
  }
}

/* ----------------------------- MEMBERS ----------------------------- */
.members-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #0056a6;
    margin-bottom: 15px;
    font-weight: 700;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #0056a6;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #666;
}

.members-content {
    margin-top: 30px;
}

.members-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.members-intro h2 {
    font-size: 2rem;
    color: #0056a6;
    margin-bottom: 20px;
}

.members-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.reason-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #0056a6;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.reason-icon {
    width: 70px;
    height: 70px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.reason-icon i {
    font-size: 2rem;
    color: #0056a6;
}

.reason-card h3 {
    font-size: 1.3rem;
    color: #0056a6;
    margin-bottom: 15px;
    font-weight: 600;
}

.reason-card p {
    color: #555;
    line-height: 1.6;
}

.join-section {
    background: #f0f7ff;
    padding: 60px;
    border-radius: 8px;
    margin-top: 40px;
}

.join-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.join-content h2 {
    font-size: 2rem;
    color: #0056a6;
    margin-bottom: 20px;
}

.join-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.qr-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.qr-code {
    text-align: center;
}

.qr-code img {
    width: 180px;
    height: 180px;
    border: 1px solid #ddd;
    padding: 10px;
    background: #fff;
    margin-bottom: 15px;
}

.qr-code p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.join-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #0056a6;
    color: white;
}

.btn-primary:hover {
    background: #003b75;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: #0056a6;
    border: 2px solid #0056a6;
}

.btn-secondary:hover {
    background: #0056a6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ----------------------------- MEMBERS RESPONSIVE ----------------------------- */
@media (max-width: 992px) {
    .members-container {
        padding: 30px 15px;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .join-section {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .members-intro h2 {
        font-size: 1.7rem;
    }
    
    .join-content h2 {
        font-size: 1.7rem;
    }
    
    .qr-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .join-buttons {
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .reason-card {
        padding: 20px;
    }
    
    .reason-icon {
        width: 60px;
        height: 60px;
    }
    
    .reason-icon i {
        font-size: 1.5rem;
    }
    
    .join-section {
        padding: 30px 15px;
    }
    
    .qr-code img {
        width: 150px;
        height: 150px;
    }
}

/* ----------------------------- HISTORY ----------------------------- */
.history-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #0056a6;
    margin-bottom: 15px;
    font-weight: 700;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #0056a6;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #666;
}

.history-content {
    margin-top: 30px;
}

.history-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.history-intro h2 {
    font-size: 2rem;
    color: #0056a6;
    margin-bottom: 20px;
}

.history-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.authorities-section {
    margin-bottom: 60px;
}

.authorities-section h2 {
    font-size: 2rem;
    color: #0056a6;
    margin-bottom: 15px;
    text-align: center;
}

.section-description {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.year-selector {
    text-align: center;
    margin-bottom: 30px;
}

.year-selector label {
    font-weight: bold;
    margin-right: 10px;
    color: #0056a6;
}

.year-selector select {
    padding: 8px 15px;
    border: 2px solid #0056a6;
    border-radius: 4px;
    background: white;
    color: #0056a6;
    font-weight: bold;
    cursor: pointer;
}

.year-selector select:focus {
    outline: none;
    border-color: #003b75;
}

.authorities-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.authority-year {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0056a6;
}

.authority-year.collapsed {
    cursor: pointer;
}

.authority-year.collapsed .authority-list {
    display: none;
}

.authority-year h3 {
    font-size: 1.5rem;
    color: #0056a6;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.authority-year.collapsed h3 {
    margin-bottom: 0;
}

.authority-year h3 i {
    color: #0056a6;
    font-size: 1rem;
}

.authority-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.authority-item {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 6px;
    border-left: 3px solid #ffd700;
}

.authority-item h4 {
    font-size: 0.9rem;
    color: #0056a6;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.authority-item p {
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

.info-request {
    margin-top: 50px;
}

.info-box {
    background: #f0f7ff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    border: 1px solid #d0e5ff;
}

.info-box h3 {
    font-size: 1.5rem;
    color: #0056a6;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.info-box h3 i {
    color: #ffd700;
}

.info-box p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.info-box a {
    color: #0056a6;
    font-weight: bold;
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}

/* -----------------------------  HISTORY RESPONSIVE ----------------------------- */
@media (max-width: 992px) {
    .history-container {
        padding: 30px 15px;
    }
    
    .authority-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .history-intro h2,
    .authorities-section h2 {
        font-size: 1.7rem;
    }
    
    .authority-year {
        padding: 20px;
    }
    
    .authority-year h3 {
        font-size: 1.3rem;
    }
    
    .year-selector {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .year-selector label {
        margin-right: 0;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .history-container {
        padding: 20px 10px;
    }
    
    .page-header {
        margin-bottom: 30px;
    }
    
    .authority-item {
        padding: 12px;
    }
    
    .info-box {
        padding: 20px;
    }
    
    .info-box h3 {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 5px;
    }
}

/* ----------------------------- ABOUT ----------------------------- */
.statutes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #0056a6;
    margin-bottom: 15px;
    font-weight: 700;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #0056a6;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #666;
}

.mission-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0efff 100%);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
    border-left: 5px solid #0056a6;
}

.mission-content h2 {
    font-size: 1.8rem;
    color: #0056a6;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mission-content h2 i {
    color: #ffd700;
    font-size: 2rem;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
    text-align: justify;
}

.statutes-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

.statutes-navigation {
    position: sticky;
    top: 100px;
    align-self: start;
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.statutes-navigation h3 {
    font-size: 1.3rem;
    color: #0056a6;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffd700;
}

.statutes-toc {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toc-link {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.toc-link:hover {
    background: #f0f7ff;
    color: #0056a6;
    border-left-color: #0056a6;
    padding-left: 20px;
}

.statutes-document {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.statutes-document h2 {
    font-size: 1.8rem;
    color: #0056a6;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.statute-chapter {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.statute-chapter:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.statute-chapter h3 {
    font-size: 1.4rem;
    color: #0056a6;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffd700;
}

.statute-article {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 3px solid #f0f7ff;
    transition: border-color 0.3s ease;
}

.statute-article:hover {
    border-left-color: #0056a6;
}

.statute-article h4 {
    font-size: 1.1rem;
    color: #0056a6;
    margin-bottom: 10px;
    font-weight: 600;
}

.statute-article p {
    color: #555;
    line-height: 1.7;
    text-align: justify;
    margin: 0;
}

.download-section {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0056a6;
    color: white;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 86, 166, 0.3);
}

.btn-download:hover {
    background: #003b75;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 86, 166, 0.4);
}

.btn-download i {
    font-size: 1.2rem;
}

/* ----------------------------- RESPONSIVE ABOUT ----------------------------- */
@media (max-width: 992px) {
    .statutes-container {
        padding: 30px 15px;
    }
    
    .statutes-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .statutes-navigation {
        position: static;
        order: 2;
    }
    
    .mission-section {
        padding: 30px;
    }
    
    .statutes-document {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .mission-content h2 {
        font-size: 1.5rem;
    }
    
    .statute-chapter h3 {
        font-size: 1.2rem;
    }
    
    .statute-article {
        padding-left: 15px;
    }
    
    .btn-download {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .statutes-container {
        padding: 20px 10px;
    }
    
    .mission-section {
        padding: 20px;
    }
    
    .statutes-document {
        padding: 20px;
    }
    
    .statutes-navigation {
        padding: 20px;
    }
    
    .mission-content h2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .toc-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* ----------------------------- ABOUT ----------------------------- */
.history-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #0056a6;
    margin-bottom: 15px;
    font-weight: 700;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #0056a6;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #666;
}

.history-content {
    margin-top: 30px;
}

.history-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.history-intro h2 {
    font-size: 2rem;
    color: #0056a6;
    margin-bottom: 20px;
}

.history-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.authorities-section {
    margin-bottom: 60px;
}

.authorities-section h2 {
    font-size: 2rem;
    color: #0056a6;
    margin-bottom: 15px;
    text-align: center;
}

.section-description {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.year-selector {
    text-align: center;
    margin-bottom: 30px;
}

.year-selector label {
    font-weight: bold;
    margin-right: 10px;
    color: #0056a6;
}

.year-selector select {
    padding: 8px 15px;
    border: 2px solid #0056a6;
    border-radius: 4px;
    background: white;
    color: #0056a6;
    font-weight: bold;
    cursor: pointer;
}

.year-selector select:focus {
    outline: none;
    border-color: #003b75;
}

.authorities-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.authority-year {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0056a6;
}

.authority-year.collapsed {
    cursor: pointer;
}

.authority-year.collapsed .authority-list {
    display: none;
}

.authority-year h3 {
    font-size: 1.5rem;
    color: #0056a6;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.authority-year.collapsed h3 {
    margin-bottom: 0;
}

.authority-year h3 i {
    color: #0056a6;
    font-size: 1rem;
}

.authority-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.authority-item {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 6px;
    border-left: 3px solid #ffd700;
}

.authority-item h4 {
    font-size: 0.9rem;
    color: #0056a6;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.authority-item p {
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

.info-request {
    margin-top: 50px;
}

.info-box {
    background: #f0f7ff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    border: 1px solid #d0e5ff;
}

.info-box h3 {
    font-size: 1.5rem;
    color: #0056a6;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.info-box h3 i {
    color: #ffd700;
}

.info-box p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.info-box a {
    color: #0056a6;
    font-weight: bold;
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}
/* ----------------------------- NETWORK ----------------------------- */
.network-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #0056a6;
    margin-bottom: 15px;
    font-weight: 700;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #0056a6;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #666;
}

.network-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.network-intro h2 {
    font-size: 2rem;
    color: #0056a6;
    margin-bottom: 20px;
}

.network-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.associations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.association-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.association-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.association-logo {
    height: 180px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-bottom: 3px solid #0056a6;
}

.association-logo img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.association-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.association-content h3 {
    font-size: 1.4rem;
    color: #0056a6;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.association-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.association-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.association-type, .association-scope {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
    background: #f9f9f9;
    padding: 6px 12px;
    border-radius: 20px;
}

.association-type i, .association-scope i {
    color: #ffd700;
}

.association-links {
    margin-top: auto;
}

.association-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0056a6;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #0056a6;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.association-link:hover {
    background: #0056a6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 86, 166, 0.3);
}

.collaboration-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0efff 100%);
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    margin-top: 40px;
}

.collaboration-content h2 {
    font-size: 2rem;
    color: #0056a6;
    margin-bottom: 20px;
}

.collaboration-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 30px;
}

.collaboration-actions {
    margin-top: 20px;
}

.btn-collaborate {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0056a6;
    color: white;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 86, 166, 0.3);
}

.btn-collaborate:hover {
    background: #003b75;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 86, 166, 0.4);
}

.association-logo:not([src]) {
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.5rem;
}

.association-logo:not([src])::before {
    content: "🏢";
    font-size: 3rem;
}

/* ----------------------------- NETWORK RESPONSIVE ----------------------------- */
@media (max-width: 992px) {
    .network-container {
        padding: 30px 15px;
    }
    
    .associations-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .collaboration-section {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .network-intro h2 {
        font-size: 1.7rem;
    }
    
    .collaboration-content h2 {
        font-size: 1.7rem;
    }
    
    .association-content {
        padding: 20px;
    }
    
    .association-logo {
        height: 150px;
        padding: 20px;
    }
    
    .association-content h3 {
        font-size: 1.2rem;
    }
    
    .association-meta {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .network-container {
        padding: 20px 10px;
    }
    
    .associations-grid {
        grid-template-columns: 1fr;
    }
    
    .association-card {
        margin-bottom: 20px;
    }
    
    .collaboration-section {
        padding: 30px 20px;
    }
    
    .btn-collaborate {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .association-logo {
        height: 120px;
    }
    
    .association-logo:not([src])::before {
        font-size: 2rem;
    }
}