* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #FFFFFF;
  color: #111111;
  line-height: 1.4;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjYiIG51bU9jdGF2ZXM9IjMiLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjZikiIG9wYWNpdHk9IjAuMDMiLz48L3N2Zz4=');
  background-repeat: repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #F5F5F5;
}
::-webkit-scrollbar-thumb {
  background: #C0C0C0;
  border-radius: 8px;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 700;
  color: #111;
}
.section-sub {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #666;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  z-index: 1000;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  .logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
}
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links li a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  color: #333;
  transition: color 0.2s ease;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: #000;
  font-weight: 600;
}
.menu-icon {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #111;
}

@media (max-width: 800px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    width: 100%;
    text-align: center;
    gap: 1.8rem;
    padding: 2rem 0;
    transition: 0.3s ease;
    border-bottom: 1px solid #eee;
  }
  .nav-links.active {
    left: 0;
  }
  .menu-icon {
    display: block;
  }
  .nav-container {
    padding: 0.9rem 1.8rem;
  }
}

.hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 7rem 1.5rem 4rem 1.5rem;
  background: #F8F8F8;
}
.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-badge {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: inline-block;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #111;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.2rem;
  color: #555;
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #111;
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.hero-cta i {
  transition: transform 0.2s;
}
.hero-cta:hover {
  background: #333;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -12px rgba(0,0,0,0.2);
}
.hero-cta:hover i {
  transform: translateX(5px);
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: #888;
  animation: bounce 2s infinite;
  cursor: pointer;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

section {
  padding: 6rem 0;
  border-bottom: 1px solid #eee;
}
section:last-of-type {
  border-bottom: none;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.about-grid {
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-text {
  flex: 1.2;
}
.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.5rem;
}
.stat-list {
  flex: 0.8;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat-card {
  background: #F5F5F5;
  padding: 1.5rem;
  border-radius: 24px;
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.service-card, .project-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 28px;
  transition: all 0.35s ease;
  border: 1px solid #f0f0f0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.02);
}
.service-card:hover, .project-card:hover {
  transform: translateY(-6px);
  border-color: #ddd;
  box-shadow: 0 25px 35px -12px rgba(0,0,0,0.1);
}
.service-icon {
  font-size: 2.2rem;
  color: #111;
  margin-bottom: 1.2rem;
}
.service-card h3, .project-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-card p, .project-card p {
  color: #666;
  line-height: 1.5;
}

.project-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.project-image:hover {
  transform: scale(1.02);
}

.project-buttons {
 display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  background: #f0f0f0;
  color: #111;
}
.btn-demo:hover {
  background: #e0e0e0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.pricing-card {
  background: white;
  border-radius: 32px;
  padding: 2rem 1.8rem;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
}
.pricing-card.featured {
  border-color: #111;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: scale(1.02);
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 600;
}
.pricing-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  margin: 1rem 0;
}
.pricing-card ul {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0;
}
.pricing-card ul li {
  margin: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #555;
}
.pricing-card ul li i {
  color: #111;
  width: 1.2rem;
}
.btn-price {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #111;
  color: white;
  padding: 0.7rem 1.8rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}
.btn-price:hover {
  background: #333;
}

.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  background: #F8F8F8;
  border-radius: 48px;
  padding: 2.5rem;
}
.contact-info {
  flex: 1;
}
.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.contact-detail {
  margin-top: 1.8rem;
}
.contact-detail i {
  width: 32px;
  color: #111;
}
.whatsapp-link {
  color: #25D366;
  text-decoration: none;
  font-weight: 500;
}
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input, .contact-form textarea {
  background: white;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: #111;
}
.btn-submit {
  background: #111;
  color: white;
  border: none;
  padding: 0.9rem;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.btn-submit:hover {
  background: #333;
}

footer {
  padding: 2.5rem 2rem;
  text-align: center;
  color: #888;
  font-size: 0.85rem;
  border-top: 1px solid #eee;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
  z-index: 1000;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20B859;
}

@media (max-width: 750px) {
  .container {
    padding: 0 1.5rem;
  }
  .about-grid {
    flex-direction: column;
  }
  .contact-flex {
    flex-direction: column;
    padding: 1.8rem;
  }
  section {
    padding: 4rem 0;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Demo Offer Section */
#demo-offer {
  background: #F8F8F8;
}
.demo-desc {
  max-width: 700px;
  margin: 1rem auto 0;
  color: #555;
  line-height: 1.5;
}
.demo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.demo-benefits {
  flex: 1;
}
.demo-benefits ul {
  list-style: none;
}
.demo-benefits li {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  color: #333;
}
.demo-benefits li i {
  color: #25D366;
  font-size: 1.3rem;
  width: 1.8rem;
}
.demo-selector {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 32px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  text-align: center;
}
.demo-selector h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.demo-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: left;
}
.demo-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 60px;
  border: 1px solid #e0e0e0;
  transition: all 0.2s;
}
.demo-option:hover {
  background: #f5f5f5;
  border-color: #111;
}
.demo-option input {
  width: 1.2rem;
  height: 1.2rem;
  accent-color: #111;
  margin: 0;
}
.demo-option span {
  font-weight: 500;
  color: #111;
}
.btn-demo-apply {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
  margin: 0 auto;
}
.btn-demo-apply:hover {
  background: #20B859;
  transform: translateY(-2px);
}
.demo-note {
  font-size: 0.8rem;
  color: #888;
  margin-top: 1rem;
}

@media (max-width: 750px) {
  .demo-grid {
    flex-direction: column;
  }
  .demo-selector {
    width: 100%;
  }
}

/* ===== Demo Generator Styles – Mobile Optimized ===== */
.demo-section {
  background: #ffffff;
  padding: 2rem 1rem;
  font-family: 'Inter', sans-serif;
  color: #111;
}
.demo-container {
  max-width: 1400px;
  margin: 0 auto;
}
.demo-header-stats {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.demo-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin: 0;
}
.stats-badge {
  background: #f5f5f5;
  padding: 0.3rem 0.8rem;
  border-radius: 40px;
  font-size: 0.7rem;
  color: #333;
  border: 1px solid #e0e0e0;
}
.demo-subtitle {
  font-size: 0.9rem;
  text-align: center;
  color: #4a4a4a;
  margin-bottom: 2rem;
}
.demo-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  border: 1px solid #eaeaea;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
  background: #fff;
}
.demo-form {
  flex: 1.2;
  min-width: 260px;
  padding: 1.5rem;
  background: #fefefe;
}
.demo-preview {
  flex: 2;
  min-width: 280px;
  background: #1a1a1a;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
}
.package-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.package-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.pkg-btn {
  background: #f0f0f0;
  border: 1px solid #ccc;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  transition: 0.2s;
}
.pkg-btn.active {
  background: #000;
  color: white;
  border-color: #000;
}
.recommended {
  background: #e8e8e8;
}
.input-group {
  margin-bottom: 1rem;
}
.input-group label {
  font-weight: 600;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 0.3rem;
}
.input-group input,
.input-group select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid #ccc;
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
}
.realtime-toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1rem 0 1.2rem;
}
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 22px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #000;
}
input:checked + .slider:before {
  transform: translateX(22px);
}
.toggle-label {
  font-size: 0.75rem;
  color: #333;
  font-weight: 500;
}
.pulse-btn {
  animation: subtle-pulse 2s infinite;
}
@keyframes subtle-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.1); }
  70% { box-shadow: 0 0 0 8px rgba(0,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}
.generate-btn {
  background: #000;
  color: white;
  width: 100%;
  padding: 0.8rem;
  border-radius: 2rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: 0.2s;
  font-size: 0.9rem;
}
.generate-btn:hover {
  background: #333;
  transform: translateY(-2px);
}
.iframe-wrap {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.3s;
  aspect-ratio: 4 / 3;
  min-height: 300px;
}
@media (min-width: 768px) {
  .iframe-wrap {
    aspect-ratio: 16 / 9;
    min-height: 500px;
  }
}
.iframe-wrap.glow {
  box-shadow: 0 0 0 3px rgba(0,0,0,0.2), 0 0 0 6px rgba(0,0,0,0.05);
}
.demo-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  border-radius: 0.75rem;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  color: white;
  z-index: 20;
}
.loading-overlay.active {
  visibility: visible;
  opacity: 1;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255,255,255,0.2);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.demo-message {
  margin-top: 0.8rem;
  text-align: center;
  font-size: 0.75rem;
  background: #f5f5f5;
  border-radius: 2rem;
  padding: 0.5rem;
  font-weight: 500;
}
.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  color: #aaa;
  font-size: 0.7rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ai-badge {
  background: #000;
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 500;
}
.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.price-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  flex: 1;
  min-width: 220px;
  border: 1px solid #e0e0e0;
  position: relative;
}
.price-card.recommended {
  border-top: 4px solid #000;
  transform: scale(1.02);
}
.rec-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #000;
  color: white;
  padding: 0.2rem 0.8rem;
  border-radius: 30px;
  font-size: 0.65rem;
  font-weight: 600;
}
.price {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0.8rem 0;
}
.price-card ul {
  list-style: none;
  margin: 1rem 0;
}
.price-card li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}
.paypal-container {
  margin-top: 1rem;
}
.wa-container {
  text-align: center;
  margin-top: 1rem;
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: 0.2s;
}
.wa-btn:hover {
  background: #333;
  transform: translateY(-2px);
}
.industry-select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid #ccc;
  border-radius: 0.75rem;
  font-family: inherit;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  appearance: none;
  cursor: pointer;
}
.connect-section {
  margin-top: 2.5rem;
  padding: 0.5rem 0;
}
.connect-card {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 1.2rem;
  padding: 1.8rem 1.2rem;
  text-align: center;
}
.connect-icon {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 0.8rem;
}
.connect-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.connect-card p {
  font-size: 0.85rem;
  color: #4a4a4a;
  margin-bottom: 1.2rem;
}
.connect-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: 0.2s;
  margin-bottom: 1rem;
}
.connect-wa-btn:hover {
  background: #333;
  transform: translateY(-2px);
}
.connect-alternative {
  font-size: 0.7rem;
  color: #666;
  border-top: 1px solid #eee;
  padding-top: 0.8rem;
}
.connect-alternative a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  margin-left: 0.3rem;
}
@media (max-width: 768px) {
  .demo-wrapper {
    flex-direction: column;
    gap: 0;
  }
  .demo-form {
    padding: 1.2rem;
  }
  .demo-preview {
    padding: 0.8rem;
  }
  .price-card.recommended {
    transform: none;
  }
  .demo-header-stats {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .demo-title {
    font-size: 1.5rem;
  }
  .package-buttons {
    justify-content: center;
  }
}