/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #f1f5f9;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 2rem;
}

/* Container */
.product-offerings {
  max-width: 800px;
  width: 100%;
  text-align: center;
  background: rgba(30, 41, 59, 0.85);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

/* Headings */
h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #38bdf8;
  font-weight: 700;
  letter-spacing: 1px;
}

h2 {
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
  color: #fbbf24;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #f1f5f9;
}

/* Product cards */
.product-card {
  background: #1e293b;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
}

/* Buttons */
button {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Free trial button */
#free-trial-button {
  background: #38bdf8;
  color: #0f172a;
}

#free-trial-button:hover {
  background: #0ea5e9;
  color: white;
}

/* Paid subscribe button */
#paid-subscribe-button {
  background: #fbbf24;
  color: #1e293b;
}

#paid-subscribe-button:hover {
  background: #f59e0b;
  color: white;
}

/* Paragraphs */
p {
  margin: 0.5rem 0;
  color: #cbd5e1;
}
