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

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/raleway-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/raleway-500.woff2') format('woff2');
}

html, body {
  height: 100%;
}

body {
  font-family: 'Raleway', system-ui, sans-serif;
  background: #1F6477;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.cs-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cs-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

.cs-logo { display: block; }

.cs-logo-img {
  height: 160px;
  width: auto;
}

.cs-text {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #D2E0E0;
}

.cs-footer {
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(210, 224, 224, 0.6);
}

.cs-footer a {
  color: rgba(210, 224, 224, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cs-footer a:hover {
  color: #ffffff;
}
