
/* Critical CSS - Base styles */
* { box-sizing: border-box; }

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}

/* Font optimization */
body {
  font-display: swap;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
a { color: #0077cc; text-decoration: none; }

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
a:hover { text-decoration: underline; }

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
header {
  background: #0d47a1;
  color: #fff;
  padding: 1rem 0;
  position: relative;
  z-index: 1000;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
header h1 { margin: 0; font-size: 1.5rem; }

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
header nav a { color: #fff; }

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
section.hero {
  background: #e3f2fd;
  padding: 2rem 0;
  text-align: center;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
section.hero h2 {
  margin-top: 0;
  font-size: 2rem;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
section.map-section {
  width: 100%;
  padding: 0;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
.map-container {
  height: 500px;
  width: 100%;
  border: 1px solid #ccc;
  position: relative;
  z-index: 1;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
.small-map {
  height: 400px;
  margin-top: 1rem;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
section.downloads ul,
section.countries-list ul,
section.questions-list ul,
section.container ul {
  list-style: none;
  padding: 0;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
section.countries-list li,
section.questions-list li,
section.container li {
  margin: 0.3rem 0;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
footer {
  background: #f5f5f5;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #666;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
.flag-container {
  text-align: center;
  margin: 2rem 0;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
.flag-container img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
.flag-caption {
  margin-top: 0.5rem;
  font-style: italic;
  color: #666;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}

/* Homepage enhancements */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}

.map-instructions {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #f0f0f0;
  border-radius: 8px;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}

.info-section ul, .facts-section ul {
  list-style-type: disc;
  margin-left: 2rem;
  line-height: 1.8;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}

.regions-section h3 {
  color: #0d47a1;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}

.info-section, .regions-section, .facts-section {
  padding: 2rem 0;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}

.info-section h2, .regions-section h2, .facts-section h2 {
  color: #0d47a1;
  margin-bottom: 1.5rem;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}

section.hero h1 {
  margin-top: 0;
  font-size: 2.5rem;
  color: #0d47a1;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}

/* Lazy loading styles */
img[data-src] {
  display: block;
  min-height: 50px;
  background: #f0f0f0;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}

/* Map loading state */
.map-container:not(.map-initialized) {
  background: #f0f0f0;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}

.map-container:not(.map-initialized)::after {
  content: "Loading map...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #666;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}

/* Performance optimizations */
img {
  max-width: 100%;
  height: auto;
  content-visibility: auto;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}

/* Reduce layout shifts */
.flag-container img {
  aspect-ratio: 3/2;
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  header nav ul { justify-content: flex-end; }

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
  header .container { display: flex; align-items: center; justify-content: space-between; }

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}

/* Print styles */
@media print {
  header, footer, .map-container { display: none; }

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
  body { font-size: 12pt; }

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
  a { color: #000; text-decoration: underline; }

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
}

/* Downloads Page Styles */
.download-section {
  margin: 3rem 0;
}

.download-section h3 {
  color: #0d47a1;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.download-card h4 {
  margin: 1rem 0 0.5rem;
  color: #0d47a1;
  font-size: 1.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-download:hover {
  background: #0066aa;
  text-decoration: none;
}

/* Compact cards for additional countries */
.download-card.compact {
  padding: 1rem;
  background: #fafafa;
}

.download-card.compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-card.compact .download-buttons {
  gap: 0.25rem;
}

.download-card.compact .btn-download {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Country list details */
.country-list {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.country-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d47a1;
  padding: 0.5rem;
  user-select: none;
}

.country-list summary:hover {
  color: #0066aa;
}

.section-note {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Download info section */
.download-info {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.download-info h3 {
  color: #0d47a1;
  margin-top: 0;
  border: none;
  padding: 0;
}

.download-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.download-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .download-card {
    padding: 1rem;
  }
  
  .download-card img {
    height: 140px;
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
}
    