* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.6;
}

header {
  background: #0f172a;
  padding: 15px 0;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.logo {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.9;
}

nav ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.hero {
  padding: 70px 0;
  background: #e2e8f0;
  text-align: center;
}

.hero h1 {
  font-size: 38px;
  margin-bottom: 12px;
}

.hero p {
  max-width: 800px;
  margin: auto;
  font-size: 16px;
  color: #334155;
}

.btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 18px;
  background: #0f172a;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
}

.btn:hover {
  background: #1e293b;
}

.section {
  padding: 50px 0;
}

.section h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.card {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.card p {
  font-size: 14px;
  color: #475569;
}

.price-box {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 18px;
  background: #fff;
}

.price-box h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.price-box .price {
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0;
  color: #0f172a;
}

.price-box ul {
  margin-top: 12px;
  padding-left: 18px;
}

.price-box ul li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #475569;
}

footer {
  margin-top: 40px;
  background: #0f172a;
  color: #fff;
  padding: 22px 0;
  text-align: center;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

form {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  max-width: 650px;
}

form label {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: bold;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  outline: none;
  font-size: 14px;
}

form textarea {
  min-height: 120px;
}

form button {
  margin-top: 14px;
  width: 100%;
  padding: 12px;
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-size: 15px;
}

form button:hover {
  background: #1e293b;
}

.small-note {
  margin-top: 10px;
  font-size: 13px;
  color: #64748b;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 14px 14px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-inner {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  color: #334155;
  flex: 1;
  min-width: 250px;
}

.cookie-banner a {
  color: #0f172a;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-btn {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #0f172a;
  cursor: pointer;
  font-size: 14px;
}

.cookie-btn.accept {
  background: #0f172a;
  color: #ffffff;
}

.cookie-btn.reject {
  background: #ffffff;
  color: #0f172a;
}

.cookie-btn:hover {
  opacity: 0.95;
}

.status-messages {
  margin-top: 16px;
  min-height: 24px;
}

