html, body {
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0a162e 0%, #172554 60%, #38bdf8 100%);
  color: #e0f2fe;
}

.announcement-banner {
  background: linear-gradient(90deg, #172554 80%, #38bdf8 100%);
  color: #e0f2fe;
  width: 100%;
  padding: 0.7em 0;
  font-size: 1rem;
  text-align: center;
  position: relative;
  z-index: 1000;
  letter-spacing: 0.01em;
  border-bottom: 2px solid #38bdf8;
  box-shadow: 0 2px 8px rgba(30, 41, 59, 0.13);
}

.announcement-banner a {
  color: #ffed4a;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}

.announcement-banner a:hover,
.announcement-banner a:focus {
  color: #fff200;
}

nav.navbar {
  display: flex;
  align-items: center;
  padding: 1rem 2vw;
  background: linear-gradient(90deg, #172554 80%, #38bdf8 100%);
  box-shadow: 0 2px 8px rgba(30, 41, 59, 0.18);
  border-bottom: 2px solid #38bdf8;
}

nav.navbar a.logo-link {
  display: flex;
  align-items: center;
  margin-right: 2rem;
}

nav.navbar img.logo {
  width: 70px;
  height: auto;
  display: block;
}

nav.navbar .nav-links {
  display: flex;
  gap: 1.2rem;
  flex: 1;
  justify-content: center;
}

nav.navbar a.nav-btn {
  color: #e0f2fe;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
  background: transparent;
  border: 2px solid transparent;
  cursor: pointer;
}

nav.navbar a.nav-btn:hover,
nav.navbar a.nav-btn:focus {
  background: #38bdf8;
  color: #172554;
  border-color: #38bdf8;
  outline: none;
}

nav.navbar a.nav-btn:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 2px;
}

header {
  position: relative;
  padding: 3.5rem 1rem 3rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, #172554 70%, #38bdf8 100%);
  color: #e0f2fe;
  min-height: 340px;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 8px 32px rgba(30,41,59,0.13);
  margin-bottom: 2.5rem;
}

header img {
  width: 100%;
  max-width: 1100px;
  display: block;
  margin: 0 auto 2rem auto;
  border-radius: 18px;
  box-shadow: 0 4px 24px #17255444;
}

header div {
  background: rgba(10, 22, 46, 0.7);
  padding: 2.5rem 2rem;
  border-radius: 18px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(56,189,248,0.07);
}

header h1 {
  font-size: 2.4rem;
  margin: 0;
  color: #38bdf8;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px #17255444;
}

header p {
  font-size: 1.25rem;
  margin-top: 0.7rem;
  color: #b6ffe2;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.btn {
  background: linear-gradient(to right, #38bdf8, #2563eb);
  color: #fff;
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-top: 1.3em;
  transition: all 0.3s;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px #38bdf844;
}

.btn::after {
  content: "→";
  position: absolute;
  right: 1.2em;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  font-weight: bold;
}

.btn:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(5px);
}

.btn:hover {
  background: linear-gradient(to right, #2563eb, #38bdf8);
  box-shadow: 0 4px 18px #38bdf888;
  transform: scale(1.05);
  color: #fff;
}

section {
  padding: 3rem 1rem;
  text-align: center;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.feature {
  background: linear-gradient(135deg, #1e293b 80%, #38bdf8 100%);
  padding: 1.5rem;
  border-radius: 14px;
  width: 260px;
  color: #e0f2fe;
  box-shadow: 0 4px 14px rgba(56,189,248,0.09);
  border: 1.5px solid #38bdf8;
  font-size: 1.08rem;
}

.plans {
  background: #0f172a;
  border-radius: 18px;
  margin: 3rem auto;
  max-width: 1200px;
  box-shadow: 0 8px 32px rgba(30,41,59,0.13);
  border: 1.5px solid #38bdf8;
}

.plan-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.plan {
  background: linear-gradient(135deg, #1e293b 80%, #38bdf8 100%);
  padding: 1.7rem 1.2rem;
  border-radius: 14px;
  width: 260px;
  color: #e0f2fe;
  box-shadow: 0 4px 14px rgba(56,189,248,0.09);
  border: 1.5px solid #38bdf8;
  font-size: 1.08rem;
}

.plan h3 {
  color: #38bdf8;
  margin-top: 0.5rem;
  margin-bottom: 0.7rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.plan strong {
  color: #38bdf8;
}

h2 {
  color: #38bdf8;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

a {
  color: #38bdf8;
  text-decoration: underline;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #60a5fa;
}

footer {
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  background: linear-gradient(90deg, #172554 80%, #38bdf8 100%);
  color: #b6ffe2;
  font-size: 1rem;
  border-top: 2px solid #38bdf8;
  margin-top: 3rem;
}

footer a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 500;
}

footer a:hover,
footer a:focus {
  text-decoration: underline;
  color: #60a5fa;
}

.trustpilot-section {
  margin: 3rem auto 3rem auto;
  max-width: 420px;
  background: linear-gradient(135deg, #172554 80%, #38bdf8 100%);
  border-radius: 18px;
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  box-shadow: 0 8px 24px rgba(30,41,59,0.22), 0 2px 12px rgba(0,0,0,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  border: 1.5px solid #38bdf8;
}

.trustpilot-title {
  color: #38bdf8;
  font-weight: bold;
  font-size: 1.18rem;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}

.trustpilot-widget {
  width: 100%;
}

@media (max-width: 800px) {
  header h1 {
    font-size: 2rem;
  }
  .features,
  .plan-list {
    flex-direction: column;
    gap: 1rem;
  }
  .feature,
  .plan {
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .trustpilot-section {
    max-width: 95vw;
    padding: 1rem 0.5rem;
  }
  body {
    padding: 0;
  }
  header div {
    padding: 1rem;
  }
  section {
    padding: 1.2rem 0.5rem;
  }
  .features,
  .plan-list {
    gap: 0.8rem;
  }
  nav.navbar {
    flex-direction: column;
    align-items: stretch;
  }
  nav.navbar a.logo-link {
    margin-right: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
  nav.navbar .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .btn, .nav-btn {
    padding: 0.7em 1.4em;
    font-size: 1.08rem;
  }
  .feature,
  .plan {
    width: 100%;
    max-width: 320px;
  }
  header h1 {
    font-size: 2.25rem;
  }
}

#cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(10,15,44,0.85);
  z-index: 20000;
  justify-content: center;
  align-items: center;
}

#cookie-modal {
  background: #172554;
  color: #e0f2fe;
  max-width: 500px;
  margin: 5vh auto;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  position: relative;
  width: 90vw;
  max-width: 500px;
  border: 2px solid #38bdf8;
}

#close-cookie-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

#open-cookie-modal {
  background: none;
  border: none;
  color: #38bdf8;
  cursor: pointer;
  text-decoration: underline;
  font-size: 1rem;
  margin-left: 0.5rem;
}

@media (max-width: 600px) {
  #cookie-modal {
    padding: 1.2rem 0.7rem;
  }
}
