:root {
  --text-color: #333333;
  --background: #ffffff;
  --link-color: #005f73;
  --link-hover: #0a9396;
  --focus-outline: #94d2bd;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: var(--background);
  color: var(--text-color);
  line-height: 1.6;
}
.split-container {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

.brand-panel {
  flex: 1 1 40%;
  background: linear-gradient(270deg, #e0c3fc, #8ec5fc, #c0ede4, #ebc9df, #e0c3fc);
  background-size: 800% 800%;
  animation: gradientFlow 30s ease infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-panel {
    animation: none;
    background-position: center;
  }
}

.brand-panel .logo {
  max-width: 300px;
  width: 100%;
  height: auto;
}
.brand-panel svg {
  width: 80%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.content-panel {
  flex: 1 1 60%;
  background-color: var(--background);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-panel h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.content-panel h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.content-panel p {
  max-width: 600px;
  margin-bottom: 1rem;
}

.contacts a {
  color: var(--link-color);
  text-decoration: underline;
}

.contacts a:hover,
.contacts a:focus {
  color: var(--link-hover);
  outline: 3px solid var(--focus-outline);
  outline-offset: 2px;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #f7f7f7;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .split-container {
    flex-direction: column;
  }
  .brand-panel, .content-panel {
    flex: 1 1 100%;
  }
  .brand-panel {
    padding: 1.5rem;
  }
  .content-panel {
    padding: 2rem 1rem;
  }
}
#introModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease;
  text-align: center;
  padding: 2rem;
  color: #ffffff;
}

#introModal.fade-out {
  opacity: 0;
  pointer-events: none;
}

.modal-text {
  max-width: 800px;
  font-family: 'Caveat', Arial, sans-serif;
  text-align: center;
}

.modal-text h2 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-family: 'Caveat', Arial, sans-serif;
}

.modal-text p {
  font-size: 2.2rem;
  line-height: 1.6;
  color: #e0e0e0;
  font-family: 'Caveat', Arial, sans-serif;
}