 .page-header {
  background: #f3f3f3;
  padding: 2rem 1rem 1rem;
}

.page-header h1 {
  margin: 0;
  font-size: 2rem;
  color: var(--primary-color);
}

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

.breadcrumb a {
  color: var(--accent-color);
  text-decoration: none;
}

.page-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding: 0 1rem;
}

.page-content h2,
.page-content h3 {
  color: var(--primary-color);
  margin-top: 1.5rem;
}

.page-content p {
  margin-bottom: 1rem;
  line-height: inherit;
}

.button-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.email-button {
  background: #229954;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.email-button:hover {
  background: #1a7e43;
  color: white;
  text-decoration: none;
}

.news .news-box {
  display: flex;
  flex-wrap: wrap;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  align-items: center;
  margin-top: 25px;
}

.news-image {
  flex: 1 1 10px;
  text-align: center;
  background-color: white;
  border-radius: 8px;
  min-height: 80px;
  //box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-image img {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
}

.news-details {
  flex: 2 1 300px;
  padding: 1rem 2rem;
}

.news-details h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

.news-details p {
  margin: 0.5rem 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.normal-text {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.easy-text {
  word-break: break-word;
  overflow-wrap: anywhere;
}


.custom-select {
  padding: 0.5em 1.5em 0.5em 0.75em;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%22292%22%20height%3D%22292%22%20viewBox%3D%220%200%20292%20292%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M287%2069.4L195.3%20180.3c-4.7%205.9-11.7%209.3-19.3%209.3H116c-7.6%200-14.6-3.4-19.3-9.3L5%2069.4C-5%2056.7%204.2%2038%2021%2038h250c16.8%200%2026%2018.7%2016%2031.4z%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75em center;
  background-size: 0.65em auto;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.custom-select:focus {
  outline: none;
  border-color: #005fa2;
  box-shadow: 0 0 0 3px rgba(0, 95, 162, 0.2);
}


@media (max-width: 768px) {
  .page-content {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .page-wrapper,
  .page-content {
    padding: 0;
    margin: 0;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .page-content h2,
  .page-content h3 {
    font-size: 1.1rem;
  }

  .breadcrumb {
    font-size: 0.80rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .news-box {
    margin-left: 0.1rem;
    margin-right: 0.1rem;
  }

  .page-content h2,
  .page-content h3 {
    font-size: 1.1rem;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    word-break: break-word;
   }

  .contact-info p {
    margin: 0.3rem 0;
    line-height: 1.4;
  }

  .page-content a {
    font-size: 1rem;
  }

  .bullet-wrap {
    margin: 0 0.4em;
    white-space: nowrap;
  }

}
