<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f7fa;
}

h1,
h2 {
  font-family: "Roboto", sans-serif;
  color: #2c5282;
}

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

header {
  background-color: #2c5282;
  padding: 15px 0;
}

.navigation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 15px;
  transition: background-color 0.3s ease;
}

@media (any-hover: hover) {
  .nav-link:hover {
    background-color: #457b9d;
  }
}

.nav-link:focus {
  outline: 2px solid #a3bffa;
}

.nav-link:active {
  background-color: #1d3557;
}

.section {
  margin: 40px 0;
  animation: fadeIn 1s ease-in;
}

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

h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

p {
  font-size: 16px;
  margin-bottom: 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  flex: 1 1 200px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (any-hover: hover) {
  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
}

.accordion-item {
  margin-bottom: 10px;
}

.accordion-button {
  width: 100%;
  padding: 15px;
  background-color: #e2e8f0;
  border: none;
  text-align: left;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accordion-button.active {
  background-color: #a3bffa;
}

@media (any-hover: hover) {
  .accordion-button:hover {
    background-color: #cbd5e0;
  }
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #fff;
  padding: 0 15px;
}

.accordion-content p {
  padding: 15px 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.5s ease-in;
}

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

.contact-form label {
  font-size: 16px;
  color: #2c5282;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 2px solid #a3bffa;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2c5282;
  box-shadow: 0 0 5px rgba(44, 82, 130, 0.3);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.btn {
  padding: 12px 20px;
  background-color: #2c5282;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

@media (any-hover: hover) {
  .btn:hover {
    background-color: #457b9d;
    transform: translateY(-2px);
  }
}

.btn:focus {
  outline: 2px solid #a3bffa;
}

.btn:active {
  background-color: #1d3557;
  transform: translateY(0);
}

.footer {
  background-color: #2c5282;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

@media (any-hover: hover) {
  .footer-links a:hover {
    color: #a3bffa;
    text-decoration: underline;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 22px;
  }
  .navigation {
    flex-direction: column;
    align-items: center;
  }
  .contact-form {
    padding: 15px;
  }
}
</pre></body></html>