
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f5faff;
  color: #014aa9;
  scroll-behavior: smooth;
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
header img {
  height: 50px;
}
nav a {
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  color: #014aa9;
}
nav a:hover {
  color: #ffbc59;
}
.language-switcher {
  margin-left: 40px;
}
.hero {
  background: linear-gradient(to right, #014aa9, #38609e);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 100px 40px;
  flex-wrap: wrap;
}
.hero-text {
  max-width: 500px;
}
.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.3em;
  margin-bottom: 30px;
}
.hero a {
  background-color: #ffbc59;
  color: #014aa9;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.hero img {
  max-width: 400px;
  border-radius: 10px;
  margin-top: 20px;
}
.section {
  padding: 80px 20px;
  text-align: center;
}
.section h2 {
  color: #014aa9;
  margin-bottom: 40px;
}
.goals {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.goal {
  background-color: #ffffff;
  border: 2px solid #9dbce6;
  border-radius: 10px;
  padding: 30px;
  width: 250px;
}
.goal h3 {
  margin-top: 10px;
  color: #38609e;
}
.news {
  background-color: #e9f1fb;
}
.blog-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.blog-card {
  background: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 300px;
  overflow: hidden;
  text-align: left;
}
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blog-card .content {
  padding: 15px;
}
.results-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
}
.results-table th, .results-table td {
  border: 1px solid #38609e;
  padding: 12px;
}
.results-table th {
  background-color: #9dbce6;
}
.partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.partner-logos img {
  height: 100px;
  width: auto;
  object-fit: contain;
}
.partner-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.partner-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  background-color: #ffffff;
  padding: 5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.partner-logo-link:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.partner-logo-link img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}
.associated-partners {
  background-color: #e9f1fb; /* леко син фон */
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 2px solid #9dbce6;
}
.associated-partners h2 {
  margin-bottom: 40px;
  color: #014aa9;
}
.contact {
  background-color: #014aa9;
  color: white;
}
footer {
  text-align: center;
  padding: 20px;
  background-color: #012f67;
  color: white;
}
.accordion-button {
  background-color: #014aa9;
  color: white;
  padding: 14px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 5px;
}
.accordion-button:hover {
  background-color: #38609e;
}
.accordion-content {
  display: none;
  padding: 0 20px 10px;
  background-color: #f0f6ff;
  border-left: 3px solid #9dbce6;
  border-right: 3px solid #9dbce6;
  border-bottom: 3px solid #9dbce6;
}
.accordion-content ul {
  list-style: none;
  padding-left: 0;
}
.accordion-content li {
  margin: 5px 0;
}
.accordion-content a {
  text-decoration: none;
  color: #014aa9;
  font-weight: bold;
}
.accordion-content a:hover {
  color: #ffbc59;
}

.icon-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
}

.icon-card {
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 12px;
  width: 220px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.icon-card:hover {
  transform: translateY(-5px);
}

.icon-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}


