
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&display=swap');

:root {
  /* HYBRID COLOR STRATEGY - PATTERN H2: ZEBRA (ALTERNATING) */
  /* Dark Emerald + Light breaks with electric accents */
  
  /* Dark sections backgrounds */
  --color-bg-dark-primary: #022c22;
  --color-bg-dark-secondary: #064e3b;
  --color-bg-dark-tertiary: #065f46;
  
  /* Light sections backgrounds */
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  
  /* Card backgrounds */
  --color-bg-card-dark: rgba(16, 185, 129, 0.08);
  --color-bg-card-light: #ffffff;
  
  /* Text colors for dark sections */
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #a7f3d0;
  --color-text-dark-muted: #6ee7b7;
  
  /* Text colors for light sections */
  --color-text-light-primary: #022c22;
  --color-text-light-secondary: #0f766e;
  --color-text-light-muted: #4b7c71;
  
  /* Accent colors */
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-secondary: #34d399;
  --color-accent-bright: #1ee0c6;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section,
[class*="-section"] {
  width: 100%;
  overflow: hidden;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
}

h4 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
}

p,
li,
span {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: #000000;
}

/* DARK SECTION STYLES - Text colors explicit */
.hero-section {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.hero-section h1 {
  color: var(--color-text-dark-primary);
}

.hero-section h2 {
  color: var(--color-text-dark-secondary);
}

.hero-section p {
  color: var(--color-text-dark-secondary);
}

.hero-section a {
  color: var(--color-accent-bright);
}

.hero-section .btn-primary {
  background: var(--color-primary);
  color: #000000;
}

.hero-section .btn-secondary {
  border-color: var(--color-text-dark-primary);
  color: var(--color-text-dark-primary);
}

.hero-section .btn-secondary:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #000000;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: flex-start;
  justify-content: center;
  min-height: 500px;
}

.hero-text-group {
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* LIGHT SECTION STYLES - Text colors explicit */
.features-section {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.features-section h2 {
  color: var(--color-text-light-primary);
}

.features-section h3 {
  color: var(--color-text-light-secondary);
}

.features-section p {
  color: var(--color-text-light-secondary);
}

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

.features-section .btn-primary {
  background: var(--color-primary);
  color: #000000;
}

.features-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
}

.feature-card {
  background: var(--color-bg-card-light);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  color: var(--color-primary);
}

.feature-card h3 {
  color: var(--color-text-light-primary);
}

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

/* DARK SECTION - About/Benefits */
.about-section {
  background: var(--color-bg-dark-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.about-section h2 {
  color: var(--color-text-dark-primary);
}

.about-section p {
  color: var(--color-text-dark-secondary);
}

.about-section a {
  color: var(--color-accent-bright);
}

.about-section .btn-primary {
  background: var(--color-primary);
  color: #000000;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-list li {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: flex-start;
  color: var(--color-text-dark-secondary);
}

.about-list-icon {
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-visual {
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual-icon {
  font-size: 5rem;
  color: var(--color-primary);
  opacity: 0.8;
}

/* LIGHT SECTION - Testimonials */
.testimonials-section {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.testimonials-section h2 {
  color: var(--color-text-light-primary);
}

.testimonials-section p {
  color: var(--color-text-light-secondary);
}

.testimonials-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

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

.testimonial-card {
  background: var(--color-bg-card-light);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonial-quote {
  color: var(--color-text-light-secondary);
  font-style: italic;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.testimonial-name {
  color: var(--color-text-light-primary);
  font-weight: 600;
}

.testimonial-title {
  color: var(--color-text-light-muted);
  font-size: 0.9rem;
}

.testimonial-stars {
  color: var(--color-primary);
  font-size: 0.9rem;
}

/* DARK SECTION - Pricing */
.pricing-section {
  background: var(--color-bg-dark-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.pricing-section h2 {
  color: var(--color-text-dark-primary);
}

.pricing-section p {
  color: var(--color-text-dark-secondary);
}

.pricing-section a {
  color: var(--color-accent-bright);
}

.pricing-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.pricing-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
}

.pricing-card {
  background: var(--color-bg-card-dark);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.pricing-tier {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-name {
  color: var(--color-text-dark-primary);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
}

.pricing-currency {
  color: var(--color-text-dark-secondary);
}

.pricing-price {
  color: var(--color-primary);
  font-size: 2.5rem;
  font-weight: 700;
}

.pricing-period {
  color: var(--color-text-dark-muted);
  font-size: 0.9rem;
}

.pricing-description {
  color: var(--color-text-dark-muted);
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.pricing-features li {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: flex-start;
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
}

.pricing-features-icon {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .btn-primary {
  width: 100%;
}

/* LIGHT SECTION - CTA */
.cta-section {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.cta-section h2 {
  color: var(--color-text-light-primary);
}

.cta-section p {
  color: var(--color-text-light-secondary);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* DARK SECTION - Contact/Form */
.contact-section {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.contact-section h2 {
  color: var(--color-text-dark-primary);
}

.contact-section p {
  color: var(--color-text-dark-secondary);
}

.contact-section a {
  color: var(--color-accent-bright);
}

.contact-section label {
  color: var(--color-text-dark-secondary);
}

.contact-section input,
.contact-section textarea {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-dark-primary);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
  color: var(--color-text-dark-muted);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-info-label {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info-value {
  color: var(--color-text-dark-primary);
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(16, 185, 129, 0.1);
}

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

.contact-form .btn-primary {
  width: 100%;
}

/* FOOTER - Dark Section */
.footer-section {
  background: var(--color-bg-dark-secondary);
  padding: var(--space-3xl) 0 var(--space-2xl);
  border-top: 1px solid rgba(16, 185, 129, 0.1);
}

.footer-section p {
  color: var(--color-text-dark-secondary);
}

.footer-section a {
  color: var(--color-accent-bright);
}

.footer-section h4 {
  color: var(--color-text-dark-primary);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-column h4 {
  margin-bottom: var(--space-sm);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: var(--color-text-dark-secondary);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  padding-top: var(--space-xl);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-copyright {
  color: var(--color-text-dark-muted);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--color-primary);
  color: #000000;
  transform: translateY(-2px);
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .hero-content {
    min-height: auto;
    text-align: center;
    align-items: center;
  }

  .hero-buttons {
    justify-content: center;
    width: 100%;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-visual {
    min-height: 300px;
  }

  .about-visual-icon {
    font-size: 3.5rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

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

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .feature-card,
  .testimonial-card,
  .pricing-card {
    padding: var(--space-md);
  }

  .hero-section,
  .features-section,
  .about-section,
  .testimonials-section,
  .pricing-section,
  .cta-section,
  .contact-section {
    padding: var(--space-2xl) 0;
  }

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

  .footer-links {
    gap: var(--space-xs);
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

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

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

.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);
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out;
}
:root {
  --color-bg-dark-primary: #022c22;
  --color-bg-dark-secondary: #064e3b;
  --color-bg-dark-tertiary: #065f46;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(16, 185, 129, 0.08);
  --color-bg-card-light: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #a7f3d0;
  --color-text-dark-muted: #6ee7b7;
  --color-text-light-primary: #022c22;
  --color-text-light-secondary: #0f766e;
  --color-text-light-muted: #4b7c71;
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-secondary: #34d399;
  --color-accent-bright: #1ee0c6;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
}

.header-master-deck {
  background: var(--color-bg-dark-primary);
  position: static;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.header-master-deck-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(60px, 10vh, 80px);
  gap: 1.5rem;
}

.header-master-deck-logo {
  flex-shrink: 0;
}

.header-master-deck-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  transition: color 300ms ease-in-out;
}

.header-master-deck-brand i {
  color: var(--color-primary);
  font-size: 1.5em;
}

.header-master-deck-brand:hover {
  color: var(--color-secondary);
}

.header-master-deck-desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: flex-end;
}

@media (min-width: 1024px) {
  .header-master-deck-desktop-nav {
    display: flex;
  }
}

.header-master-deck-nav-link {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 300ms ease-in-out;
  position: relative;
  padding-bottom: 0.25rem;
}

.header-master-deck-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 300ms ease-in-out;
}

.header-master-deck-nav-link:hover {
  color: var(--color-secondary);
}

.header-master-deck-nav-link:hover::after {
  width: 100%;
}

.header-master-deck-cta-button {
  display: none;
}

@media (min-width: 1024px) {
  .header-master-deck-cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-text-light-primary);
    border: none;
    border-radius: var(--radius-md);
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 300ms ease-in-out;
  }

  .header-master-deck-cta-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
  }

  .header-master-deck-cta-button:active {
    transform: translateY(0);
  }
}

.header-master-deck-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

@media (min-width: 1024px) {
  .header-master-deck-mobile-toggle {
    display: none;
  }
}

.header-master-deck-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-dark-primary);
  border-radius: 1px;
  transition: all 300ms ease-in-out;
}

.header-master-deck-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header-master-deck-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header-master-deck-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-master-deck-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-dark-primary);
  padding: clamp(80px, 15vh, 120px) clamp(1rem, 4vw, 2rem) 2rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 300ms ease-in-out;
  z-index: 99;
}

.header-master-deck-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .header-master-deck-mobile-menu {
    display: none;
  }
}

.header-master-deck-mobile-header {
  position: absolute;
  top: clamp(1rem, 3vw, 1.5rem);
  right: clamp(1rem, 4vw, 2rem);
}

.header-master-deck-mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-text-dark-primary);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 300ms ease-in-out;
  z-index: 102;
}

.header-master-deck-mobile-close:hover {
  color: var(--color-secondary);
}

.header-master-deck-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.header-master-deck-mobile-link {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 300ms ease-in-out;
  display: block;
}

.header-master-deck-mobile-link:hover {
  color: var(--color-secondary);
}

.header-master-deck-mobile-cta {
  display: block;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-primary);
  color: var(--color-text-light-primary);
  border: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.header-master-deck-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.header-master-deck-mobile-cta:active {
  transform: translateY(0);
}

@media (max-width: 320px) {
  .header-master-deck-brand span {
    display: none;
  }

  .header-master-deck-container {
    height: 60px;
  }
}

    /* PM Excellence Hub - Professional Project Management Consulting */

.pm-excellence-hub {
  width: 100%;
}

/* ============================================================
   HERO SECTION - Dark Professional with Strategic Positioning
   ============================================================ */

.hero-section {
  background: var(--color-bg-dark-primary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: flex-start;
  position: relative;
  z-index: 10;
}

.hero-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-dark-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: var(--color-text-dark-secondary);
  max-width: 600px;
  line-height: 1.6;
}

.hero-description {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-dark-muted);
  max-width: 650px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 1rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(16, 185, 129, 0.15);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Decorative Elements */
.hero-glow-primary {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  top: -100px;
  right: -150px;
  z-index: 1;
  pointer-events: none;
}

.hero-glow-secondary {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  bottom: 100px;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.hero-accent-line {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
  top: 15%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-shape {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  bottom: 10%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   EXPERTISE SECTION - Light Background with Cards
   ============================================================ */

.expertise-section {
  background: var(--color-bg-light-primary);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.expertise-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.expertise-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
}

.expertise-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.expertise-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.expertise-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

.expertise-cards {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.expertise-card {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.expertise-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.12);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.expertise-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  line-height: 1.3;
}

.expertise-card-text {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  flex-grow: 1;
}

/* Expertise Decorative Elements */
.expertise-corner-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  top: -50px;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.expertise-shape-accent {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(52, 211, 153, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: -50px;
  right: -50px;
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   METHODOLOGY SECTION - Dark Background with Numbered Steps
   ============================================================ */

.methodology-section {
  background: var(--color-bg-dark-secondary);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.methodology-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.methodology-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
}

.methodology-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.methodology-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.methodology-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

.methodology-steps {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.methodology-step {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: all 300ms ease;
  align-items: flex-start;
}

.methodology-step:hover {
  background: rgba(16, 185, 129, 0.12);
  transform: translateX(8px);
}

.methodology-step-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.methodology-step-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.methodology-step-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.methodology-step-text {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

/* Methodology Decorative Elements */
.methodology-glow-left {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  top: 20%;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.methodology-accent-right {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(52, 211, 153, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: 10%;
  right: -50px;
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   ABOUT SECTION - Light Background with Split Layout
   ============================================================ */

.about-section {
  background: var(--color-bg-light-secondary);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}

.about-text-block {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
}

.about-description {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.8;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.about-feature-item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.about-feature-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.about-feature-text {
  font-size: 0.95rem;
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

.about-visual {
  flex: 1 1 350px;
  min-height: 380px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(52, 211, 153, 0.08) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.about-visual-icon {
  font-size: 4.5rem;
  color: var(--color-primary);
  opacity: 0.8;
}

/* About Decorative Elements */
.about-shape-top {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 70% 30% 66% 34% / 33% 66% 34% 67%;
  top: -50px;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.about-line-accent {
  position: absolute;
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), transparent);
  left: 5%;
  bottom: 20%;
  z-index: 2;
  pointer-events: none;
}

/* ============================================================
   FEATURED POSTS SECTION - Dark Background
   ============================================================ */

.featured-posts-section {
  background: var(--color-bg-dark-tertiary);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.featured-posts-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.featured-posts-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.featured-posts-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.featured-posts-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.featured-posts-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

.featured-cards {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.featured-card {
  flex: 1 1 320px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
  overflow: hidden;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.featured-card-image {
  width: calc(100% + 2 * clamp(1.5rem, 3vw, 2rem));
  height: 200px;
  margin: calc(-1 * clamp(1.5rem, 3vw, 2rem)) calc(-1 * clamp(1.5rem, 3vw, 2rem)) 1rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(52, 211, 153, 0.1) 100%);
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.featured-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  line-height: 1.3;
}

.featured-card-description {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  flex-grow: 1;
}

.featured-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 500;
  transition: all 300ms ease;
  text-decoration: none;
}

.featured-card-link:hover {
  gap: 0.75rem;
}

.featured-posts-cta {
  text-align: center;
  margin-top: 1rem;
}

.featured-posts-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-secondary);
  font-weight: 600;
  transition: all 300ms ease;
  text-decoration: none;
}

.featured-posts-view-all:hover {
  gap: 0.75rem;
}

/* Featured Posts Decorative Elements */
.featured-glow-corner {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  top: -100px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.featured-accent-shape {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(52, 211, 153, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  bottom: -50px;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   CONTACT SECTION - Light Background with Form + Benefits
   ============================================================ */

.contact-section {
  background: var(--color-bg-light-primary);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: flex-start;
}

.contact-form-wrapper {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
}

.contact-form-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-light-secondary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light-primary);
}

.form-input,
.form-textarea {
  padding: 0.875rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-light-primary);
  transition: all 300ms ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-light-muted);
}

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

.contact-form-submit {
  padding: 1rem 2rem;
  background: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 300ms ease;
}

.contact-form-submit:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.contact-form-submit:active {
  transform: translateY(0);
}

.contact-info-block {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
}

.contact-faq {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--color-text-light-primary);
  font-size: 0.95rem;
}

.faq-answer {
  font-size: 0.9rem;
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.benefit-item {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: flex-start;
}

.benefit-check {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: 0.75rem;
}

.benefit-text {
  font-size: 0.9rem;
  color: var(--color-text-light-secondary);
}

/* Contact Decorative Elements */
.contact-shape-accent {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 10%;
  right: -80px;
  z-index: 1;
  pointer-events: none;
}

.contact-line-left {
  position: absolute;
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2));
  left: 0;
  top: 25%;
  z-index: 2;
  pointer-events: none;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-dark-primary);
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-text {
  color: var(--color-text-dark-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 500px;
  margin: 0;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 300ms ease;
}

.cookie-btn-accept {
  background: var(--color-primary);
  color: #000000;
}

.cookie-btn-accept:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--color-text-dark-primary);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.cookie-btn-decline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */

@media (max-width: 768px) {
  .hero-buttons {
    width: 100%;
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .expertise-cards {
    flex-direction: column;
  }

  .expertise-card {
    flex: 1 1 100%;
    max-width: none;
  }

  .methodology-step {
    flex-direction: column;
    gap: 1rem;
  }

  .methodology-step-number {
    font-size: 2rem;
    min-width: auto;
  }

  .about-content {
    flex-direction: column;
  }

  .about-text-block,
  .about-visual {
    flex: 1 1 100%;
  }

  .about-visual {
    min-height: 300px;
  }

  .featured-cards {
    flex-direction: column;
  }

  .featured-card {
    flex: 1 1 100%;
    max-width: none;
  }

  .contact-content {
    flex-direction: column;
  }

  .contact-form-wrapper,
  .contact-info-block {
    flex: 1 1 100%;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: clamp(1rem, 3vw, 1.5rem);
  }

  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-main-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
  }

  .expertise-header,
  .methodology-header,
  .featured-posts-header {
    padding: 0;
  }

  .methodology-step-number {
    min-width: 50px;
  }

  .about-features-list {
    gap: 0.75rem;
  }

  .contact-faq {
    gap: 1rem;
  }

  .cookie-banner {
    padding: 1rem;
    gap: 1rem;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}

/* ============================================================
   UTILITY CLASSES & ANIMATIONS
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.25rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-family: var(--font-primary);
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text-dark-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: #000000;
  transform: translateY(-3px);
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

    .footer {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-bg-dark-secondary);
}

.footer .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.footer-content {
  display: block;
  position: relative;
  z-index: 10;
}

.footer-about {
  display: block;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid var(--color-bg-dark-secondary);
}

.footer-about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.footer-about-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: var(--color-text-dark-secondary);
  max-width: 500px;
}

.footer-navigation {
  display: block;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.footer-nav-title,
.footer-contact-title,
.footer-legal-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.footer-nav-link,
.footer-legal-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-block;
}

.footer-nav-link::after,
.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-nav-link:hover,
.footer-legal-link:hover {
  color: var(--color-primary);
}

.footer-nav-link:hover::after,
.footer-legal-link:hover::after {
  width: 100%;
}

.footer-contact {
  display: block;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  padding: clamp(1.5rem, 4vw, 2rem);
  background: rgba(16, 185, 129, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-dark-secondary);
}

.footer-contact-details {
  display: block;
}

.footer-contact-item {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: var(--color-text-dark-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-label {
  color: var(--color-primary);
  font-weight: 600;
  display: inline-block;
  min-width: 80px;
}

.footer-legal {
  display: block;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.footer-copyright {
  display: block;
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 1px solid var(--color-bg-dark-secondary);
  text-align: center;
}

.footer-copyright-text {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.875rem);
  color: var(--color-text-dark-muted);
  letter-spacing: 0.3px;
}

.footer-decoration-accent {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.footer-decoration-glow {
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
  }

  .footer-about {
    grid-column: 1 / -1;
    margin-bottom: 0;
    padding-bottom: clamp(2rem, 5vw, 3rem);
    border-bottom: 1px solid var(--color-bg-dark-secondary);
  }

  .footer-navigation {
    margin-bottom: 0;
  }

  .footer-contact {
    margin-bottom: 0;
  }

  .footer-legal {
    grid-column: 1 / -1;
    margin-bottom: 0;
    padding-top: clamp(2rem, 5vw, 3rem);
    border-top: 1px solid var(--color-bg-dark-secondary);
  }

  .footer-copyright {
    grid-column: 1 / -1;
    padding-top: clamp(1.5rem, 4vw, 2.5rem);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
  }

  .footer-about {
    grid-column: 1;
    grid-row: 1 / 3;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    border-right: 1px solid var(--color-bg-dark-secondary);
    padding-right: clamp(2rem, 4vw, 3rem);
  }

  .footer-navigation {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-contact {
    grid-column: 3;
    grid-row: 1;
  }

  .footer-legal {
    grid-column: 4;
    grid-row: 1;
    padding-top: 0;
    border-top: none;
    margin-bottom: 0;
  }

  .footer-copyright {
    grid-column: 1 / -1;
    padding-top: clamp(2rem, 5vw, 3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-nav-link,
  .footer-legal-link,
  .footer-nav-link::after,
  .footer-legal-link::after {
    transition: none;
  }
}
    

/* Category Page Styles */
.main.category-page-project-management {
  width: 100%;
}

/* HERO SECTION */
.hero-section-project-management {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-ambient-glow-pm {
  position: absolute;
  top: 5%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-field-pm {
  position: absolute;
  bottom: 10%;
  right: -50px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-pm {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(52, 211, 153, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-corner-shape-pm {
  position: absolute;
  bottom: 5%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.hero-content-project-management {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: flex-start;
}

.hero-text-group-pm {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-project-management {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
}

.hero-subtitle-project-management {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  color: #a7f3d0;
}

.hero-stats-project-management {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2rem) 0;
}

.stat-item-pm {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-pm {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  display: block;
}

.stat-label-pm {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #6ee7b7;
  font-weight: 500;
}

.hero-buttons-pm {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  padding-top: 1rem;
}

.hero-section-project-management .btn-primary {
  background: #10b981;
  color: #000000;
  font-weight: 600;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
}

.hero-section-project-management .btn-primary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.hero-section-project-management .btn-secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
}

.hero-section-project-management .btn-secondary:hover {
  background: #10b981;
  border-color: #10b981;
  color: #000000;
}

/* POSTS SECTION */
.posts-section-project-management {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.posts-header-project-management {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
}

.posts-tag-pm {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.posts-title-project-management {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1rem;
}

.posts-subtitle-pm {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #4b7c71;
  line-height: 1.6;
}

.posts-grid-project-management {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.card-project-management {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e0e7e5;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-project-management:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.15);
  border-color: #10b981;
}

.card-image-pm {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  background: #f0f9f7;
}

.card-title-project-management {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.3;
}

.card-description-project-management {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  color: #4b7c71;
  flex-grow: 1;
}

.card-meta-pm {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.75rem;
}

.meta-badge-pm {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 16px;
  font-size: 0.8125rem;
  color: #0f766e;
}

.meta-badge-pm i {
  color: #10b981;
  font-size: 0.875rem;
}

.card-link-pm {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #10b981;
  text-decoration: none;
  transition: all 0.3s ease;
  padding-top: 0.5rem;
}

.card-link-pm:hover {
  color: #059669;
  gap: 0.75rem;
}

/* INSIGHTS SECTION */
.insights-section-project-management {
  background: #064e3b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.insights-header-pm {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
}

.insights-title-pm {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.insights-subtitle-pm {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #a7f3d0;
  line-height: 1.6;
}

.featured-quote-pm {
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  margin: clamp(2rem, 5vw, 3rem) auto;
  max-width: 750px;
}

.quote-text-pm {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.8;
  color: #ffffff;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.quote-author-pm {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #6ee7b7;
  font-style: normal;
  display: block;
}

.insights-content-pm {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}

.insight-item-pm {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid #34d399;
}

.insight-item-title-pm {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
}

.insight-item-text-pm {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.8;
  color: #a7f3d0;
}

/* METHODOLOGY SECTION */
.methodology-section-project-management {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.methodology-pattern-pm {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.methodology-glow-pm {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.methodology-header-pm {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  position: relative;
  z-index: 10;
}

.methodology-tag-pm {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.methodology-title-pm {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #022c22;
}

.methodology-steps-pm {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.methodology-step-pm {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e0e7e5;
  transition: all 0.3s ease;
}

.methodology-step-pm:hover {
  background: #f0f9f7;
  border-color: #10b981;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.1);
}

.methodology-step-number-pm {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.methodology-step-content-pm {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.methodology-step-title-pm {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #022c22;
}

.methodology-step-text-pm {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  color: #4b7c71;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .hero-content-project-management {
    align-items: center;
    text-align: center;
  }

  .hero-stats-project-management {
    justify-content: center;
  }

  .hero-buttons-pm {
    justify-content: center;
    width: 100%;
  }

  .hero-buttons-pm .btn {
    flex: 1 1 auto;
    min-width: 150px;
  }

  .posts-grid-project-management {
    flex-direction: column;
    align-items: center;
  }

  .card-project-management {
    flex: 1 1 100%;
    max-width: none;
  }

  .insights-content-pm {
    gap: clamp(1.25rem, 3vw, 1.75rem);
  }

  .methodology-steps-pm {
    gap: 1rem;
  }

  .methodology-step-pm {
    padding: 1.25rem;
    gap: 1rem;
  }

  .methodology-step-number-pm {
    min-width: 50px;
  }
}

@media (max-width: 480px) {
  .hero-title-project-management {
    line-height: 1.2;
  }

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

  .hero-buttons-pm .btn {
    width: 100%;
  }

  .stat-item-pm {
    flex: 1 1 auto;
  }

  .card-project-management {
    padding: 1rem;
  }

  .card-image-pm {
    height: 180px;
  }

  .featured-quote-pm {
    padding: 1.25rem;
  }

  .quote-text-pm {
    font-size: 1.0625rem;
  }

  .insight-item-pm {
    padding: 1rem;
  }

  .methodology-step-pm {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .methodology-step-number-pm {
    text-align: center;
    min-width: auto;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Post Page 1 Styles */
.main-high-performance-project-teams {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--color-text-light-primary);
  line-height: 1.6;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.breadcrumbs-high-performance-project-teams {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-high-performance-project-teams {
  color: #10b981;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-high-performance-project-teams:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumb-separator-high-performance-project-teams {
  color: #6ee7b7;
}

.breadcrumb-current-high-performance-project-teams {
  color: #a7f3d0;
}

.hero-section-high-performance-project-teams {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-content-high-performance-project-teams {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-group-high-performance-project-teams {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-high-performance-project-teams {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle-high-performance-project-teams {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #a7f3d0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.article-meta-high-performance-project-teams {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-high-performance-project-teams {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  border-radius: 20px;
  font-size: 0.875rem;
}

.meta-badge-high-performance-project-teams i {
  color: #10b981;
}

.hero-image-high-performance-project-teams {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-featured-image-high-performance-project-teams {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-high-performance-project-teams {
    flex-direction: column;
  }

  .hero-text-group-high-performance-project-teams,
  .hero-image-high-performance-project-teams {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .article-meta-high-performance-project-teams {
    flex-direction: column;
  }
}

.introduction-section-high-performance-project-teams {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.introduction-content-high-performance-project-teams {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-high-performance-project-teams {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-heading-high-performance-project-teams {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1.5rem;
}

.introduction-paragraph-high-performance-project-teams {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b7c71;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.introduction-image-high-performance-project-teams {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-element-high-performance-project-teams {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .introduction-content-high-performance-project-teams {
    flex-direction: column;
  }

  .introduction-text-high-performance-project-teams,
  .introduction-image-high-performance-project-teams {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.composition-section-high-performance-project-teams {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.composition-wrapper-high-performance-project-teams {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.composition-text-high-performance-project-teams {
  flex: 1 1 50%;
  max-width: 50%;
}

.composition-title-high-performance-project-teams {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1.5rem;
}

.composition-paragraph-high-performance-project-teams {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b7c71;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.composition-list-high-performance-project-teams {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.composition-list-item-high-performance-project-teams {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.composition-list-icon-high-performance-project-teams {
  color: #10b981;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.composition-list-content-high-performance-project-teams {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.composition-list-title-high-performance-project-teams {
  font-size: 1.125rem;
  font-weight: 600;
  color: #022c22;
}

.composition-list-text-high-performance-project-teams {
  font-size: 0.95rem;
  color: #4b7c71;
  line-height: 1.6;
}

.composition-image-high-performance-project-teams {
  flex: 1 1 50%;
  max-width: 50%;
}

.composition-image-element-high-performance-project-teams {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .composition-wrapper-high-performance-project-teams {
    flex-direction: column;
  }

  .composition-text-high-performance-project-teams,
  .composition-image-high-performance-project-teams {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.development-section-high-performance-project-teams {
  background: #065f46;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.development-wrapper-high-performance-project-teams {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.development-image-high-performance-project-teams {
  flex: 1 1 50%;
  max-width: 50%;
}

.development-image-element-high-performance-project-teams {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.development-text-high-performance-project-teams {
  flex: 1 1 50%;
  max-width: 50%;
}

.development-title-high-performance-project-teams {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.development-paragraph-high-performance-project-teams {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.development-quote-high-performance-project-teams {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid #10b981;
  margin: 2rem 0;
  border-radius: 8px;
}

.development-quote-text-high-performance-project-teams {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #ffffff;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.development-quote-author-high-performance-project-teams {
  font-size: 0.875rem;
  color: #6ee7b7;
  font-style: normal;
}

@media (max-width: 768px) {
  .development-wrapper-high-performance-project-teams {
    flex-direction: column;
  }

  .development-image-high-performance-project-teams,
  .development-text-high-performance-project-teams {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.dynamics-section-high-performance-project-teams {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.dynamics-header-high-performance-project-teams {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.dynamics-title-high-performance-project-teams {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1rem;
}

.dynamics-subtitle-high-performance-project-teams {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b7c71;
  line-height: 1.8;
}

.dynamics-cards-high-performance-project-teams {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.dynamics-card-high-performance-project-teams {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.dynamics-card-high-performance-project-teams:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}

.dynamics-card-icon-high-performance-project-teams {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 10px;
  color: #10b981;
  font-size: 1.5rem;
}

.dynamics-card-title-high-performance-project-teams {
  font-size: 1.125rem;
  font-weight: 600;
  color: #022c22;
}

.dynamics-card-text-high-performance-project-teams {
  font-size: 0.95rem;
  color: #4b7c71;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .dynamics-card-high-performance-project-teams {
    flex: 1 1 100%;
    max-width: none;
  }
}

.implementation-section-high-performance-project-teams {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-wrapper-high-performance-project-teams {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.implementation-text-high-performance-project-teams {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-high-performance-project-teams {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1.5rem;
}

.implementation-paragraph-high-performance-project-teams {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b7c71;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.implementation-steps-high-performance-project-teams {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.implementation-step-high-performance-project-teams {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.implementation-step-number-high-performance-project-teams {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  flex-shrink: 0;
  min-width: 60px;
}

.implementation-step-content-high-performance-project-teams {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.implementation-step-title-high-performance-project-teams {
  font-size: 1.125rem;
  font-weight: 600;
  color: #022c22;
}

.implementation-step-text-high-performance-project-teams {
  font-size: 0.95rem;
  color: #4b7c71;
  line-height: 1.6;
}

.implementation-image-high-performance-project-teams {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-element-high-performance-project-teams {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .implementation-wrapper-high-performance-project-teams {
    flex-direction: column;
  }

  .implementation-text-high-performance-project-teams,
  .implementation-image-high-performance-project-teams {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .implementation-step-high-performance-project-teams {
    flex-direction: column;
  }
}

.conclusion-section-high-performance-project-teams {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-high-performance-project-teams {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-high-performance-project-teams {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-paragraph-high-performance-project-teams {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b7c71;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-align: justify;
}

.conclusion-key-takeaways-high-performance-project-teams {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.conclusion-takeaways-title-high-performance-project-teams {
  font-size: 1.25rem;
  font-weight: 600;
  color: #022c22;
  margin-bottom: 1rem;
}

.conclusion-takeaways-list-high-performance-project-teams {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.conclusion-takeaway-item-high-performance-project-teams {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  color: #4b7c71;
  font-size: 0.95rem;
  line-height: 1.6;
}

.conclusion-takeaway-item-high-performance-project-teams::before {
  content: "✓";
  color: #10b981;
  font-weight: 700;
  flex-shrink: 0;
}

.disclaimer-section-high-performance-project-teams {
  background: #065f46;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-high-performance-project-teams {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-high-performance-project-teams {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.disclaimer-text-high-performance-project-teams {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
}

.related-section-high-performance-project-teams {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-high-performance-project-teams {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-high-performance-project-teams {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 0.5rem;
}

.related-subtitle-high-performance-project-teams {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b7c71;
}

.related-cards-high-performance-project-teams {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-high-performance-project-teams {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-high-performance-project-teams:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}

.related-card-image-high-performance-project-teams {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-element-high-performance-project-teams {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-content-high-performance-project-teams {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
}

.related-card-title-high-performance-project-teams {
  font-size: 1.125rem;
  font-weight: 600;
  color: #022c22;
}

.related-card-text-high-performance-project-teams {
  font-size: 0.95rem;
  color: #4b7c71;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-high-performance-project-teams {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-high-performance-project-teams:hover {
  color: #059669;
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .related-card-high-performance-project-teams {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-content-high-performance-project-teams,
  .introduction-content-high-performance-project-teams,
  .composition-wrapper-high-performance-project-teams,
  .development-wrapper-high-performance-project-teams,
  .implementation-wrapper-high-performance-project-teams {
    flex-direction: column;
  }

  .hero-text-group-high-performance-project-teams,
  .hero-image-high-performance-project-teams,
  .introduction-text-high-performance-project-teams,
  .introduction-image-high-performance-project-teams,
  .composition-text-high-performance-project-teams,
  .composition-image-high-performance-project-teams,
  .development-image-high-performance-project-teams,
  .development-text-high-performance-project-teams,
  .implementation-text-high-performance-project-teams,
  .implementation-image-high-performance-project-teams {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .dynamics-card-high-performance-project-teams {
    flex: 1 1 100%;
    max-width: none;
  }

  .implementation-step-high-performance-project-teams {
    flex-direction: column;
  }

  .container {
    padding: 0 1rem;
  }
}

/* Post Page 2 Styles */
.main-scope-management-deliverables {
  width: 100%;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* HERO SECTION - Dark Emerald Background */
.hero-section-scope-management-deliverables {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.breadcrumbs-scope-management-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-scope-management-deliverables {
  color: #a7f3d0;
  transition: color 0.3s ease;
  text-decoration: none;
}

.breadcrumb-link-scope-management-deliverables:hover {
  color: #34d399;
}

.breadcrumb-separator-scope-management-deliverables {
  color: #6ee7b7;
}

.breadcrumb-current-scope-management-deliverables {
  color: #10b981;
  font-weight: 500;
}

.hero-content-scope-management-deliverables {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.hero-text-group-scope-management-deliverables {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-scope-management-deliverables {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
}

.hero-subtitle-scope-management-deliverables {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #a7f3d0;
  line-height: 1.6;
}

.hero-meta-scope-management-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-scope-management-deliverables {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #34d399;
}

.meta-badge-scope-management-deliverables i {
  color: #10b981;
}

.hero-image-scope-management-deliverables {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-featured-image-scope-management-deliverables {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-stats-scope-management-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: flex-start;
  padding-top: 2rem;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-item-scope-management-deliverables {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-scope-management-deliverables {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.stat-label-scope-management-deliverables {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #a7f3d0;
}

@media (max-width: 768px) {
  .hero-content-scope-management-deliverables {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-text-group-scope-management-deliverables {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-scope-management-deliverables {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-scope-management-deliverables {
    justify-content: space-around;
  }
}

/* INTRODUCTION SECTION - Light Background */
.introduction-section-scope-management-deliverables {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-scope-management-deliverables {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-scope-management-deliverables {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-scope-management-deliverables {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
}

.intro-description-scope-management-deliverables {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b7c71;
  line-height: 1.8;
}

.intro-image-scope-management-deliverables {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-featured-image-scope-management-deliverables {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(2, 44, 34, 0.1);
}

@media (max-width: 768px) {
  .intro-content-scope-management-deliverables {
    flex-direction: column;
    gap: 2rem;
  }

  .intro-text-scope-management-deliverables {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-scope-management-deliverables {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* CONTENT SECTION ONE - Dark Background */
.content-section-one-scope-management-deliverables {
  background: #064e3b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-scope-management-deliverables {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-scope-management-deliverables {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-heading-scope-management-deliverables {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.content-body-scope-management-deliverables {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
}

.process-steps-scope-management-deliverables {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.process-step-scope-management-deliverables {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.process-number-scope-management-deliverables {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.process-content-scope-management-deliverables {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.process-title-scope-management-deliverables {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.process-text-scope-management-deliverables {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
}

.content-image-scope-management-deliverables {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-item-scope-management-deliverables {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .content-wrapper-scope-management-deliverables {
    flex-direction: column;
    gap: 2rem;
  }

  .content-text-scope-management-deliverables {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-scope-management-deliverables {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .process-step-scope-management-deliverables {
    gap: 1rem;
    padding: 1rem;
  }
}

/* CONTENT SECTION TWO - Light Background */
.content-section-two-scope-management-deliverables {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-two-scope-management-deliverables {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-image-left-scope-management-deliverables {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-left-item-scope-management-deliverables {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(2, 44, 34, 0.1);
}

.content-text-right-scope-management-deliverables {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-heading-two-scope-management-deliverables {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
}

.content-body-two-scope-management-deliverables {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b7c71;
  line-height: 1.8;
}

.featured-quote-scope-management-deliverables {
  padding: 2rem 2.5rem;
  border-left: 4px solid #10b981;
  background: #ffffff;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.quote-text-scope-management-deliverables {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #022c22;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.quote-author-scope-management-deliverables {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b7c71;
  font-style: normal;
}

@media (max-width: 768px) {
  .content-wrapper-two-scope-management-deliverables {
    flex-direction: column;
    gap: 2rem;
  }

  .content-image-left-scope-management-deliverables {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-text-right-scope-management-deliverables {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* CONTENT SECTION THREE - Dark Background */
.content-section-three-scope-management-deliverables {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-three-scope-management-deliverables {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-left-scope-management-deliverables {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-heading-three-scope-management-deliverables {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.content-body-three-scope-management-deliverables {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
}

.deliverables-grid-scope-management-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-top: 1.5rem;
}

.deliverable-card-scope-management-deliverables {
  flex: 1 1 calc(50% - 0.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.deliverable-icon-scope-management-deliverables {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  color: #10b981;
  font-size: 1.25rem;
}

.deliverable-title-scope-management-deliverables {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
}

.deliverable-text-scope-management-deliverables {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
}

.content-image-right-scope-management-deliverables {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-right-item-scope-management-deliverables {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .content-wrapper-three-scope-management-deliverables {
    flex-direction: column;
    gap: 2rem;
  }

  .content-text-left-scope-management-deliverables {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-right-scope-management-deliverables {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .deliverable-card-scope-management-deliverables {
    flex: 1 1 100%;
  }

  .deliverables-grid-scope-management-deliverables {
    flex-direction: column;
  }
}

/* CONCLUSION SECTION - Light Background */
.conclusion-section-scope-management-deliverables {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-scope-management-deliverables {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.conclusion-title-scope-management-deliverables {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
}

.conclusion-text-scope-management-deliverables {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b7c71;
  line-height: 1.8;
}

.key-points-scope-management-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  margin: 1rem 0;
}

.key-point-scope-management-deliverables {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.key-point-title-scope-management-deliverables {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #022c22;
}

.key-point-text-scope-management-deliverables {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b7c71;
  line-height: 1.6;
}

.cta-box-scope-management-deliverables {
  background: linear-gradient(135deg, #10b981, #34d399);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 16px;
  text-align: center;
  margin-top: 2rem;
}

.cta-heading-scope-management-deliverables {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-description-scope-management-deliverables {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button-scope-management-deliverables {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #10b981;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
}

.cta-button-scope-management-deliverables:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* DISCLAIMER SECTION - Dark Background */
.disclaimer-section-scope-management-deliverables {
  background: #064e3b;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  overflow: hidden;
}

.disclaimer-content-scope-management-deliverables {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-scope-management-deliverables {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.disclaimer-text-scope-management-deliverables {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.7;
}

/* RELATED POSTS SECTION - Light Background */
.related-posts-section-scope-management-deliverables {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.related-header-scope-management-deliverables {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-scope-management-deliverables {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 0.5rem;
}

.related-subtitle-scope-management-deliverables {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b7c71;
}

.related-cards-scope-management-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-scope-management-deliverables {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-scope-management-deliverables:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(2, 44, 34, 0.1);
  border-color: #10b981;
}

.related-card-image-scope-management-deliverables {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}

.related-card-image-scope-management-deliverables img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-scope-management-deliverables {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-scope-management-deliverables {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #022c22;
  line-height: 1.3;
}

.related-card-description-scope-management-deliverables {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b7c71;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-scope-management-deliverables {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  font-weight: 600;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-scope-management-deliverables:hover {
  gap: 1rem;
  color: #059669;
}

@media (max-width: 768px) {
  .related-card-scope-management-deliverables {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-cards-scope-management-deliverables {
    flex-direction: column;
  }

  .key-points-scope-management-deliverables {
    flex-direction: column;
  }

  .key-point-scope-management-deliverables {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .hero-stats-scope-management-deliverables {
    gap: 1.5rem;
  }

  .stat-item-scope-management-deliverables {
    min-width: 150px;
  }

  .process-step-scope-management-deliverables {
    gap: 1rem;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .process-number-scope-management-deliverables {
    min-width: auto;
  }

  .deliverable-card-scope-management-deliverables {
    flex: 1 1 100%;
  }
}

/* Post Page 3 Styles */
.main-risk-management-mitigation {
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.hero-section-risk-management-mitigation {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.breadcrumbs-risk-management-mitigation {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-risk-management-mitigation {
  color: #6ee7b7;
  transition: color 0.3s ease;
}

.breadcrumb-link-risk-management-mitigation:hover {
  color: #a7f3d0;
}

.breadcrumb-separator-risk-management-mitigation {
  color: #4b7c71;
}

.breadcrumb-current-risk-management-mitigation {
  color: #a7f3d0;
}

.hero-content-risk-management-mitigation {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.hero-text-group-risk-management-mitigation {
  max-width: 700px;
}

.hero-title-risk-management-mitigation {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-risk-management-mitigation {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #a7f3d0;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-stats-risk-management-mitigation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  padding-top: 1.5rem;
}

.stat-item-risk-management-mitigation {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-risk-management-mitigation {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  display: block;
  line-height: 1;
}

.stat-label-risk-management-mitigation {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #6ee7b7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-container-risk-management-mitigation {
  margin-top: 2rem;
  border-radius: 16px;
  overflow: hidden;
}

.hero-image-risk-management-mitigation {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.article-meta-section-risk-management-mitigation {
  background: #064e3b;
  padding: 1.5rem 0;
}

.meta-badges-risk-management-mitigation {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-risk-management-mitigation {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #a7f3d0;
}

.meta-badge-risk-management-mitigation i {
  color: #10b981;
}

.intro-section-risk-management-mitigation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-risk-management-mitigation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-risk-management-mitigation {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-risk-management-mitigation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
}

.intro-description-risk-management-mitigation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b7c71;
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-image-risk-management-mitigation {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-risk-management-mitigation {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.frameworks-section-risk-management-mitigation {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.frameworks-header-risk-management-mitigation {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-risk-management-mitigation {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.frameworks-title-risk-management-mitigation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1rem;
}

.frameworks-subtitle-risk-management-mitigation {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #4b7c71;
  max-width: 600px;
  margin: 0 auto;
}

.frameworks-content-risk-management-mitigation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.framework-steps-risk-management-mitigation {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.framework-step-risk-management-mitigation {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.framework-step-number-risk-management-mitigation {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

.framework-step-content-risk-management-mitigation {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.framework-step-title-risk-management-mitigation {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #022c22;
}

.framework-step-text-risk-management-mitigation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b7c71;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.framework-image-risk-management-mitigation {
  flex: 1 1 50%;
  max-width: 50%;
}

.framework-img-risk-management-mitigation {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.mitigation-section-risk-management-mitigation {
  background: #065f46;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mitigation-content-risk-management-mitigation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mitigation-image-risk-management-mitigation {
  flex: 1 1 50%;
  max-width: 50%;
}

.mitigation-img-risk-management-mitigation {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.mitigation-text-risk-management-mitigation {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mitigation-title-risk-management-mitigation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.mitigation-description-risk-management-mitigation {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mitigation-strategies-list-risk-management-mitigation {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategy-item-risk-management-mitigation {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.strategy-title-risk-management-mitigation {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #10b981;
}

.strategy-text-risk-management-mitigation {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #6ee7b7;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.featured-quote-section-risk-management-mitigation {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.featured-quote-risk-management-mitigation {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #10b981;
  background: #ffffff;
  border-radius: 8px;
}

.quote-text-risk-management-mitigation {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #022c22;
  margin-bottom: 1rem;
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-risk-management-mitigation {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #4b7c71;
  font-style: normal;
}

.implementation-section-risk-management-mitigation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-header-risk-management-mitigation {
  text-align: center;
  margin-bottom: 3rem;
}

.implementation-title-risk-management-mitigation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1rem;
}

.implementation-subtitle-risk-management-mitigation {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #4b7c71;
  max-width: 600px;
  margin: 0 auto;
}

.implementation-content-risk-management-mitigation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-text-risk-management-mitigation {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.implementation-section-title-risk-management-mitigation {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #022c22;
}

.implementation-text-block-risk-management-mitigation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b7c71;
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-highlights-risk-management-mitigation {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-box-risk-management-mitigation {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 8px;
}

.highlight-box-risk-management-mitigation i {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1.25rem;
}

.highlight-text-risk-management-mitigation {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #022c22;
  line-height: 1.6;
}

.implementation-image-risk-management-mitigation {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-img-risk-management-mitigation {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.tools-section-risk-management-mitigation {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-header-risk-management-mitigation {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-title-risk-management-mitigation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1rem;
}

.tools-grid-risk-management-mitigation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.tool-card-risk-management-mitigation {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card-risk-management-mitigation:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.tool-icon-risk-management-mitigation {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 10px;
  color: #10b981;
  font-size: 1.5rem;
}

.tool-title-risk-management-mitigation {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #022c22;
}

.tool-description-risk-management-mitigation {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b7c71;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-section-risk-management-mitigation {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.cta-content-risk-management-mitigation {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cta-title-risk-management-mitigation {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
}

.cta-description-risk-management-mitigation {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-buttons-risk-management-mitigation {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-risk-management-mitigation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  background: #10b981;
  color: #000000;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary-risk-management-mitigation:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.btn-secondary-risk-management-mitigation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  background: transparent;
  color: #ffffff;
  border: 2px solid #a7f3d0;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
}

.btn-secondary-risk-management-mitigation:hover {
  background: #10b981;
  border-color: #10b981;
  color: #000000;
  transform: translateY(-2px);
}

.disclaimer-section-risk-management-mitigation {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.disclaimer-content-risk-management-mitigation {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-risk-management-mitigation {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #022c22;
  margin-bottom: 1rem;
}

.disclaimer-text-risk-management-mitigation {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b7c71;
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid #10b981;
  border-radius: 4px;
}

.related-section-risk-management-mitigation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-risk-management-mitigation {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-risk-management-mitigation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 0.5rem;
}

.related-subtitle-risk-management-mitigation {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #4b7c71;
}

.related-cards-risk-management-mitigation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-risk-management-mitigation {
  flex: 1 1 300px;
  max-width: 400px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-risk-management-mitigation:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #10b981;
}

.related-card-content-risk-management-mitigation {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.related-card-title-risk-management-mitigation {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #022c22;
}

.related-card-description-risk-management-mitigation {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b7c71;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-link-risk-management-mitigation {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #10b981;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.related-card-link-risk-management-mitigation:hover {
  color: #059669;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .intro-content-risk-management-mitigation,
  .frameworks-content-risk-management-mitigation,
  .mitigation-content-risk-management-mitigation,
  .implementation-content-risk-management-mitigation {
    flex-direction: column;
    gap: 2rem;
  }

  .intro-text-risk-management-mitigation,
  .intro-image-risk-management-mitigation,
  .frameworks-content-risk-management-mitigation .framework-steps-risk-management-mitigation,
  .frameworks-content-risk-management-mitigation .framework-image-risk-management-mitigation,
  .mitigation-image-risk-management-mitigation,
  .mitigation-text-risk-management-mitigation,
  .implementation-text-risk-management-mitigation,
  .implementation-image-risk-management-mitigation {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-risk-management-mitigation {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .framework-step-risk-management-mitigation {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-buttons-risk-management-mitigation {
    flex-direction: column;
  }

  .btn-primary-risk-management-mitigation,
  .btn-secondary-risk-management-mitigation {
    width: 100%;
  }

  .related-cards-risk-management-mitigation {
    flex-direction: column;
  }

  .related-card-risk-management-mitigation {
    flex: 1 1 100%;
    max-width: none;
  }

  .tool-card-risk-management-mitigation {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-stats-risk-management-mitigation {
    flex-direction: column;
    gap: 1.5rem;
  }

  .meta-badges-risk-management-mitigation {
    flex-direction: column;
    gap: 0.75rem;
  }

  .meta-badge-risk-management-mitigation {
    width: 100%;
  }

  .featured-quote-risk-management-mitigation {
    padding: 1.5rem;
  }

  .implementation-highlights-risk-management-mitigation {
    gap: 0.75rem;
  }

  .highlight-box-risk-management-mitigation {
    padding: 0.75rem;
  }
}

/* Post Page 4 Styles */
.main-cost-control-budget-optimization {
  width: 100%;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
}

h4 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
}

p,
li,
span {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.cta-button-cost-control-budget-optimization,
.related-card-link-cost-control-budget-optimization {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-section-cost-control-budget-optimization {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-content-cost-control-budget-optimization {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.hero-text-group-cost-control-budget-optimization {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-cost-control-budget-optimization {
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-subtitle-cost-control-budget-optimization {
  color: #a7f3d0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.hero-image-cost-control-budget-optimization {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-cost-control-budget-optimization {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.article-meta-cost-control-budget-optimization {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-badge-cost-control-budget-optimization {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #a7f3d0;
}

.meta-badge-cost-control-budget-optimization i {
  color: #10b981;
}

.breadcrumbs-cost-control-budget-optimization {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  align-items: center;
}

.breadcrumb-link-cost-control-budget-optimization {
  color: #a7f3d0;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.breadcrumb-link-cost-control-budget-optimization:hover {
  color: #ffffff;
}

.breadcrumb-separator-cost-control-budget-optimization {
  color: #6ee7b7;
  margin: 0 0.25rem;
}

.breadcrumb-current-cost-control-budget-optimization {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-stats-cost-control-budget-optimization {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  justify-content: flex-start;
  padding-top: 2rem;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-item-cost-control-budget-optimization {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-cost-control-budget-optimization {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.stat-label-cost-control-budget-optimization {
  font-size: 0.875rem;
  color: #a7f3d0;
}

.intro-section-cost-control-budget-optimization {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-cost-control-budget-optimization {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-cost-control-budget-optimization {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-cost-control-budget-optimization {
  color: #022c22;
  margin-bottom: 1.5rem;
}

.intro-description-cost-control-budget-optimization {
  color: #0f766e;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-text-cost-control-budget-optimization {
  color: #4b7c71;
  line-height: 1.8;
}

.intro-image-cost-control-budget-optimization {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-cost-control-budget-optimization {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.process-section-cost-control-budget-optimization {
  background: #064e3b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-cost-control-budget-optimization {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-tag-cost-control-budget-optimization {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.process-title-cost-control-budget-optimization {
  color: #ffffff;
  margin-bottom: 1rem;
}

.process-subtitle-cost-control-budget-optimization {
  color: #a7f3d0;
  max-width: 600px;
  margin: 0 auto;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.process-steps-cost-control-budget-optimization {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-cost-control-budget-optimization {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.process-step-number-cost-control-budget-optimization {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.process-step-content-cost-control-budget-optimization {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step-title-cost-control-budget-optimization {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

.process-step-text-cost-control-budget-optimization {
  color: #a7f3d0;
  line-height: 1.7;
}

.strategies-section-cost-control-budget-optimization {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-content-cost-control-budget-optimization {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.strategies-text-cost-control-budget-optimization {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-title-cost-control-budget-optimization {
  color: #022c22;
  margin-bottom: 1rem;
}

.strategies-description-cost-control-budget-optimization {
  color: #0f766e;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.strategies-list-cost-control-budget-optimization {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategy-item-cost-control-budget-optimization {
  padding: 1rem;
  border-left: 3px solid #10b981;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 6px;
}

.strategy-item-title-cost-control-budget-optimization {
  color: #022c22;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.strategy-item-text-cost-control-budget-optimization {
  color: #4b7c71;
  font-size: 0.95rem;
  line-height: 1.7;
}

.strategies-image-cost-control-budget-optimization {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-img-cost-control-budget-optimization {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.tools-section-cost-control-budget-optimization {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-title-cost-control-budget-optimization {
  color: #022c22;
  text-align: center;
  margin-bottom: 1rem;
}

.tools-grid-cost-control-budget-optimization {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tool-card-cost-control-budget-optimization {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card-cost-control-budget-optimization:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.tool-icon-cost-control-budget-optimization {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 10px;
  color: #10b981;
  font-size: 1.5rem;
}

.tool-card-title-cost-control-budget-optimization {
  color: #022c22;
  font-weight: 600;
}

.tool-card-text-cost-control-budget-optimization {
  color: #4b7c71;
  font-size: 0.95rem;
  line-height: 1.7;
}

.quote-section-cost-control-budget-optimization {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-cost-control-budget-optimization {
  padding: 2rem 2.5rem;
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.08);
  margin: 0;
  border-radius: 6px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-cost-control-budget-optimization {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-author-cost-control-budget-optimization {
  font-size: 0.875rem;
  color: #a7f3d0;
  font-style: normal;
}

.challenges-section-cost-control-budget-optimization {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.challenges-content-cost-control-budget-optimization {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.challenges-image-cost-control-budget-optimization {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-img-cost-control-budget-optimization {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.challenges-text-cost-control-budget-optimization {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-title-cost-control-budget-optimization {
  color: #022c22;
  margin-bottom: 2rem;
}

.challenge-block-cost-control-budget-optimization {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.challenge-block-cost-control-budget-optimization:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.challenge-title-cost-control-budget-optimization {
  color: #022c22;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.challenge-text-cost-control-budget-optimization {
  color: #4b7c71;
  line-height: 1.7;
}

.implementation-section-cost-control-budget-optimization {
  background: #064e3b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-title-cost-control-budget-optimization {
  color: #ffffff;
  margin-bottom: 1rem;
}

.implementation-subtitle-cost-control-budget-optimization {
  color: #a7f3d0;
  max-width: 600px;
  margin: 0 auto;
}

.implementation-content-cost-control-budget-optimization {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: 3rem;
}

.implementation-text-cost-control-budget-optimization {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-intro-cost-control-budget-optimization {
  color: #a7f3d0;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.implementation-items-cost-control-budget-optimization {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.implementation-item-cost-control-budget-optimization {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.item-number-cost-control-budget-optimization {
  font-size: 1.5rem;
  font-weight: 800;
  color: #10b981;
  flex-shrink: 0;
  min-width: 30px;
}

.item-title-cost-control-budget-optimization {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.item-text-cost-control-budget-optimization {
  color: #a7f3d0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.implementation-image-cost-control-budget-optimization {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-img-cost-control-budget-optimization {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.conclusion-section-cost-control-budget-optimization {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-cost-control-budget-optimization {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-cost-control-budget-optimization {
  color: #022c22;
  text-align: center;
  margin-bottom: 2.5rem;
}

.conclusion-highlights-cost-control-budget-optimization {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.highlight-box-cost-control-budget-optimization {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #10b981;
}

.highlight-title-cost-control-budget-optimization {
  color: #022c22;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.highlight-text-cost-control-budget-optimization {
  color: #4b7c71;
  line-height: 1.7;
  font-size: 0.95rem;
}

.cta-box-cost-control-budget-optimization {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
}

.cta-title-cost-control-budget-optimization {
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-text-cost-control-budget-optimization {
  color: #a7f3d0;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-button-cost-control-budget-optimization {
  background: #10b981;
  color: #000000;
  font-weight: 600;
}

.cta-button-cost-control-budget-optimization:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.disclaimer-section-cost-control-budget-optimization {
  background: #ffffff;
  padding: clamp(2rem, 5vw, 3rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-cost-control-budget-optimization {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-cost-control-budget-optimization {
  color: #022c22;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-cost-control-budget-optimization {
  color: #4b7c71;
  font-size: 0.9rem;
  line-height: 1.7;
}

.related-section-cost-control-budget-optimization {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-title-cost-control-budget-optimization {
  color: #022c22;
  text-align: center;
  margin-bottom: 1rem;
}

.related-subtitle-cost-control-budget-optimization {
  color: #4b7c71;
  text-align: center;
  margin-bottom: 3rem;
}

.related-cards-cost-control-budget-optimization {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-cost-control-budget-optimization {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.related-card-cost-control-budget-optimization:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.related-card-content-cost-control-budget-optimization {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.related-card-title-cost-control-budget-optimization {
  color: #022c22;
  font-weight: 600;
  line-height: 1.4;
}

.related-card-text-cost-control-budget-optimization {
  color: #4b7c71;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-cost-control-budget-optimization {
  color: #10b981;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.related-card-link-cost-control-budget-optimization:hover {
  color: #059669;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .hero-content-cost-control-budget-optimization,
  .intro-content-cost-control-budget-optimization,
  .strategies-content-cost-control-budget-optimization,
  .challenges-content-cost-control-budget-optimization,
  .implementation-content-cost-control-budget-optimization {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-text-group-cost-control-budget-optimization,
  .hero-image-cost-control-budget-optimization,
  .intro-text-cost-control-budget-optimization,
  .intro-image-cost-control-budget-optimization,
  .strategies-text-cost-control-budget-optimization,
  .strategies-image-cost-control-budget-optimization,
  .challenges-image-cost-control-budget-optimization,
  .challenges-text-cost-control-budget-optimization,
  .implementation-text-cost-control-budget-optimization,
  .implementation-image-cost-control-budget-optimization {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-cost-control-budget-optimization {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .process-step-cost-control-budget-optimization {
    flex-direction: column;
    gap: 1rem;
  }

  .conclusion-highlights-cost-control-budget-optimization {
    grid-template-columns: 1fr;
  }

  .related-card-cost-control-budget-optimization {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .article-meta-cost-control-budget-optimization {
    flex-direction: column;
    gap: 0.75rem;
  }

  .meta-badge-cost-control-budget-optimization {
    width: 100%;
  }

  .hero-stats-cost-control-budget-optimization {
    gap: 1rem;
  }

  .stat-number-cost-control-budget-optimization {
    font-size: 1.5rem;
  }

  .breadcrumbs-cost-control-budget-optimization {
    gap: 0.25rem;
  }

  .tool-card-cost-control-budget-optimization {
    flex: 1 1 100%;
    max-width: none;
  }

  .featured-quote-cost-control-budget-optimization {
    padding: 1.5rem;
  }

  .quote-text-cost-control-budget-optimization {
    font-size: 1rem;
  }

  .cta-box-cost-control-budget-optimization {
    padding: 1.5rem;
  }
}

/* Post Page 5 Styles */
.main-pm-certification-preparation {
  width: 100%;
  background: #ffffff;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.breadcrumbs-pm-certification-preparation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-pm-certification-preparation {
  color: #065f46;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-pm-certification-preparation:hover {
  color: #10b981;
  text-decoration: underline;
}

.breadcrumb-separator-pm-certification-preparation {
  color: #cbd5e1;
}

.breadcrumb-current-pm-certification-preparation {
  color: #64748b;
}

.hero-section-pm-certification-preparation {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-pm-certification-preparation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-group-pm-certification-preparation {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-pm-certification-preparation {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-pm-certification-preparation {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.article-meta-pm-certification-preparation {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-pm-certification-preparation {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #065f46;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.meta-badge-pm-certification-preparation i {
  color: #10b981;
}

.hero-image-pm-certification-preparation {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-pm-certification-preparation {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.introduction-section-pm-certification-preparation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.introduction-content-pm-certification-preparation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.introduction-text-pm-certification-preparation {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.introduction-title-pm-certification-preparation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.introduction-paragraph-pm-certification-preparation {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.75;
}

.introduction-image-pm-certification-preparation {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-img-pm-certification-preparation {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.pathways-section-pm-certification-preparation {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-pm-certification-preparation {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-tag-pm-certification-preparation {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #065f46;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.pathways-title-pm-certification-preparation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.pathways-subtitle-pm-certification-preparation {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.pathways-grid-pm-certification-preparation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.pathway-card-pm-certification-preparation {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.pathway-card-pm-certification-preparation:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.pathway-number-pm-certification-preparation {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.pathway-title-pm-certification-preparation {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.pathway-text-pm-certification-preparation {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  flex-grow: 1;
}

.pathway-details-pm-certification-preparation {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.detail-label-pm-certification-preparation {
  font-size: 0.85rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.detail-value-pm-certification-preparation {
  font-size: 1rem;
  font-weight: 600;
  color: #10b981;
}

.preparation-section-pm-certification-preparation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.preparation-content-pm-certification-preparation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.preparation-image-pm-certification-preparation {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.preparation-img-pm-certification-preparation {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.preparation-text-pm-certification-preparation {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.preparation-title-pm-certification-preparation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.preparation-paragraph-pm-certification-preparation {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.75;
}

.study-strategies-section-pm-certification-preparation {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-title-pm-certification-preparation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.strategies-subtitle-pm-certification-preparation {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.strategies-grid-pm-certification-preparation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.strategy-card-pm-certification-preparation {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}

.strategy-card-pm-certification-preparation:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.1);
}

.strategy-icon-pm-certification-preparation {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  color: #10b981;
  font-size: 1.5rem;
}

.strategy-title-pm-certification-preparation {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.strategy-text-pm-certification-preparation {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.exam-preparation-section-pm-certification-preparation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.exam-content-pm-certification-preparation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.exam-text-pm-certification-preparation {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.exam-title-pm-certification-preparation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.exam-paragraph-pm-certification-preparation {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.75;
}

.exam-highlight-pm-certification-preparation {
  padding: 1.5rem;
  background: #f0fdf4;
  border-left: 4px solid #10b981;
  border-radius: 8px;
}

.highlight-text-pm-certification-preparation {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #065f46;
  line-height: 1.7;
  margin: 0;
}

.exam-image-pm-certification-preparation {
  flex: 1 1 50%;
  max-width: 50%;
}

.exam-img-pm-certification-preparation {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.maintenance-section-pm-certification-preparation {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.maintenance-title-pm-certification-preparation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.maintenance-subtitle-pm-certification-preparation {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.maintenance-content-pm-certification-preparation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.maintenance-image-pm-certification-preparation {
  flex: 1 1 50%;
  max-width: 50%;
}

.maintenance-img-pm-certification-preparation {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.maintenance-text-pm-certification-preparation {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.maintenance-paragraph-pm-certification-preparation {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.75;
}

.quote-section-pm-certification-preparation {
  background: #065f46;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.featured-quote-pm-certification-preparation {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: transparent;
  text-align: center;
}

.quote-text-pm-certification-preparation {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  font-style: italic;
}

.quote-author-pm-certification-preparation {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #a7f3d0;
  font-style: normal;
  display: block;
}

.action-section-pm-certification-preparation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.action-content-pm-certification-preparation {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.action-title-pm-certification-preparation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.action-description-pm-certification-preparation {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.75;
}

.action-buttons-pm-certification-preparation {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-pm-certification-preparation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  background: #10b981;
  color: #0f172a;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary-pm-certification-preparation:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.btn-secondary-pm-certification-preparation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  background: transparent;
  color: #10b981;
  border: 2px solid #10b981;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
}

.btn-secondary-pm-certification-preparation:hover {
  background: #10b981;
  color: #0f172a;
  transform: translateY(-2px);
}

.disclaimer-section-pm-certification-preparation {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-pm-certification-preparation {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-pm-certification-preparation {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-pm-certification-preparation {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #64748b;
  line-height: 1.8;
  padding: 1.5rem;
  background: #ffffff;
  border-left: 3px solid #cbd5e1;
  border-radius: 4px;
}

.related-section-pm-certification-preparation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-title-pm-certification-preparation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.related-subtitle-pm-certification-preparation {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.related-cards-pm-certification-preparation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-pm-certification-preparation {
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-pm-certification-preparation:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.related-card-image-pm-certification-preparation {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-pm-certification-preparation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-pm-certification-preparation {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  padding: 0 1.5rem;
  padding-top: 0.5rem;
  line-height: 1.3;
}

.related-card-text-pm-certification-preparation {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #64748b;
  line-height: 1.6;
  padding: 0 1.5rem;
}

.related-link-pm-certification-preparation {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #10b981;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.related-link-pm-certification-preparation:hover {
  color: #059669;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero-content-pm-certification-preparation,
  .introduction-content-pm-certification-preparation,
  .preparation-content-pm-certification-preparation,
  .exam-content-pm-certification-preparation,
  .maintenance-content-pm-certification-preparation {
    flex-direction: column;
  }

  .hero-text-group-pm-certification-preparation,
  .introduction-text-pm-certification-preparation,
  .preparation-text-pm-certification-preparation,
  .exam-text-pm-certification-preparation,
  .maintenance-text-pm-certification-preparation,
  .hero-image-pm-certification-preparation,
  .introduction-image-pm-certification-preparation,
  .preparation-image-pm-certification-preparation,
  .exam-image-pm-certification-preparation,
  .maintenance-image-pm-certification-preparation {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .preparation-image-pm-certification-preparation {
    order: 0;
  }

  .pathways-card-pm-certification-preparation,
  .strategy-card-pm-certification-preparation,
  .related-card-pm-certification-preparation {
    flex: 1 1 100%;
    max-width: none;
  }

  .action-buttons-pm-certification-preparation {
    flex-direction: column;
  }

  .btn-primary-pm-certification-preparation,
  .btn-secondary-pm-certification-preparation {
    width: 100%;
  }

  .breadcrumbs-pm-certification-preparation {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-section-pm-certification-preparation,
  .introduction-section-pm-certification-preparation,
  .pathways-section-pm-certification-preparation,
  .preparation-section-pm-certification-preparation,
  .study-strategies-section-pm-certification-preparation,
  .exam-preparation-section-pm-certification-preparation,
  .maintenance-section-pm-certification-preparation,
  .action-section-pm-certification-preparation,
  .disclaimer-section-pm-certification-preparation,
  .related-section-pm-certification-preparation {
    padding: 2rem 0;
  }

  .quote-section-pm-certification-preparation {
    padding: 2rem 0;
  }

  .section-header-pm-certification-preparation {
    margin-bottom: 1.5rem;
  }

  .article-meta-pm-certification-preparation {
    gap: 0.5rem;
    font-size: 0.75rem;
  }

  .meta-badge-pm-certification-preparation {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }
}

/* About Page Styles */
:root {
  --color-bg-dark-primary: #022c22;
  --color-bg-dark-secondary: #064e3b;
  --color-bg-dark-tertiary: #065f46;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(16, 185, 129, 0.08);
  --color-bg-card-light: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #a7f3d0;
  --color-text-dark-muted: #6ee7b7;
  --color-text-light-primary: #022c22;
  --color-text-light-secondary: #0f766e;
  --color-text-light-muted: #4b7c71;
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-secondary: #34d399;
  --color-accent-bright: #1ee0c6;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.propath-about-main {
  width: 100%;
}

.leadership-hero-about {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.leadership-hero-about .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.hero-content-about {
  text-align: center;
  max-width: 800px;
}

.hero-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.2);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-dark-primary);
  margin-bottom: 1rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-dark-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 1rem;
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 5vw, 3rem);
  margin-top: 3rem;
}

.stat-item-about {
  text-align: center;
}

.stat-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  display: block;
  line-height: 1;
}

.stat-label-about {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  margin-top: 0.5rem;
}

.mission-section-about {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.mission-content-about {
  display: flex;
  flex-direction: column !important;
  gap: 2rem;
}

.mission-text-about {
  max-width: 700px;
}

.mission-intro-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-light-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.mission-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.mission-highlights-about {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.highlight-item-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1 1 250px;
}

.highlight-icon-about {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.highlight-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-muted);
  line-height: 1.6;
}

.journey-section-about {
  background: var(--color-bg-dark-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.journey-content-about {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.section-header-about {
  text-align: center;
  margin-bottom: 2rem;
}

.section-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.2);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.timeline-steps-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-step-about {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
}

.timeline-number-about {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  min-width: 80px;
  text-align: center;
}

.timeline-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.timeline-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.timeline-description-about {
  font-size: 0.9375rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

.expertise-section-about {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.expertise-content-about {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.expertise-intro-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.expertise-intro-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.expertise-intro-text-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

.expertise-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.expertise-card-about {
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card-about:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.expertise-card-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.12);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.expertise-card-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.expertise-card-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

.approach-section-about {
  background: var(--color-bg-dark-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.approach-content-about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.approach-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.approach-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.approach-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.approach-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 1rem auto 0;
}

.values-section-about {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.values-content-about {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.values-header-about {
  text-align: center;
}

.values-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.values-subtitle-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

.values-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.value-item-about {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.value-label-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.value-description-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

.featured-quote-about {
  background: var(--color-bg-light-secondary);
  padding: clamp(2rem, 4vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  margin: 2rem 0;
  border-radius: var(--radius-md);
}

.featured-quote-about p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-light-primary);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.featured-quote-about cite {
  font-size: 0.875rem;
  color: var(--color-text-light-muted);
  font-style: normal;
}

.disclaimer-section-about {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(2, 44, 34, 0.1);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.disclaimer-title-about {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.disclaimer-text-about {
  font-size: 0.875rem;
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .leadership-hero-about .container {
    gap: 1.5rem;
  }

  .hero-stats-about {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .timeline-step-about {
    gap: 1.5rem;
  }

  .expertise-cards-about {
    gap: 1rem;
  }

  .expertise-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .values-grid-about {
    gap: 1rem;
  }

  .value-item-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .highlight-item-about {
    flex: 1 1 100%;
  }
}

@media (min-width: 768px) {
  .mission-content-about {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .mission-text-about {
    flex: 1 1 50%;
  }
}

/* Privacy Page Styles */
/* Privacy Policy Page Component */
.policy-docs {
  font-family: var(--font-primary);
}

/* Base container styling */
.policy-docs .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

/* Hero/Title Section */
.policy-docs-hero {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.policy-docs-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.policy-docs-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-dark-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.policy-docs-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Main Content Section */
.policy-docs-content {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.policy-docs-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
}

/* Section Styling */
.policy-docs-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.policy-docs-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-light-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.policy-docs-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.policy-docs-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: 1.5rem;
  list-style: disc;
}

.policy-docs-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.policy-docs-section strong {
  color: var(--color-text-light-primary);
  font-weight: 600;
}

/* Contact Section */
.policy-docs-contact {
  background: var(--color-bg-light-secondary);
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.policy-docs-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-light-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.policy-docs-contact p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.policy-docs-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.policy-docs-contact-label {
  font-weight: 600;
  color: var(--color-text-light-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.policy-docs-contact-value {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .policy-docs-hero {
    padding: 5rem 0;
  }

  .policy-docs-content {
    padding: 5rem 0;
  }

  .policy-docs-section {
    gap: 1.25rem;
  }

  .policy-docs-contact {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .policy-docs-hero {
    padding: 6rem 0;
  }

  .policy-docs-content {
    padding: 6rem 0;
  }

  .policy-docs-section {
    gap: 1.5rem;
  }
}

/* Thank You Page Styles */
/* Thank You Page Component */
  .thank-you-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Thank Section */
  .thank-section {
    width: 100%;
    background: var(--color-bg-dark-primary);
    padding: clamp(2.5rem, 6vw, 6rem) 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }

  .thank-section .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
  }

  .thank-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    padding: clamp(2rem, 5vw, 3rem);
  }

  /* Success Icon */
  .thank-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .thank-icon i {
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: var(--color-primary);
  }

  /* Heading */
  .thank-section h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
    font-weight: 700;
    color: var(--color-text-dark-primary);
    line-height: 1.15;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0;
  }

  /* Lead Text */
  .thank-lead {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    color: var(--color-secondary);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
  }

  /* Description Text */
  .thank-description {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-dark-secondary);
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
  }

  /* Next Steps Text */
  .thank-next-steps {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-dark-muted);
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
  }

  /* Button Styles */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
  }

  .btn-primary {
    background: var(--color-primary);
    color: #000000;
  }

  .btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
  }

  .btn-primary:active {
    transform: translateY(0);
  }

  /* Animation */
  @keyframes scaleIn {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Tablet Responsive */
  @media (min-width: 768px) {
    .thank-section {
      padding: clamp(3rem, 8vw, 6rem) 0;
      min-height: auto;
    }

    .thank-content {
      gap: clamp(2rem, 5vw, 3rem);
      padding: clamp(3rem, 6vw, 4rem);
    }
  }

  /* Desktop Responsive */
  @media (min-width: 1024px) {
    .thank-section {
      padding: clamp(4rem, 10vw, 8rem) 0;
    }

    .thank-content {
      gap: clamp(2.5rem, 6vw, 3.5rem);
      padding: clamp(4rem, 8vw, 5rem);
    }
  }

  /* Large Desktop */
  @media (min-width: 1440px) {
    .thank-section {
      padding: 6rem 0;
    }

    .thank-content {
      gap: 3.5rem;
      padding: 5rem;
    }
  }

  /* Ultra Mobile Optimization */
  @media (max-width: 480px) {
    .thank-content {
      padding: clamp(1.5rem, 3vw, 2rem);
      gap: clamp(1.25rem, 3vw, 1.5rem);
    }

    .thank-icon {
      width: 70px;
      height: 70px;
    }

    .thank-icon i {
      font-size: 2.25rem;
    }
  }

  /* Accessibility */
  .btn:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
  }

  /* High Contrast Mode Support */
  @media (prefers-contrast: more) {
    .thank-icon {
      border: 2px solid var(--color-primary);
    }

    .btn-primary {
      border: 2px solid var(--color-primary-hover);
    }
  }

  /* Reduced Motion Support */
  @media (prefers-reduced-motion: reduce) {
    .thank-icon {
      animation: none;
      opacity: 1;
      transform: scale(1);
    }

    .btn {
      transition: background-color 0.2s ease;
    }

    .btn:hover {
      transform: none;
    }
  }

  /* Print Styles */
  @media print {
    .thank-section {
      background: white;
      color: #000;
    }

    .thank-icon {
      background: transparent;
    }

    .thank-section h1 {
      color: #000;
    }

    .thank-section p {
      color: #333;
    }
  }

/* 404 Page Styles */
/* Error page wrapper */
.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Error section */
.error-section {
  width: 100%;
  background: var(--color-bg-dark-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}

/* Decorative background elements */
.error-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: var(--color-bg-dark-secondary);
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.error-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: var(--color-bg-dark-tertiary);
  border-radius: 50%;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

/* Container and content */
.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  position: relative;
  z-index: 1;
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* Error visual section */
.error-visual {
  position: relative;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
  animation: float 3s ease-in-out infinite;
}

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

.error-icon {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--color-secondary);
  opacity: 0.8;
  animation: spin-slow 4s linear infinite;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Titles and text */
.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-message {
  background: rgba(16, 185, 129, 0.08);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.error-message p {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.25rem, 1.0625rem);
  color: var(--color-text-dark-muted);
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Action buttons */
.error-actions {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.25rem, 1.0625rem);
  font-weight: 600;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  word-wrap: break-word;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.4);
}

.btn-primary:active {
  transform: translateY(0px);
}

/* Suggestions section */
.error-suggestions {
  background: rgba(16, 185, 129, 0.05);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.suggestions-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw + 0.25rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.suggestions-list li {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.25rem, 1.0625rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.suggestions-list i {
  flex-shrink: 0;
  color: var(--color-secondary);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  width: clamp(1.25rem, 2vw, 1.5rem);
  height: clamp(1.25rem, 2vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tablet breakpoint */
@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
    min-height: 100vh;
  }

  .error-visual {
    margin-bottom: 2.5rem;
  }

  .error-code {
    animation: float 4s ease-in-out infinite;
  }

  .suggestions-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .suggestions-list li {
    justify-content: flex-start;
  }
}

/* Desktop breakpoint */
@media (min-width: 1024px) {
  .error-section {
    padding: 5rem 0;
  }

  .error-section::before {
    width: 600px;
    height: 600px;
    top: -30%;
    right: -5%;
  }

  .error-section::after {
    width: 500px;
    height: 500px;
    bottom: -20%;
    left: -5%;
  }

  .btn-primary {
    padding: 1rem 2.5rem;
  }

  .suggestions-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Large desktop breakpoint */
@media (min-width: 1440px) {
  .error-section {
    padding: 6rem 0;
  }

  .error-code {
    font-size: 8rem;
  }

  .error-title {
    font-size: 2.75rem;
  }

  .error-subtitle {
    font-size: 1.25rem;
  }
}

/* Accessibility and print */
@media (prefers-reduced-motion: reduce) {
  .error-code {
    animation: none;
  }

  .error-icon {
    animation: none;
  }

  .btn {
    transition: none;
  }
}

@media print {
  .error-section::before,
  .error-section::after {
    display: none;
  }
}