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

:root {
  --primary: #e91e63;
  --primary-dark: #c2185b;
  --secondary: #2196f3;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --gray: #444444;
  --success: #4caf50;
  --gradient: linear-gradient(135deg, #e91e63 0%, #2196f3 100%);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
  color: var(--dark);
}

/* Hero Section */
.hero {
  background: var(--gradient);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.cta-btn {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.submit-btn {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  padding: 18px 35px;
  font-size: 1rem;
  animation: pulse 2s infinite;
  border-radius: 50px;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(233, 30, 99, 0.6); }
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--dark);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card svg {
  width: 60px;
  height: 60px;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--dark);
}

/* How It Works */
.steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  max-width: 250px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card-content {
  padding: 25px;
}

.blog-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.blog-card p {
  color: var(--gray);
  margin-bottom: 20px;
}

/* FAQ */
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--gray);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  color: rgba(255,255,255,0.5);
}

/* Content Sections */
.content-section {
  line-height: 1.8;
  font-size: 1.1rem;
}

.content-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--dark);
}

.content-section p {
  margin-bottom: 20px;
  color: var(--dark);
}

.content-section ul {
  margin: 20px 0;
  padding-left: 20px;
}

.content-section li {
  margin-bottom: 10px;
}

/* Page Header */
.page-header {
  background: var(--gradient);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    gap: 15px;
  }

  nav ul.active {
    display: flex;
  }

  nav a {
    display: block;
    padding: 10px 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .cta-floating {
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
  }

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

/* Ensure no horizontal overflow */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* Utility classes to replace inline styles */
.text-center { text-align: center; }
.mt-50 { margin-top: 50px; }
.mt-40 { margin-top: 40px; }
.mt-30 { margin-top: 30px; }
.mt-20 { margin-top: 20px; }
.mt-15 { margin-top: 15px; }
.mt-10 { margin-top: 10px; }
.mt-8 { margin-top: 8px; }
.mt-5 { margin-top: 5px; }
.bg-white { background: white; }
.lead {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
.mt-60 { margin-top: 60px; }
.mt-0 { margin-top: 0; }
.mb-50 { margin-bottom: 50px; }
.mb-30 { margin-bottom: 30px; }
.mb-20 { margin-bottom: 20px; }
.mb-15 { margin-bottom: 15px; }
.mb-10 { margin-bottom: 10px; }
.mb-8 { margin-bottom: 8px; }
.mb-5 { margin-bottom: 5px; }
.mb-0 { margin-bottom: 0; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.max-width-800 { max-width: 800px; }
.max-width-900 { max-width: 900px; }
.max-width-600 { max-width: 600px; }
.max-width-250 { max-width: 250px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-40 { gap: 40px; }
.gap-30 { gap: 30px; }
.gap-20 { gap: 20px; }
.gap-15 { gap: 15px; }
.gap-10 { gap: 10px; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.justify-content-center { justify-content: center; }
.min-width-250 { min-width: 250px; }
.flex-1 { flex: 1; }
.grid { display: grid; }
.grid-cols-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.mx-auto { margin-left: auto; margin-right: auto; }
.cta-extra-section { background: white; padding: 60px 0; text-align: center; }
.link-inline { display: inline-block; margin-top: 15px; }
.bg-light { background: var(--light); }
.bg-f8f9fa { background: #f8f9fa; }
.p-20 { padding: 20px; }
.p-25 { padding: 25px; }
.p-30 { padding: 30px; }
.p-50 { padding: 50px; }
.rounded-10 { border-radius: 10px; }
.rounded-15 { border-radius: 15px; }
.rounded-50 { border-radius: 50px; }
.shadow { box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.shadow-sm { box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.border-left { border-left: 4px solid #e91e63; }
.border-left-success { border-left: 4px solid var(--success); }
.bg-gradient { background: var(--gradient); }
.color-white { color: white; }
.color-primary { color: var(--primary); }
.color-success { color: var(--success); }
.color-gray { color: var(--gray); }
.margin-top-0 { margin-top: 0; }
.margin-bottom-0 { margin-bottom: 0; }
.margin-bottom-10 { margin-bottom: 10px; }
.display-block { display: block; }
.text-underline { text-decoration: underline; }
.font-size-09 { font-size: 0.9rem; }
.font-size-12 { font-size: 1.2rem; }
.font-weight-600 { font-weight: 600; }
.width-60 { width: 60px; }
.width-80 { width: 80px; }
.height-60 { height: 60px; }
.height-80 { height: 80px; }
.font-size-2rem { font-size: 2rem; }
.font-weight-700 { font-weight: 700; }
.footer-text { color: rgba(255,255,255,0.7); }
.padding-50-30 { padding: 50px 30px; }
.pb-30 { padding-bottom: 30px; }
.pt-30 { padding-top: 30px; }
.border-top { border-top: 1px solid #e0e0e0; }
.hero-gradient-bg { background: #f0f0f0; }
.section-gradient { background: var(--gradient); color: white; text-align: center; }
.section-dark-bg { background: var(--dark); color: white; }
.button-full-width { width: 100%; }
.back-to-blog { color: white; text-decoration: underline; margin-bottom: 10px; display: block; }
.blog-content-maxwidth { max-width: 800px; margin: 0 auto; }
.info-box { margin-top: 50px; padding: 30px; background: #f8f9fa; border-radius: 10px; }
.info-box h3 { margin-top: 0; }
.cta-center { margin-top: 50px; text-align: center; }
.footer-bottom-text { color: rgba(255,255,255,0.5); }
.circle-icon { width: 60px; height: 60px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 20px; }
.step-circle { width: 80px; height: 80px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700; color: white; margin-bottom: 20px; }