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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #4a4a4a;
  background-color: #fff9f5;
  overflow-x: hidden;
}

/* Soft Pastel Color Palette */
:root {
  --pastel-mint: #d4f4dd;
  --pastel-lavender: #e5d4f4;
  --pastel-peach: #ffd4d4;
  --pastel-sky: #d4e8f4;
  --pastel-lemon: #f4f4d4;
  --pastel-rose: #f4d4e5;
  --soft-white: #fffbf7;
  --soft-gray: #6a6a6a;
  --soft-dark: #4a4a4a;
  --pastel-gradient: linear-gradient(135deg, #d4f4dd 0%, #e5d4f4 50%, #ffd4d4 100%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--soft-dark);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  color: var(--soft-dark);
}

h2 {
  font-size: 32px;
  color: var(--soft-dark);
}

h3 {
  font-size: 24px;
  color: var(--soft-dark);
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--soft-gray);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Header */
header {
  background: var(--soft-white);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(212, 244, 221, 0.3);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: column;
}

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

.tagline {
  font-size: 14px;
  color: var(--soft-gray);
  font-style: italic;
  font-family: 'Montserrat', sans-serif;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 16px;
  color: var(--soft-dark);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background: var(--pastel-mint);
  color: var(--soft-dark);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1000;
  background: var(--pastel-lavender);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  color: var(--soft-dark);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(229, 212, 244, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--pastel-rose);
  transform: scale(1.1);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--soft-white);
  z-index: 999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(212, 244, 221, 0.3);
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--pastel-peach);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: var(--soft-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--pastel-rose);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  padding: 16px 20px;
  background: var(--pastel-sky);
  border-radius: 16px;
  font-size: 18px;
  color: var(--soft-dark);
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: var(--pastel-mint);
  transform: translateX(8px);
}

/* CTA Buttons */
.cta-button, .cta-primary, .button {
  display: inline-block;
  padding: 14px 32px;
  background: var(--pastel-mint);
  color: var(--soft-dark);
  font-weight: 600;
  border-radius: 30px;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(212, 244, 221, 0.3);
}

.cta-button:hover, .cta-primary:hover, .button:hover {
  background: var(--pastel-lavender);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229, 212, 244, 0.4);
}

.cta-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--soft-dark);
  font-weight: 600;
  border-radius: 30px;
  font-size: 16px;
  text-align: center;
  border: 2px solid var(--pastel-lavender);
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: var(--pastel-lavender);
  transform: translateY(-3px);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

/* Sections */
section {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.section-intro {
  font-size: 18px;
  color: var(--soft-gray);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Hero Section */
.hero {
  background: var(--pastel-gradient);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  animation: dreamy-float 20s ease-in-out infinite;
}

@keyframes dreamy-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 50px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: var(--soft-dark);
  text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 32px;
  color: var(--soft-gray);
}

.trust-badge {
  margin-top: 32px;
  font-size: 16px;
  color: var(--soft-gray);
  font-style: italic;
}

/* Benefits Bar */
.benefits-bar {
  background: var(--pastel-sky);
  padding: 40px 20px;
  border-radius: 30px;
}

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

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--soft-white);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(212, 232, 244, 0.3);
}

.benefit img {
  width: 24px;
  height: 24px;
}

.benefit span {
  font-weight: 600;
  color: var(--soft-dark);
  font-size: 16px;
}

/* Services Grid */
.services-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.service-card, .card {
  background: var(--soft-white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(212, 244, 221, 0.2);
  flex: 1 1 300px;
  max-width: 380px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover, .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(229, 212, 244, 0.3);
  background: var(--pastel-lavender);
}

.service-card h3, .card h3 {
  color: var(--soft-dark);
  margin-bottom: 12px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: var(--soft-dark);
  margin: 16px 0;
}

/* Text-Image Sections */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.text-image-section > * {
  flex: 1 1 300px;
}

/* Testimonials */
.testimonials {
  background: var(--pastel-peach);
  padding: 60px 20px;
  border-radius: 40px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--soft-white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(255, 212, 212, 0.2);
  flex: 1 1 400px;
  max-width: 550px;
  position: relative;
}

.quote {
  font-size: 18px;
  font-style: italic;
  color: var(--soft-dark);
  margin-bottom: 20px;
  line-height: 1.8;
}

.author {
  font-weight: 600;
  color: var(--soft-dark);
  margin-top: 16px;
}

.rating {
  color: #ffc107;
  font-size: 20px;
  margin-top: 12px;
}

/* FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 40px auto;
}

.faq-item {
  background: var(--soft-white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(212, 244, 221, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(229, 212, 244, 0.3);
  transform: translateX(8px);
}

.faq-item h3 {
  color: var(--soft-dark);
  margin-bottom: 12px;
  font-size: 20px;
}

.faq-item p {
  color: var(--soft-gray);
}

/* Stats Section */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
  padding: 24px;
  background: var(--pastel-mint);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(212, 244, 221, 0.3);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(212, 244, 221, 0.4);
}

.stat .number {
  font-size: 48px;
  font-weight: 700;
  color: var(--soft-dark);
  display: block;
  margin-bottom: 8px;
}

.stat p {
  font-size: 16px;
  color: var(--soft-gray);
  margin: 0;
}

/* Process Steps */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.step {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 24px;
  background: var(--pastel-lemon);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(244, 244, 212, 0.3);
  position: relative;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--pastel-rose);
  border-radius: 50%;
  line-height: 50px;
  font-size: 24px;
  font-weight: 700;
  color: var(--soft-dark);
  margin-bottom: 16px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

/* Footer */
footer {
  background: var(--pastel-gradient);
  padding: 60px 20px 32px;
  margin-top: 80px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 220px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--soft-dark);
}

.footer-section p {
  color: var(--soft-gray);
  font-size: 15px;
}

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

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

.footer-section ul li a {
  color: var(--soft-gray);
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--soft-dark);
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(106, 106, 106, 0.2);
}

.footer-bottom p {
  color: var(--soft-gray);
  font-size: 14px;
  margin: 0;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--soft-white);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(212, 244, 221, 0.3);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid var(--pastel-mint);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1 1 300px;
}

.cookie-text p {
  color: var(--soft-gray);
  margin: 0;
  font-size: 15px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background: var(--pastel-mint);
  color: var(--soft-dark);
}

.cookie-accept:hover {
  background: var(--pastel-lavender);
  transform: translateY(-2px);
}

.cookie-reject {
  background: var(--pastel-peach);
  color: var(--soft-dark);
}

.cookie-reject:hover {
  background: var(--pastel-rose);
  transform: translateY(-2px);
}

.cookie-settings {
  background: transparent;
  color: var(--soft-dark);
  border: 2px solid var(--pastel-sky);
}

.cookie-settings:hover {
  background: var(--pastel-sky);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(74, 74, 74, 0.7);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: var(--soft-white);
  padding: 40px;
  border-radius: 30px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(212, 244, 221, 0.4);
}

.cookie-modal-content h2 {
  margin-bottom: 24px;
  color: var(--soft-dark);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--pastel-sky);
  border-radius: 16px;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--soft-dark);
}

.cookie-category p {
  font-size: 14px;
  color: var(--soft-gray);
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: var(--soft-gray);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: var(--pastel-mint);
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 26px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  flex: 1 1 140px;
  padding: 14px 24px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
}

/* Form Styles */
form {
  max-width: 600px;
  margin: 40px auto;
}

.form-group {
  margin-bottom: 24px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--soft-dark);
  font-size: 16px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--pastel-sky);
  border-radius: 16px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  color: var(--soft-dark);
  background: var(--soft-white);
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--pastel-lavender);
  box-shadow: 0 0 0 4px rgba(229, 212, 244, 0.2);
}

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

/* Error Pages */
.error-hero {
  text-align: center;
  padding: 80px 20px;
  background: var(--pastel-gradient);
  border-radius: 0 0 50px 50px;
}

.error-content h1 {
  font-size: 120px;
  color: var(--soft-dark);
  margin-bottom: 16px;
  text-shadow: 4px 4px 12px rgba(255, 255, 255, 0.5);
}

.error-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--soft-dark);
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.link-card {
  background: var(--soft-white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(212, 244, 221, 0.2);
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
}

.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(229, 212, 244, 0.3);
}

/* Legal Pages */
.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-page h1 {
  font-size: 48px;
  margin-bottom: 32px;
  color: var(--soft-dark);
}

.legal-page h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--soft-dark);
}

.legal-page h3 {
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--soft-dark);
}

.legal-page p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--soft-gray);
}

.legal-page ul {
  margin: 16px 0;
  padding-left: 32px;
}

.legal-page ul li {
  margin-bottom: 12px;
  color: var(--soft-gray);
  line-height: 1.8;
}

/* Thank You Page */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: var(--pastel-gradient);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--pastel-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--soft-dark);
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(212, 244, 221, 0.3);
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

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

  .hero-subtitle {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .benefits-grid {
    flex-direction: column;
  }

  .text-image-section {
    flex-direction: column;
  }

  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  .error-content h1 {
    font-size: 72px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .services-grid {
    justify-content: space-around;
  }

  .service-card {
    flex: 1 1 calc(50% - 24px);
  }
}

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

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

/* Accessibility */
:focus-visible {
  outline: 3px solid var(--pastel-lavender);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--pastel-lavender);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .cookie-banner,
  .cta-button,
  .cta-buttons {
    display: none;
  }

  body {
    background: white;
  }

  .container {
    max-width: 100%;
  }
}

/* Additional Utility Classes */
.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.hidden {
  display: none;
}

.soft-shadow {
  box-shadow: 0 4px 12px rgba(212, 244, 221, 0.2);
}

/* Ensure proper spacing for all card containers */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px;
  background: var(--soft-white);
  border-radius: 20px;
  flex: 1 1 300px;
  box-shadow: 0 4px 12px rgba(212, 244, 221, 0.2);
}

/* Additional specific page styles */
.calculator-form {
  background: var(--soft-white);
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(212, 244, 221, 0.2);
}

.calculate-button {
  width: 100%;
  padding: 16px 32px;
  background: var(--pastel-mint);
  color: var(--soft-dark);
  font-weight: 600;
  border: none;
  border-radius: 24px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 24px;
}

.calculate-button:hover {
  background: var(--pastel-lavender);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229, 212, 244, 0.4);
}

.privacy-note {
  font-size: 14px;
  color: var(--soft-gray);
  text-align: center;
  margin-top: 16px;
  font-style: italic;
}

.results-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.result-item {
  background: var(--pastel-lemon);
  padding: 24px;
  border-radius: 20px;
  flex: 1 1 200px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(244, 244, 212, 0.3);
}

.result-item .label {
  display: block;
  font-size: 14px;
  color: var(--soft-gray);
  margin-bottom: 8px;
}

.result-item .value {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--soft-dark);
}

.disclaimer {
  font-size: 14px;
  color: var(--soft-gray);
  text-align: center;
  margin-top: 32px;
  font-style: italic;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}