:root {
  --primary: #b3e5fc;
  --accent: #e0f7fa;
  --text: #333;
  --white: #ffffff;
  --grey: #f5f5f5;
  --blue: #03a9f4;
  --blue-dark: #0288d1;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--white);
  color: var(--text);
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--blue);
}

.logo span {
  color: #000;
}

.nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.nav .btn {
  background-color: var(--blue);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-left: 2rem;
  text-decoration: none;
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 3rem 2rem;
  background: var(--accent);
  justify-content: center;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding-right: 2rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text .highlight {
  color: var(--blue-dark);
}

.hero-text p {
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 1.5rem;
}

.hero-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 300px; /* Adjust this value as needed */
  height: auto;
}

.badge {
  background-color: var(--blue);
  color: white;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1rem;
}

.cta-buttons .btn {
  display: inline-block;
  margin-right: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

.btn.primary {
  background-color: var(--blue);
  color: white;
}

.btn.secondary {
  background-color: #fff;
  border: 1px solid var(--blue);
  color: var(--blue-dark);
}

/* Section */
.section {
  padding: 3rem 2rem;
  text-align: center;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta-section {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

/* Privacy */
.content {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-policy {
  background: var(--grey);
  padding: 2rem;
  border-radius: 8px;
}

.footer {
  background: var(--grey);
  padding: 2rem;
  font-size: 0.95rem;
  color: #333;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-columns div {
  flex: 1;
  min-width: 200px;
}

.footer-columns h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.footer-columns ul {
  list-style: none;
  padding: 0;
}

.footer-columns ul li {
  margin-bottom: 0.5rem;
}

.footer-columns a {
  text-decoration: none;
  color: inherit;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  color: #777;
}

.footer hr {
  border: none;
  border-top: 1px solid #ccc;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    padding-right: 0;
  }

  .nav .btn {
    margin-left: 1rem;
  }
}
