body {
    font-family: "Courier New", monospace;
    background-color: #f5deb3;
    background: linear-gradient(to right, #f5deb3, #ffffff);
    color: #5e503f;
    text-align: center;
    margin: 0;
    padding: 0;
}

h1 {
    font-family: Garamond, serif;
    font-size: 2.5em;
    margin-top: 20px;
    text-shadow: 2px 2px 5px #d2b48c;
}

h2, h3 {
    font-family: Garamond, serif;
    font-size: 2em;
    margin: 10px 0;
}

/* Header */
.site-header {
    background-color: #fff8dc;
    padding: 10px 20px;
    border-bottom: 2px solid #5e503f;
    text-align: left;
    box-shadow: 0 2px 6px rgba(94, 80, 63, 0.1);
}

.logo {
    font-family: Garamond, serif;
    font-size: 1.8em;
    font-weight: bold;
    color: #5e503f;
}

/* Increased content margins */
.content, .hero, .how-it-works, .features, .cta {
    margin: 30px auto;
    width: 85%;
    max-width: 900px;
    padding: 25px;
}

ol, ul {
    text-align: left;
    margin: 20px auto;
    padding-left: 40px;
    list-style-position: outside;
    max-width: 700px;
}

li {
    margin: 10px 0;
    line-height: 1.5em;
}

footer {
    margin-top: 40px;
    padding: 20px 0;
    font-size: 1.2em;
    background-color: #5e503f;
    color: #f5deb3;
}

footer a {
    color: #f5deb3;
}

a {
    color: #5e503f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.nav {
    background-color: #5e503f;
    padding: 10px 0;
}

.nav a {
    color: #f5deb3;
    margin: 0 15px;
    font-size: 1.2em;
    text-decoration: none;
}

.nav a:hover {
    text-decoration: underline;
}

form {
    margin-top: 20px;
}

input, textarea {
    display: block;
    margin: 10px auto;
    padding: 10px;
    border: 1px solid #5e503f;
    background-color: #fffaf0;
    border-radius: 6px;
    font-family: "Courier New", monospace;
}

button, .cta-button {
    padding: 10px 25px;
    background-color: #5e503f;
    color: #f5deb3;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover, .cta-button:hover {
    background-color: #d2b48c;
    color: #5e503f;
}

.hero {
    font-size: 1.1em;
    margin-top: 20px;
}

.typewriter-text {
    font-weight: bold;
    color: #5e503f;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px auto;
    max-width: 1000px;
    gap: 20px;
}

.feature-card {
    background-color: #fff8dc;
    border: 2px solid #5e503f;
    border-radius: 15px;
    width: 220px;
    padding: 20px;
    text-align: center;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.15);
}

.feature-card i {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #5e503f;
}


.demo-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 60px auto;
    padding: 20px;
    max-width: 1000px;
}

.demo-panel {
    flex: 1 1 400px;
    background-color: #fffaf0;
    border: 2px solid #5e503f;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
}

.demo-panel h3 {
    font-family: Garamond, serif;
    margin-bottom: 15px;
    color: #5e503f;
}

.chat-bubble {
    background-color: #f5deb3;
    border-radius: 20px;
    padding: 15px;
    font-family: "Courier New", monospace;
    font-size: 1.1em;
    line-height: 1.5;
    color: #5e503f;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
}

.social-preview {
    background-color: #ffffff;
    border-left: 4px solid #5e503f;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    font-family: "Courier New", monospace;
    color: #5e503f;
    position: relative;
}

.social-preview i {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.4em;
    color: #5e503f;
}

.instagram { border-color: #e1306c; }
.facebook { border-color: #1877f2; }
.twitter { border-color: #1da1f2; }

.nimbly-header {
    background-color: #fff8dc;
    border-bottom: 2px solid #5e503f;
    padding: 3em 0 2em 0;
    text-align: center;
    margin-bottom: 3em;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.nimbly-logo {
    font-family: 'Garamond', serif;
    font-size: 3.5em;
    color: #5e503f;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(94, 80, 63, 0.25); /* Subtle soft glow */
    transition: text-shadow 0.3s ease;
}

.nimbly-logo:hover {
    text-shadow: 0 0 15px rgba(94, 80, 63, 0.35); /* Slight intensification on hover */
}

.nimbly-tagline {
    font-family: 'Courier New', monospace;
    font-size: 1.3em;
    color: #5e503f;
    margin-top: 0.8em;
    opacity: 0.9;
}

/* PRICING */
.pricing-section {
  background-color: #fffaf0;
  border: 2px solid #5e503f;
  border-radius: 15px;
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
}

.pricing-tier {
  border: 2px dashed #5e503f;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.price {
  font-size: 1.5em;
  color: #5e503f;
  margin: 10px 0;
}

.price span {
  font-size: 0.9em;
  opacity: 0.8;
}

/* WHAT'S INCLUDED */
.includes-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
}

.includes-section ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.includes-section li {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.5;
}

/* FAQ */
.faq-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  text-align: left;
}

.faq {
  margin-bottom: 20px;
}

.faq h4 {
  font-size: 1.3em;
  color: #5e503f;
  margin-bottom: 5px;
}

.faq p {
  font-size: 1.1em;
  line-height: 1.4;
}

/* PLATFORM CHECKBOXES */
.platform-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  margin-top: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.platform-checks label {
  display: flex;
  align-items: center;
  font-size: 1em;
  color: #5e503f;
  font-family: "Courier New", monospace;
  background-color: #fff8dc;
  padding: 8px 12px;
  border: 2px solid #5e503f;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.platform-checks label:hover {
  background-color: #f5deb3;
}

.platform-checks input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.2);
  accent-color: #5e503f; /* modern browsers only */
}


.pricing-section {
    background-color: #fffaf0;
    border: 2px solid #5e503f;
    border-radius: 15px;
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    text-align: center;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.pricing-tier {
    background-color: #fff8dc;
    border: 2px solid #5e503f;
    border-radius: 15px;
    width: 280px;
    padding: 25px;
    text-align: center;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}


.pricing-tier:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.15);
}

.pricing-tier h3 {
    font-size: 1.7em;
    font-family: Garamond, serif;
    margin-bottom: 10px;
}

.price {
    font-size: 1.6em;
    color: #5e503f;
    font-weight: bold;
    margin: 10px 0 5px;
}

.setup {
    font-size: 1em;
    opacity: 0.8;
    margin-bottom: 10px;
}

.supported-platforms {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px;
  text-align: center;
  border: 2px solid #5e503f;
  border-radius: 15px;
  background-color: #fffaf0;
}

.supported-platforms h2 {
  font-family: Garamond, serif;
  font-size: 2.2em;
  margin-bottom: 10px;
}

.supported-platforms .subtitle {
  font-size: 1.1em;
  margin-bottom: 30px;
  font-style: italic;
  color: #5e503f;
}

.platform-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.platform-card {
  background-color: #fff8dc;
  border: 2px solid #5e503f;
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 1.1em;
  width: 160px;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  transition: transform 0.2s ease;
}

.platform-card i {
  font-size: 1.4em;
  color: #5e503f;
}

.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 4px 4px 15px rgba(0,0,0,0.12);
}


.thank-you {
  max-width: 700px;
  margin: 80px auto;
  padding: 40px;
  background-color: #fff8dc;
  border: 2px solid #5e503f;
  border-radius: 15px;
  text-align: center;
  box-shadow: 4px 4px 12px rgba(0,0,0,0.1);
}

.thank-you h1 {
  font-family: Garamond, serif;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.thank-you p {
  font-size: 1.2em;
  line-height: 1.6;
  color: #5e503f;
}

.live-now-banner {
  position: fixed;
  top: 60px; /* adjust depending on your navbar height */
  left: 0;
  width: 100%;
  background-color: #fffae6;
  color: #333;
  text-align: center;
  font-weight: bold;
  padding: 0.5rem;
  font-size: 1rem;
  border-bottom: 2px solid #ffd700;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffd700;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
}

.floating-cta .cta-button {
  text-decoration: none;
  font-weight: bold;
  color: #333;
  font-family: sans-serif;
}

.qs-pricing-section {
  background-color: #fffaf0;
  border: 2px solid #5e503f;
  border-radius: 15px;
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  text-align: center;
}

.qs-pricing-tier {
  background-color: #fff8dc;
  border: 2px solid #5e503f;
  border-radius: 15px;
  max-width: 600px;
  margin: 0 auto;
  padding: 25px;
  text-align: center;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.qs-pricing-tier:hover {
  transform: translateY(-5px);
  box-shadow: 5px 5px 15px rgba(0,0,0,0.15);
}

.qs-pricing-tier h3 {
  font-size: 1.7em;
  font-family: Garamond, serif;
  margin-bottom: 10px;
}


