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

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #333;
  background: #f8f9fa;
}

.container {
  max-width: 90%;
  margin: 30px auto;
  padding: 0 ;
}

/* Hero (reuse site gradient) */
.hero {
  background: linear-gradient(135deg, #024173 0%, #1a5490 100%);
  color: #fff;
  text-align: center;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  height: min-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="bd-pattern" width="26" height="26" patternUnits="userSpaceOnUse"><path d="M13,0 L26,13 L13,26 L0,13 Z" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23bd-pattern)"/></svg>');
  animation: bd-float 22s ease-in-out infinite;
  opacity: .9;
}

@keyframes bd-float {
  0%,100% {
    transform:translateY(0) rotate(0);
  }

  50% {
    transform:translateY(-14px) rotate(2deg);
  }

}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  margin-bottom: .5rem;
  background: linear-gradient(45deg, #C8A451, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.hero-lead {
  font-size: 1.05rem;
  opacity: .95;
  max-width: 900px;
  margin: 0.35rem auto 0;
}

/* Under construction section */


.uc-wrap {
  display: grid;
  place-items: center;
}

.uc-card {
  background: #fff;
  border-radius: 22px;
  padding: 2rem;
  border: 1px solid rgba(2,65,115,0.06);
  box-shadow: 0 18px 48px rgba(2,65,115,.1);
  max-width: 760px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.uc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #024173, #C8A451);
}

.uc-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #024173, #1a5490);
  color: #fff;
  font-size: 2rem;
  margin: 0 auto .9rem;
  box-shadow: 0 12px 30px rgba(2,65,115,.25);
}

.uc-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #024173;
  margin-bottom: .4rem;
}

.uc-sub {
  color: #555;
  max-width: 680px;
  margin: 0 auto .9rem;
}

.uc-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.uc-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  justify-content: center;
  color: #3b4b5b;
  padding: .35rem .6rem;
}

.uc-item i {
  color: #024173;
}

.uc-actions {
  margin-top: 1.1rem;
  display: flex;
  gap: .6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.uc-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .95rem;
  border-radius: 10px;
  border: 1px solid rgba(2,65,115,0.15);
  background: #f7f9fb;
  color: #024173;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.uc-btn:hover {
  background: #eef3f8;
  transform: translateY(-2px);
  border-color: #C8A451;
}

@media (max-width: 600px) {
  .hero {
    padding: 1rem 0;
  }

  .container {
    padding: 0 15px;
  }

}
