body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #111;
  background: #f9f9f9;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo img {
  height: 120px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.nav-links .cta {
  background: #fc3e62;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
}

.hero {
  height: 90vh;
  background: 
    linear-gradient(135deg, rgba(252, 62, 98, 0.8) 0%, rgba(226, 44, 82, 0.8) 100%),
    url('assets/hero-background-new.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  position: relative;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 32px;
}

.hero p {
  font-size: 24px;
  background: rgba(0, 0, 0, 0.6);
  padding: 16px 24px;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.hero-btn {
  background: white;
  color: #fc3e62;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
}

.promo-banner {
  background: #333;
  color: white;
  padding: 40px 20px;
  text-align: center;
  margin-top: 20px;
  border-top: 4px solid #fc3e62;
}

.promo-content h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.about-section {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #111;
}

.about-section p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 16px;
}

.services-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

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

.services-section h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #111;
}

.services-intro {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card h3 {
  margin-bottom: 10px;
  color: #222;
  font-size: 20px;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.case-studies-section {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.case-studies-container {
  max-width: 1100px;
  margin: 0 auto;
}

.case-studies-section h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #111;
}

.case-studies-intro {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.case-card {
  background: #f9f9f9;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  text-align: left;
}

.case-card h3 {
  font-size: 20px;
  color: #fc3e62;
  margin-bottom: 10px;
}

.case-card p {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
}

.case-tools {
  font-size: 14px;
  color: #777;
  display: block;
}

.contact-section {
  background: #fc3e62;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-intro {
  font-size: 18px;
  margin-bottom: 12px;
}

.contact-section a {
  color: white;
  text-decoration: underline;
  font-weight: bold;
}

.contact-btn {
  margin-top: 24px;
  display: inline-block;
  background: white;
  color: #fc3e62;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
}

.contact-btn:hover {
  background: #f0f0f0;
}

.promo-btn {
  background: white;
  color: #fc3e62;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  margin-top: 20px;
  display: inline-block;
}

.footer {
  background: #111;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-links {
  margin-top: 12px;
}

.footer-links a {
  margin: 0 10px;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

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

.footer-social {
  margin-top: 12px;
}

.footer-social a {
  color: #ccc;
  margin: 0 8px;
  font-size: 1.2rem;
  text-decoration: none;
}

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

.thank-you-body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #f2f2f2;
}

.thank-you-container {
  text-align: center;
  max-width: 600px;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.pricing-section {
  background: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
}

.pricing-container {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-section h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #111;
}

.pricing-intro {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}

.pricing-card {
  flex: 1;
  min-width: 280px;
  max-width: 320px;
}

/* Ensure the bottom row centers nicely */
.pricing-grid .pricing-card:nth-child(4),
.pricing-grid .pricing-card:nth-child(5) {
  flex: 0 1 320px;
}

@media (max-width: 1200px) {
  .pricing-grid {
    justify-content: center;
  }

  .pricing-card {
    flex: 0 1 300px;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    flex: none;
    width: 100%;
    max-width: 400px;
  }
}

.pricing-card {
  background: white;
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pricing-card.featured {
  border-color: #fc3e62;
  box-shadow: 0 6px 18px rgba(252, 62, 98, 0.15);
}

.pricing-card h3 {
  color: #fc3e62;
  margin-bottom: 10px;
  font-size: 22px;
}

.pricing-card .price {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #111;
}

.pricing-card ul {
  list-style: none;
  padding-left: 0;
  line-height: 1.6;
}

.pricing-card ul li::before {
  content: "✔ ";
  color: #fc3e62;
  font-weight: bold;
}

.pay-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 20px;
  background-color: #fc3e62;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.pay-btn:hover {
  background-color: #e22c52;
}

.pay-btn.featured {
  background-color: #333;
}

.pay-btn.featured:hover {
  background-color: #111;
}

.more-info-link {
  display: inline-block;
  margin-top: 8px;
  color: #fc3e62;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.more-info-link:hover {
  color: #e22c52;
  text-decoration: underline;
}

.cta-btn {
  background-color: #fc3e62; /* same as Claim Now */
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #e42f56;
}

.cta-wrapper {
  text-align: center;
  margin-top: 20px;
}

.cta-banner {
  background: #333;
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-top: 0;
}

.cta-banner .container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: white;
}

.cta-banner p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #ddd;
}

.cta-banner .cta-btn {
  background-color: #fc3e62;
  font-size: 18px;
  padding: 16px 32px;
}

.cta-banner .cta-btn:hover {
  background-color: #e22c52;
}

/* Blog Hero Section */
.blog-hero-section {
  background: linear-gradient(135deg, #fc3e62 0%, #e22c52 100%);
  color: white;
  padding: 80px 20px 60px 20px;
  position: relative;
  overflow: hidden;
}

.blog-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.blog-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.blog-hero-content {
  flex: 1;
  max-width: 600px;
}

.blog-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.blog-hero-section h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.blog-hero-section p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
}

.blog-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.blog-hero-visual {
  flex: 0 0 300px;
  position: relative;
  height: 200px;
  margin-left: 40px;
}

.floating-icon {
  position: absolute;
  font-size: 48px;
  animation: float 3s ease-in-out infinite;
  opacity: 0.8;
}

.floating-icon:nth-child(1) {
  top: 20px;
  right: 50px;
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  top: 80px;
  right: 150px;
  animation-delay: 1s;
  font-size: 36px;
}

.floating-icon:nth-child(3) {
  top: 140px;
  right: 80px;
  animation-delay: 2s;
  font-size: 40px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive adjustments for blog hero */
@media (max-width: 768px) {
  .blog-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .blog-hero-visual {
    margin-left: 0;
    margin-top: 40px;
    flex: none;
  }

  .blog-hero-section h1 {
    font-size: 36px;
  }

  .blog-stats {
    justify-content: center;
  }

  .stat-item {
    font-size: 14px;
  }
}

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

html {
  scroll-behavior: smooth;
}