body {
  font-family: 'Inter', 'Lato', Arial, sans-serif;
  margin: 0; padding: 0;
  background: #eaf2ff;
  color: #243c61;
}

/* HEADER */
.gw-header {
  background: #223c66;
  color: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(34,60,102,0.12);
}
.gw-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px 14px 14px;
}
.gw-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.gw-logo {
  height: 38px;
  margin-right: 12px;
}
.gw-site-title {
  font-size: 1.37rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.gw-nav {
  display: flex;
  gap: 20px;
}
.gw-nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.gw-nav-link.active, .gw-nav-link:hover, .gw-nav-link:focus {
  background: #ff8200;
  color: #fff;
  outline: none;
}

.cloud-hero {
  background: linear-gradient(120deg, #182446 60%, #264e96 100%);
  color: #fff;
  padding: 60px 0 40px 0;
  text-align: center;
}
.cloud-hero-content .subhead {
  color: #f8ad3f;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.cloud-private, .cloud-control {
  background: #f7faff;
  padding: 44px 0 20px 0;
  text-align: center;
}
.cloud-private h2, .cloud-control h2 {
  color: #264e96;
  margin-bottom: 14px;
}
.cloud-private ul, .cloud-control ul {
  list-style: none;
  padding: 0;
  color: #233a5f;
  font-size: 1.13rem;
  max-width: 800px;
  margin: 0 auto 0 auto;
}
.cloud-private ul li, .cloud-control ul li {
  margin-bottom: 14px;
  line-height: 1.7;
}
.cloud-features {
  background: #fff;
  padding: 44px 0 28px 0;
  text-align: center;
}
.cloud-features h2 {
  color: #f87c1e;
  margin-bottom: 24px;
}
.cloud-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.cloud-feature-grid .feature {
  background: #f6f9fe;
  border-radius: 14px;
  padding: 28px 18px;
  box-shadow: 0 2px 10px rgba(24, 36, 70, 0.05);
}
.cloud-feature-grid h3 {
  color: #264e96;
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.cloud-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 38px 0 32px 0;
}
.cloud-actions .btn {
  background: #f87c1e;
  color: #fff;
  padding: 13px 32px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  font-size: 1.09rem;
  transition: background .22s;
}
.cloud-actions .btn-outline {
  background: #fff;
  color: #f87c1e;
  border: 2px solid #f87c1e;
}
.cloud-actions .btn:hover,
.cloud-actions .btn:focus {
  background: #e56c16;
}
.cloud-actions .btn-outline:hover,
.cloud-actions .btn-outline:focus {
  background: #f7faff;
  color: #ea801f;
  border-color: #ea801f;
}
/* universal footer */
.footer {
  background: #192c45;
  padding: 36px 0 18px 0;
  color: #fff;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-bottom: 12px;
}
.footer-links a {
  color: #f8ad3f;
  text-decoration: none;
  font-size: 1.03rem;
  font-weight: 500;
  transition: color .16s;
}
.footer-links a:hover,
.footer-links a:focus {
  color: #fff;
}
.footer-center {
  text-align: center;
  width: 100%;
  color: #fff;
  font-size: 1.05rem;
  opacity: 0.85;
}

.copyright-line {
  text-align: center;
  color: #8fa3bf;
  font-size: 0.98rem;
  margin-top: 18px;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  font-family: 'Inter', Arial, sans-serif;
}
