

:root {
  --primary-dark: #121621;
  --secondary-dark: #1e2433;
  --accent-gold: #e6b54a;
  --accent-teal: #3a9188;
  --text-light: #f5f5f7;
  --text-muted: #9ca3af;
}

body {
  font-family: 'Karla', sans-serif;
  background-color: var(--primary-dark);
  color: var(--text-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Spectral', serif;
  font-weight: 500;
}

.lead {
  font-weight: 300;
}


html {
  scroll-behavior: smooth;
}


:focus {
  outline: 2px solid var(--accent-teal);
  outline-offset: 2px;
}


.btn-primary {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}


::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--secondary-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-teal);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}


input, textarea, select {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 0 3px rgba(230, 181, 74, 0.2) !important;
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease forwards;
}

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

.animate-slideUp {
  animation: slideUp 0.5s ease forwards;
}


.iti {
  width: 100%;
}


.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}


.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  width: 2px;
  background-color: var(--accent-teal);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-content {
  position: relative;
  background-color: var(--secondary-dark);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}


@media (max-width: 768px) {
  .timeline-item::before {
    left: 0;
  }
  
  .timeline-content {
    margin-left: 1.5rem;
  }
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


.faq-toggle:focus {
  outline: none;
}

.faq-toggle i {
  transition: transform 0.3s ease;
}

.faq-toggle.active i {
  transform: rotate(180deg);
}


@media print {
  body {
    background-color: white;
    color: black;
  }
  
  .no-print {
    display: none;
  }
}


.news-section {
  padding: 40px 0;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.news-title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
}

.news-filters {
  display: flex;
  gap: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.news-filter-btn {
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 8px 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.news-filter-btn:hover {
  background-color: #e0e0e0;
}

.news-filter-btn.active {
  background-color: #2196F3;
  color: white;
  border-color: #1976D2;
}

.news-search-sort {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.news-search {
  flex-grow: 1;
  max-width: 400px;
}

.news-search input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.9rem;
}

.news-sort select {
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.9rem;
  background-color: white;
}

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

.news-card {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.news-image {
  height: 180px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 20px;
}

.news-date {
  font-size: 0.8rem;
  color: #757575;
  margin-bottom: 10px;
}

.news-title {
  margin: 0 0 15px 0;
  font-size: 1.2rem;
  line-height: 1.3;
}

.news-excerpt {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.news-link {
  display: inline-block;
  color: #2196F3;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.news-link:hover {
  color: #1565C0;
  text-decoration: underline;
}

.no-news-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: #757575;
  font-style: italic;
  background-color: #f9f9f9;
  border-radius: 6px;
}


.news-detail-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px;
}

.news-detail-header {
  margin-bottom: 20px;
}

.news-detail-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.news-detail-date {
  font-size: 0.9rem;
  color: #757575;
}

.news-detail-image {
  margin-bottom: 30px;
}

.news-detail-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-detail-content {
  line-height: 1.7;
  color: #333;
}

.news-detail-content p {
  margin-bottom: 20px;
}

.error-message {
  text-align: center;
  padding: 40px;
  color: #d32f2f;
  background-color: #ffebee;
  border-radius: 6px;
  font-weight: 500;
}


@media (max-width: 768px) {
  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .news-search {
    max-width: 100%;
  }
  
  .news-search-sort {
    flex-direction: column;
    width: 100%;
  }
  
  .news-filters {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
  }
  
  .news-detail-title {
    font-size: 1.5rem;
  }
}