
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #050607;
  color: #f5f5f5;
}

a {
  color: #00bcd4;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background: radial-gradient(circle at top, #042635 0, #020609 55%, #000000 100%);
  padding: 20px 16px 32px;
  text-align: center;
  border-bottom: 1px solid #0b2a35;
}

.logo {
  width: 180px;
  max-width: 60%;
  display: block;
  margin: 0 auto 10px;
}

.site-title {
  margin: 8px 0 4px;
  font-size: 1.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tagline {
  margin: 4px 0 10px;
  font-style: italic;
  color: #00e5ff;
}

.subline {
  margin: 0;
  color: #cfd8dc;
  font-size: 0.95rem;
}

nav {
  margin-top: 16px;
}

nav a {
  margin: 0 8px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

main {
  max-width: 960px;
  margin: 24px auto;
  padding: 0 16px 40px;
}

.section-card {
  background: #0c1115;
  border-radius: 14px;
  padding: 20px 18px;
  margin-bottom: 18px;
  border: 1px solid #10222b;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.section-card h2 {
  margin-top: 0;
  color: #e0f7fa;
}

.section-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 720px) {
  .section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #082028;
  border: 1px solid #00bcd4;
  color: #e0f7fa;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

ul {
  padding-left: 18px;
}

li {
  margin-bottom: 6px;
}

.cta-row {
  margin-top: 16px;
}

.button-primary {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00bcd4, #26c6da);
  color: #001216;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button-primary:hover {
  filter: brightness(1.08);
}

footer {
  border-top: 1px solid #0b2a35;
  padding: 18px 16px 26px;
  text-align: center;
  font-size: 0.85rem;
  color: #90a4ae;
}

footer a {
  color: #80deea;
}

.contact-block {
  margin-top: 6px;
}

form {
  display: block;
  margin-top: 10px;
}

.form-row {
  margin-bottom: 12px;
  text-align: left;
}

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 9px 10px;
  border-radius: 6px;
  border: 1px solid #37474f;
  background: #05090c;
  color: #eceff1;
  font-size: 0.95rem;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #00bcd4;
  box-shadow: 0 0 0 1px rgba(0, 188, 212, 0.4);
}

.form-actions {
  margin-top: 4px;
  text-align: right;
}

.thankyou {
  text-align: center;
  margin-top: 30px;
}

.thankyou p {
  max-width: 400px;
  margin: 0 auto 14px;
}
