/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #e91e63;
  --primary-dark: #c2185b;
  --secondary: #7c4dff;
  --bg: #fafafa;
  --bg-alt: #f5f5f5;
  --text: #1a1a1a;
  --text-light: #666;
  --border: #e0e0e0;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1100px;
}

html {
  scroll-behavior: smooth;
}

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

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

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

a:hover {
  opacity: 0.85;
}

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

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

.logo svg {
  width: 36px;
  height: 36px;
  stroke: var(--primary);
  fill: none;
}

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

nav a {
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

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

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

.mobile-menu-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--text);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #fce4ec 0%, #e8f5e9 100%);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 30px;
}

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

section:nth-child(even) {
  background: var(--bg-alt);
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

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

.feature-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.feature-card svg {
  width: 56px;
  height: 56px;
  stroke: var(--primary);
  fill: none;
  margin: 0 auto 16px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Steps (simple) */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.step {
  text-align: center;
}

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

.step h3 {
  margin-bottom: 10px;
}

.step p {
  color: var(--text-light);
}

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

.testimonial-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

/* CTA Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(233, 30, 99, 0.45);
}

.cta-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, #5c6bc0 100%);
  box-shadow: 0 4px 12px rgba(124, 77, 255, 0.35);
}

.cta-primary:hover {
  box-shadow: 0 6px 16px rgba(124, 77, 255, 0.45);
}

.cta-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.cta-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  padding: 16px 28px;
  font-size: 1rem;
  border-radius: 50px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(233, 30, 99, 0.35); }
  50% { box-shadow: 0 6px 20px rgba(233, 30, 99, 0.55); }
}

/* Content Sections */
.content-section {
  max-width: 800px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text);
}

.content-section p {
  margin-bottom: 16px;
  color: var(--text-light);
}

/* Inline CTA blocks within content */
.content-cta {
  background: linear-gradient(135deg, #fce4ec 0%, #e8f5e9 100%);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  margin: 30px 0;
}

.content-cta p {
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: var(--text);
}

.text-center {
  text-align: center;
}

/* Blog post */
.blog-post {
  padding: 60px 0;
}

.blog-post .container {
  max-width: 800px;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--primary);
}

/* Post header */
.post-header {
  margin-bottom: 40px;
  text-align: center;
}

.post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--text);
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Post content */
.post-content {
  line-height: 1.8;
}

.post-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--text);
}

.post-content p {
  margin-bottom: 20px;
  color: var(--text-light);
}

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

.post-content li {
  margin-bottom: 10px;
  color: var(--text-light);
}

/* Post navigation */
.post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.post-links {
  display: flex;
  gap: 20px;
}

.post-cta {
  margin-left: auto;
}

/* Blog Card */
.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-image svg {
  width: 64px;
  height: 64px;
  stroke: white;
  fill: none;
  opacity: 0.9;
}

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

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.blog-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.blog-card .link-arrow {
  margin-top: 12px;
  display: inline-flex;
}

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

/* FAQ */
.faq-item {
  background: white;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  padding: 0 20px 20px;
  max-height: 500px;
}

/* Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.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 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
footer {
  background: #111;
  color: #ccc;
  padding: 60px 0 30px;
}

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

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

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

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

.footer-col a {
  color: #ccc;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: #888;
}

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

  nav ul {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow);
  }

  nav ul.open {
    display: flex;
  }

  nav li {
    border-bottom: 1px solid var(--border);
  }

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

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

  .cta-floating {
    bottom: 16px;
    right: 16px;
    padding: 14px 24px;
  }
}

/* No horizontal overflow */
html, body {
  overflow-x: hidden;
}

/* Ensure all buttons have pointer cursor */
button {
  cursor: pointer;
}

/* ============================================
   MISSING STYLES - Added to complete implementation
   ============================================ */

/* Navigation */
.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
  display: block;
}

.nav-link:hover {
  border-bottom-color: var(--primary);
  color: var(--primary);
}

/* Logo icon */
.logo-icon {
  width: 36px;
  height: 36px;
  fill: var(--primary);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #fce4ec 0%, #e8f5e9 100%);
  padding: 80px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--text);
}

.page-hero .lead {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Lead paragraph */
.lead {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Text center utility */
.text-center {
  text-align: center;
}

/* Hero content (index) */
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Content sections general */
.about-content,
.contact-content,
.blog-content,
.faq-content,
.tips-content,
.guidelines-content,
.policy-content,
.how-it-works-content {
  padding: 60px 0;
}

.about-content .container,
.contact-content .container,
.blog-content .container,
.faq-content .container,
.tips-content .container,
.guidelines-content .container,
.policy-content .container,
.how-it-works-content .container {
  max-width: 900px;
}

/* CTA section */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #fce4ec 0%, #e8f5e9 100%);
}

.cta-section h2 {
  margin-bottom: 16px;
  font-size: 2rem;
}

.cta-section p {
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Page CTA */
.page-cta {
  text-align: center;
  margin: 40px 0;
}

/* Features grid variations */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.features-detail .feature-detail-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.feature-detail-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
  fill: none;
}

.feature-detail-content h2 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.feature-detail-content ul {
  margin-top: 16px;
  padding-left: 20px;
}

.feature-detail-content li {
  margin-bottom: 8px;
  color: var(--text-light);
}

.features-overview {
  padding: 60px 0;
}

.features-overview .features-grid {
  margin-top: 40px;
}

.feature-item {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s;
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-item svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  stroke: var(--primary);
  fill: none;
}

.feature-item h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Steps variations */
.steps-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.step-large {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-large-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-large-content h2 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.step-large-content p {
  color: var(--text-light);
  margin-bottom: 12px;
}

/* Testimonials */
.testimonials {
  padding: 60px 0;
}

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

.testimonial-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
  text-align: right;
}

/* Breadcrumb */

.post-header {
  margin-bottom: 40px;
  text-align: center;
}

.post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--text);
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.post-content {
  line-height: 1.8;
}

.post-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--text);
}

.post-content p {
  margin-bottom: 20px;
  color: var(--text-light);
}

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

.post-content li {
  margin-bottom: 10px;
  color: var(--text-light);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.post-links {
  display: flex;
  gap: 20px;
}

.post-cta {
  margin-left: auto;
}

/* Link arrow utility */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--primary);
}

.link-arrow::after {
  content: "→";
  transition: transform 0.2s;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.contact-info p {
  margin-bottom: 30px;
  color: var(--text-light);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-method svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-method h4 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.contact-method p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form-container h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  text-align: center;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(233, 30, 99, 0.45);
}

/* FAQ */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  flex-shrink: 0;
}

.faq-contact {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-contact h2 {
  margin-bottom: 16px;
}

.faq-contact p {
  margin-bottom: 24px;
  color: var(--text-light);
}

.faq-preview {
  padding: 60px 0;
}

/* Tips & Guidelines */
.tips-intro,
.guidelines-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.tip-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

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

.tip-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.tip-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--primary);
  fill: none;
}

.tips-section {
  margin: 40px 0;
  padding: 30px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tips-section h2 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.tips-section p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Guidelines specific */
.guidelines-section {
  margin: 40px 0;
  padding: 30px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.guidelines-section h2 {
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.guidelines-section h3 {
  margin: 20px 0 12px;
  font-size: 1.2rem;
}

.guidelines-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.guidelines-section li {
  margin-bottom: 8px;
  color: var(--text-light);
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.values-list li:last-child {
  border-bottom: none;
}

.values-list strong {
  color: var(--primary);
}

/* Policy pages (Privacy/Terms) */
.policy-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.policy-meta p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

.policy-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--text);
}

.policy-content h3 {
  font-size: 1.3rem;
  margin: 30px 0 16px;
  color: var(--text);
}

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

.policy-content li {
  margin-bottom: 10px;
  color: var(--text-light);
}

.policy-links {
  display: flex;
  gap: 20px;
  margin: 40px 0;
  justify-content: center;
}

/* About page */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.value-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.value-card h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.about-cta {
  text-align: center;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-detail .feature-detail-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-detail-icon {
    margin: 0 auto;
  }

  .step-large {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .post-navigation {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .post-links {
    flex-direction: column;
    gap: 10px;
  }

  .policy-meta {
    flex-direction: column;
    gap: 10px;
  }

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

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

  .cta-floating {
    bottom: 16px;
    right: 16px;
    padding: 14px 24px;
  }
}
