/* Bob Tools - AI Offline Forms Platform */

/* CSS Custom Properties */
:root {
  --bg-primary: #000000;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --accent-orange: #FF6B00;
  --accent-orange-hover: #FF8533;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --border-color: rgba(255, 255, 255, 0.2);
  --border-radius: 12px;
  --border-radius-lg: 30px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.6);

  /* Hero gradient */
  --hero-gradient: linear-gradient(
    135deg,
    #22c55e 0%,
    #3b82f6 25%,
    #ec4899 50%,
    #f97316 75%,
    #06b6d4 100%
  );
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: var(--text-primary);
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-orange);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: var(--text-primary);
  border: none;
}

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.05);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-logo h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-orange);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent-orange);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
}

/* Language Switcher */
.lang-switch {
  display: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.lang-switch:hover {
  color: var(--accent-orange);
  border-color: var(--accent-orange);
}

/* Hero Section */
.hero {
  padding: 120px 0 40px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero Heading */
.hero-heading {
  text-align: center;
  margin-bottom: 40px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  background: var(--hero-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin: 0;
}

/* Prompt Examples */
.prompt-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 32px;
}

.prompt-chip {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 0.6rem 1.2rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.prompt-chip:hover {
  border-color: var(--accent-orange);
  color: var(--text-primary);
  background-color: rgba(255, 107, 0, 0.1);
}

.prompt-chip.active {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background-color: rgba(255, 107, 0, 0.1);
}

/* Chat Input */
.chat-input-wrapper {
  margin-bottom: 48px;
}

.chat-input-box {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 0.75rem;
  transition: border-color 0.2s ease;
}

.chat-input-box:focus-within {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.chat-textarea {
  flex: 1;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  line-height: 1.5;
  padding: 0.5rem 0.75rem;
  resize: none;
  min-height: 48px;
  max-height: 150px;
  overflow-y: auto;
}

.chat-textarea::placeholder {
  color: var(--text-muted);
}

.chat-textarea:focus {
  outline: none;
  box-shadow: none;
}

.create-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background-color: var(--accent-orange);
  color: var(--text-primary);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.create-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.create-btn:not(:disabled):hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.create-btn svg {
  transition: transform 0.2s ease;
}

.create-btn:not(:disabled):hover svg {
  transform: translateX(3px);
}

/* Partners Section */
.partners {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.partners-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.partners-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.partners-logos img {
  height: 30px;
  width: auto;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.partners-logos img:hover {
  opacity: 0.8;
}

/* Possibilities Section */
.possibilities {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* MCP Section */
.mcp-section {
  padding: 0 0 80px;
}

.mcp-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 2rem 2.5rem;
}

.mcp-content {
  flex: 1;
}

.mcp-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-orange);
  background-color: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 6px;
  padding: 0.25rem 0.6rem;
  margin-bottom: 0.75rem;
}

.mcp-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.mcp-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  max-width: 520px;
}

.mcp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-orange);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: monospace;
}

.mcp-link:hover {
  color: var(--accent-orange-hover);
}

.mcp-icon {
  flex-shrink: 0;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .mcp-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .mcp-content p {
    max-width: none;
  }

  .mcp-icon {
    order: -1;
  }
}

/* Updates Section */
.updates {
  padding: 80px 0;
}

.updates-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.updates-header h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin: 0;
}

.view-all {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
  text-decoration: none;
}

.view-all:hover {
  color: var(--accent-orange);
}

.view-all svg {
  width: 16px;
  height: 16px;
}

.update-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 2rem;
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.update-date {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.update-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.update-card p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.update-version {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.read-more:hover {
  color: var(--accent-orange);
}

.update-image {
  width: 200px;
  height: 150px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.update-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Page Content (for inner pages) */
.page-content {
  padding: 120px 0 80px;
  min-height: calc(100vh - 200px);
}

.page-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.page-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* Contact Form */
.contact-section {
  max-width: 600px;
  margin: 0 auto;
}

.contact-iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: var(--border-radius);
}

/* Products Page */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-4px);
}

.product-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.product-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.product-card .btn {
  width: 100%;
}

/* Updates Page */
.updates-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

/* Privacy Policy Page */
.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

/* Footer */
.footer {
  background-color: var(--bg-primary);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--accent-orange);
}

/* Chat Button */
.chat-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.2s ease;
  z-index: 99;
}

.chat-button:hover {
  transform: scale(1.1);
  background-color: var(--accent-orange-hover);
}

.chat-button svg {
  width: 28px;
  height: 28px;
  fill: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Hero */
  .hero {
    padding: 100px 0 40px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .prompt-chip {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .create-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  /* Updates */
  .update-card {
    grid-template-columns: 1fr;
  }

  .update-image {
    width: 100%;
    height: 200px;
    order: -1;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section-label {
    font-size: 1.25rem;
  }

  .chat-input-box {
    flex-direction: column;
    align-items: stretch;
  }

  .create-btn {
    justify-content: center;
  }

  .chat-button {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent-orange);
  outline-offset: 2px;
}

/* Currency Converter Page */
.currency-converter-page {
  text-align: center;
}

.cc-header {
  margin-bottom: 3rem;
}

.cc-logo {
  width: 120px;
  height: auto;
  margin-bottom: 1.5rem;
}

.currency-converter-page .page-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.currency-converter-page .page-description {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.cc-platforms {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.cc-platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.cc-platform-item a {
  display: block;
  transition: transform 0.2s ease;
}

.cc-platform-item a:hover {
  transform: translateY(-3px);
}

.cc-platform-item img {
  height: 50px;
  width: auto;
}

.cc-platform-item span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.cc-platform-item .platform-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: transparent;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
}

.cc-platform-item .platform-btn:hover {
  border-color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.05);
}

.cc-platform-item .telegram-btn {
  background-color: #0088cc;
  border-color: #0088cc;
}

.cc-platform-item .telegram-btn:hover {
  background-color: #0099dd;
  border-color: #0099dd;
}

.cc-screenshot {
  max-width: 350px;
  margin: 0 auto;
}

.cc-screenshot img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
  .cc-platforms {
    gap: 1.5rem;
  }

  .cc-platform-item img {
    height: 40px;
  }

  .cc-screenshot {
    max-width: 280px;
  }
}

/* Thank You Page */
.thank-you-page {
  background-color: #e8e8e8;
}

.thank-you-page .navbar {
  background-color: rgba(0, 0, 0, 0.98);
}

.thank-you-content {
  padding-top: 70px;
  min-height: calc(100vh - 200px);
}

.thank-you-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 5%;
  gap: 0;
}

.thank-you-image {
  flex: 0 0 auto;
  max-width: 55%;
  z-index: 1;
}

.thank-you-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
}

.thank-you-message {
  position: relative;
  background: white;
  padding: 60px 80px;
  margin-left: -100px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  max-width: 600px;
}

.thank-you-message h1 {
  font-size: 3rem;
  font-weight: 400;
  color: #000;
  margin: 0;
  line-height: 1.2;
}

.thank-you-platforms {
  background-color: #000;
  padding: 60px 20px;
  text-align: center;
}

.thank-you-platforms .platforms-subtitle {
  color: var(--text-primary);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.thank-you-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.thank-you-badge {
  display: block;
  transition: transform 0.2s ease;
}

.thank-you-badge:hover {
  transform: translateY(-3px);
}

.thank-you-badge img {
  height: 55px;
  width: auto;
}

.thank-you-page .footer {
  background-color: #e8e8e8;
}

.thank-you-page .footer-copyright,
.thank-you-page .footer-links a {
  color: #333;
}

.thank-you-page .footer-links a:hover {
  color: var(--accent-orange);
}

@media (max-width: 992px) {
  .thank-you-hero {
    flex-direction: column;
    padding: 40px 20px;
  }

  .thank-you-image {
    max-width: 100%;
  }

  .thank-you-message {
    margin-left: 0;
    margin-top: -40px;
    padding: 40px;
    max-width: 90%;
  }

  .thank-you-message h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .thank-you-message {
    padding: 30px 20px;
  }

  .thank-you-message h1 {
    font-size: 1.5rem;
  }

  .thank-you-badges {
    gap: 1rem;
  }

  .thank-you-badge img {
    height: 45px;
  }
}

/* Print styles */
@media print {
  .navbar,
  .nav-toggle,
  .chat-button {
    display: none;
  }

  body {
    color: black;
    background: white;
  }
}
