/*
 * ============================================
 * STYLE.CSS — DigiBirds360 Service Pages
 * Generated by PHP Page Generator Pro v2
 * ============================================
 * Color Palette: Amber
 * Primary: #d97706  |  Secondary: #fbbf24  |  Accent: #fde68a
 * ============================================
 */

/* ==========================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ========================================== */
:root {
  /* Brand Colors */
  --primary: #d97706;
  --primary-light: #fbbf24;
  --primary-accent: #fde68a;
  --primary-rgb: 217, 119, 6;
  --primary-light-rgb: 251, 191, 36;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #d97706, #fbbf24);
  --gradient-hero: linear-gradient(145deg, #d97706 0%, #fbbf24 60%, #fde68a 100%);
  --gradient-cta: linear-gradient(140deg, #d97706, #fbbf24);
  --gradient-subtle: linear-gradient(180deg, rgba(var(--primary-rgb), 0.03), rgba(var(--primary-rgb), 0.08));

  /* Text Colors */
  --text-primary: #1a1a2e;
  --text-secondary: #3a3a5a;
  --text-light: #4a4a6a;
  --text-muted: #8888a8;
  --text-white: #ffffff;
  --text-on-primary: #ffffff;

  /* Background Colors */
  --bg-body: #ffffff;
  --bg-light: #f8f9fc;
  --bg-card: #ffffff;
  --bg-dark: #d97706;
  --bg-hero-overlay: rgba(0, 0, 0, 0.03);

  /* Border & Shadow */
  --border-color: #e8e8f0;
  --border-light: #f0f0f6;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.16);
  --shadow-primary: 0 4px 20px rgba(var(--primary-rgb), 0.25);
  --shadow-hover: 0 8px 30px rgba(var(--primary-rgb), 0.2);

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;
  --section-padding: 80px;
  --section-padding-mobile: 50px;

  /* Spacing Scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Typography */
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}


/* ==========================================
   2. RESET & BASE STYLES
   ========================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-body);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

h1 { font-size: 2.8rem; font-weight: 800; }
h2 { font-size: 2rem; margin-bottom: var(--space-md); text-align: center; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

p { margin-bottom: 0; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--primary-light); }

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

ul, ol { list-style: none; }


/* ==========================================
   3. LAYOUT — CONTAINER
   ========================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.8;
}


/* ==========================================
   4. HERO SECTION
   ========================================== */
.hero-section {
  background: var(--gradient-hero);
  color: var(--text-white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 25% 40%,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--bg-body), transparent);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.3px;
}

.hero-section h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: var(--space-lg);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  opacity: 0.92;
  max-width: 720px;
  margin: 0 auto var(--space-xl);
  line-height: 1.85;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-md);
}

.kw-tag {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.2px;
}


/* ==========================================
   5. BUTTONS / CTAs
   ========================================== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 34px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  letter-spacing: 0.2px;
  line-height: 1.4;
}

.btn-cta-primary {
  background: var(--text-white);
  color: var(--primary);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  color: var(--primary);
}

.btn-cta-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}


/* ==========================================
   6. ABOUT SECTION
   ========================================== */
.about-section {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.about-section > div > p {
  text-align: center;
  color: var(--text-light);
  max-width: 820px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.85;
  font-size: 1.02rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.highlight-card {
  background: var(--bg-card);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-rgb), 0.1);
}

.highlight-card i {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(var(--primary-rgb), 0.08);
  margin-left: auto;
  margin-right: auto;
}

.highlight-card h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.highlight-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}


/* ==========================================
   7. STATS BAR SECTION
   ========================================== */
.stats-section {
  padding: 44px 0;
  background: var(--gradient-primary);
  color: var(--text-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-lg);
  text-align: center;
}

.stat-item {
  padding: var(--space-md) 0;
}

.stat-number {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.stat-label {
  font-size: 13px;
  opacity: 0.85;
  margin-top: var(--space-xs);
  font-weight: 400;
  letter-spacing: 0.3px;
}


/* ==========================================
   8. SERVICES / BENEFITS SECTION
   ========================================== */
.benefits-section {
  padding: var(--section-padding) 0;
}

.benefits-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-lg);
}

.benefits-service-card {
  background: var(--bg-light);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.benefits-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.benefits-service-card:hover {
  border-color: rgba(var(--primary-rgb), 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.benefits-service-card:hover::before {
  transform: scaleX(1);
}

.benefits-service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 20px;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-primary);
}

.benefits-service-card h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.08rem;
  color: var(--text-primary);
}

.benefits-service-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.75;
}


/* ==========================================
   9. PROCESS / STEPS SECTION
   ========================================== */
.process-section {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  counter-reset: step-counter;
}

.process-step {
  text-align: center;
  flex: 1 1 180px;
  max-width: 220px;
  position: relative;
}

.step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-primary);
  position: relative;
  z-index: 1;
}

.process-step h4 {
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}

.process-step p {
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.65;
}


/* ==========================================
   10. TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
  padding: var(--section-padding) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.testimonial-card {
  background: var(--bg-light);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 64px;
  color: rgba(var(--primary-rgb), 0.08);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: var(--space-md);
  letter-spacing: 3px;
}

.testimonial-card > p {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: var(--space-md);
  line-height: 1.75;
  font-size: 14.5px;
}

.testimonial-author {
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
}

.testimonial-author strong {
  display: block;
  color: var(--text-primary);
  font-size: 14px;
}

.testimonial-author span {
  font-size: 12.5px;
  color: var(--text-muted);
}


/* ==========================================
   11. CASE STUDY SECTION
   ========================================== */
.case-study-section {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.case-study-card {
  background: var(--bg-card);
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: var(--container-narrow);
  margin: var(--space-xl) auto 0;
  border: 1px solid var(--border-light);
}

.case-study-card h3 {
  margin-bottom: var(--space-md);
  font-size: 1.4rem;
  color: var(--text-primary);
}

.case-study-card > p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.75;
  font-size: 15px;
}

.case-metrics {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.case-metric {
  background: var(--bg-light);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  flex: 1;
  text-align: center;
  min-width: 140px;
  border: 1px solid var(--border-light);
}

.case-metric strong {
  display: block;
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 700;
}


/* ==========================================
   12. TRUST BADGES SECTION
   ========================================== */
.trust-section {
  padding: 40px 0;
  background: var(--gradient-primary);
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl) var(--space-2xl);
  align-items: center;
}

.trust-badge {
  color: var(--text-white);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  opacity: 0.92;
  transition: opacity var(--transition-fast);
}

.trust-badge:hover {
  opacity: 1;
}

.trust-badge img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.trust-badge:hover img {
  opacity: 1;
}

.trust-badge span {
  white-space: nowrap;
}


/* ==========================================
   13. FAQ SECTION
   ========================================== */
.faq-section {
  padding: var(--section-padding) 0;
}

.faq-list {
  max-width: var(--container-narrow);
  margin: var(--space-xl) auto 0;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(var(--primary-rgb), 0.2);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: var(--bg-light);
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  color: var(--text-primary);
  transition: background var(--transition-fast);
  line-height: 1.5;
}

.faq-question:hover {
  background: var(--bg-card);
}

.faq-question i {
  transition: transform var(--transition-base);
  color: var(--primary);
  flex-shrink: 0;
  font-size: 13px;
}

.faq-item.open .faq-question {
  background: var(--bg-card);
  color: var(--primary);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base) ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer p {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  color: var(--text-light);
  line-height: 1.85;
  font-size: 14.5px;
}


/* ==========================================
   14. CTA / CONTACT SECTION
   ========================================== */
.cta-section {
  padding: var(--section-padding) 0;
  background: var(--gradient-cta);
  color: var(--text-white);
  text-align: center;
}

.cta-section h2 {
  color: var(--text-white);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}

.cta-section > div > p {
  opacity: 0.92;
  margin-bottom: var(--space-xl);
  line-height: 1.75;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.02rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: all var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
  margin-bottom: var(--space-md);
}

.contact-form .btn-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 16px 34px;
  font-size: 16px;
}


/* ==========================================
   15. WHATSAPP FLOATING BUTTON
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  text-decoration: none;
  transition: all var(--transition-base);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  color: var(--text-white);
}


/* ==========================================
   16. UTILITY CLASSES
   ========================================== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }


/* ==========================================
   17. RESPONSIVE — TABLET (max-width: 992px)
   ========================================== */
@media (max-width: 992px) {
  :root {
    --section-padding: 60px;
  }

  .hero-section {
    padding: 70px 0 55px;
  }

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

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

  .process-steps {
    gap: var(--space-md);
  }
}


/* ==========================================
   18. RESPONSIVE — MOBILE (max-width: 768px)
   ========================================== */
@media (max-width: 768px) {
  :root {
    --section-padding: var(--section-padding-mobile);
  }

  .container {
    padding: 0 var(--space-md);
  }

  .hero-section {
    padding: 60px 0 45px;
  }

  .hero-section h1 {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

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

  .case-study-card {
    padding: var(--space-lg);
  }

  .case-metrics {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .trust-grid {
    gap: var(--space-md) var(--space-lg);
  }

  .faq-question {
    padding: 15px 18px;
    font-size: 14px;
  }

  .faq-answer p {
    padding: var(--space-sm) var(--space-md) var(--space-md);
  }

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

  .btn-cta {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}


/* ==========================================
   19. RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ========================================== */
@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 1.55rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .highlight-card,
  .service-card,
  .testimonial-card {
    padding: var(--space-lg) var(--space-md);
  }
}


/* ==========================================
   20. PRINT STYLES
   ========================================== */
@media print {
  .whatsapp-float,
  .hero-ctas,
  .contact-form { display: none !important; }

  .hero-section {
    background: var(--primary) !important;
    padding: 30px 0;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  body { font-size: 12pt; line-height: 1.5; }
  .container { max-width: 100%; padding: 0; }

  section { padding: 20px 0 !important; }
}
