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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Modern Header */
header {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #fbbf24;
  padding: 1.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.company-tagline {
  color: #fbbf24;
  text-align: center;
  margin: 0.5rem 0 0 0;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Modern Navigation */
nav ul.main-nav {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1rem 0 0 0;
  padding: 0;
}

nav ul.main-nav > li {
  position: relative;
}

nav ul li a {
  color: #fbbf24;
  text-decoration: none;
  padding: 0.75rem 1rem;
  display: block;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

nav ul li a:hover {
  background: rgba(251, 191, 36, 0.1);
  transform: translateY(-2px);
  color: #f59e0b;
}

nav ul.submenu {
  display: none;
  position: absolute;
  background: white;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  top: 100%;
  left: 0;
  min-width: 250px;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

nav ul.submenu li a {
  color: #2d3748;
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  font-weight: 400;
  transition: all 0.2s ease;
}

nav ul.submenu li a:hover {
  background: #f7fafc;
  color: #2563eb;
  transform: none;
}

nav ul.dropdown:hover .submenu {
  display: block;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #fbbf24;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23fbbf24" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: #fbbf24;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  line-height: 1.6;
  color: #fbbf24;
}

.hero-company {
  font-size: 1rem;
  opacity: 0.8;
  max-width: 500px;
  margin: 1.5rem auto 0 auto;
  position: relative;
  z-index: 1;
  line-height: 1.5;
  color: rgba(251, 191, 36, 0.9);
  font-weight: 500;
}

/* Modern Cards */
.method-card, .framework-card, .value-item, .benefit-item, .step {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.method-card::before, .framework-card::before, .value-item::before, .benefit-item::before, .step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.method-card:hover, .framework-card:hover, .value-item:hover, .benefit-item:hover, .step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(251, 191, 36, 0.15);
}

/* Content Sections */
.content-section {
  margin: 3rem 0;
  background: #1a1a1a;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #fbbf24;
}

.content-section h3 {
  color: #fbbf24;
  margin-bottom: 2rem;
  font-size: 2.25rem;
  font-weight: 700;
  position: relative;
}

.content-section h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: 2px;
}

/* Grid Layouts */
.method-grid, .frameworks-grid, .values-grid, .benefits-grid, .implementation-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Typography */
h4 {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

h4 a {
  color: #fbbf24;
  text-decoration: none;
  transition: color 0.3s ease;
}

h4 a:hover {
  color: #fbbf24;
}

p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Content section paragraphs should be yellow on black background */
.content-section p {
  color: #fbbf24;
}

/* White background cards should have black text */
.method-card p, .framework-card p, .value-item p, .benefit-item p, .step p {
  color: #2d3748;
}

.method-card h4, .framework-card h4, .value-item h4, .benefit-item h4, .step h4 {
  color: #1a202c;
}

.method-card h4 a, .framework-card h4 a, .value-item h4 a, .benefit-item h4 a, .step h4 a {
  color: #1a202c;
}

.method-card h4 a:hover, .framework-card h4 a:hover, .value-item h4 a:hover, .benefit-item h4 a:hover, .step h4 a:hover {
  color: #fbbf24;
}

/* Video items should also have black text on white background */
.video-item p {
  color: #2d3748;
}

/* Lists */
ul, ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  color: #4a5568;
}

/* Read More Links */
.read-more {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.read-more:hover {
  color: #f59e0b;
  transform: translateX(5px);
}

.read-more::after {
  content: '→';
  transition: transform 0.3s ease;
}

.read-more:hover::after {
  transform: translateX(5px);
}

/* Comparison Table */
.comparison-table {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #fbbf24;
  font-weight: 600;
  font-size: 1.1rem;
}

.comparison-table tr:hover {
  background: #f7fafc;
}

/* Use Cases */
.use-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.use-case {
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid;
}

.use-case:first-child {
  background: linear-gradient(135deg, #c6f6d5 0%, #9ae6b4 100%);
  border-color: #48bb78;
}

.use-case:last-child {
  background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
  border-color: #f56565;
}

/* Call to Action */
.cta {
  text-align: center;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #fbbf24;
  padding: 4rem 2rem;
  border-radius: 20px;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23fbbf24" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.cta h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: #fbbf24;
}

.cta-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-company {
  color: rgba(251, 191, 36, 0.8);
  font-size: 0.95rem;
  margin: 1rem 0 0 0;
  font-weight: 500;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.cta p {
  color: #fbbf24 !important;
  font-size: 1.25rem !important;
  font-weight: 500;
  margin-bottom: 1.5rem;
  margin-top: 0;
  text-align: center;
  letter-spacing: 0.01em;
}

/* Modern Buttons */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #000000;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.btn-primary:hover, .btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.6);
  color: #181818 !important;
}

.btn-secondary {
  background: transparent;
  color: #fbbf24;
  border-color: #fbbf24;
}

.btn-secondary:hover, .btn-secondary:focus {
  background: #fbbf24;
  color: #181818 !important;
  transform: translateY(-2px);
}

/* FAQ Button Style */
.btn-faq {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2.3rem;
  font-size: 1.18rem;
  font-weight: 700;
  color: #fbbf24;
  background: transparent;
  border: 2.5px solid #fbbf24;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(251,191,36,0.13);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all 0.2s;
  position: relative;
}
.btn-faq .faq-icon {
  font-size: 1.3em;
  margin-right: 0.2em;
}
.btn-faq:hover, .btn-faq:focus {
  background: #fbbf24;
  color: #181818 !important;
  box-shadow: 0 8px 28px rgba(251,191,36,0.22);
  border-color: #f59e0b;
  text-decoration: none;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.video-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.video-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.video-item h4 {
  color: #1a202c;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #262626 100%);
  color: #fbbf24;
  padding: 4rem 0 2rem 0;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
  border-top: 3px solid #fbbf24;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fbbf24, transparent);
}

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

.footer-section h4 {
  color: #fbbf24;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: 1px;
}

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

.footer-section li {
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}

.footer-section li:hover {
  transform: translateX(5px);
}

.footer-section a {
  color: #fbbf24;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  display: inline-block;
  position: relative;
  font-weight: 500;
}

.footer-section a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #f59e0b;
  transition: width 0.3s ease;
}

.footer-section a:hover {
  color: #f59e0b;
}

.footer-section a:hover::before {
  width: 100%;
}

.footer-section p {
  color: #fbbf24;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 50%;
  color: #fbbf24;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

/* Newsletter Section */
.footer-newsletter {
  background: rgba(251, 191, 36, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  margin: 2rem 0;
  text-align: center;
}

.newsletter-content h4 {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.newsletter-content p {
  color: #fbbf24;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: #fbbf24;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
  color: #fbbf24;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #fbbf24;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.newsletter-form .btn-primary {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border: none;
  border-radius: 8px;
  color: #000000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #fbbf24;
  padding-top: 2rem;
  margin-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #fbbf24;
  margin: 0;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fbbf24;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: #f59e0b;
}

/* Breadcrumb */
.breadcrumb {
  margin: 1.5rem 0;
  color: #181818 !important;
  font-size: 0.95rem;
}

.breadcrumb a {
  color: #181818 !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #f59e0b;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  header h1 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .content-section {
    padding: 2rem 1.5rem;
  }
  
  .method-grid, .frameworks-grid, .values-grid, .benefits-grid, .implementation-steps {
    grid-template-columns: 1fr;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  /* Footer Mobile Styles */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-newsletter {
    padding: 2rem 1.5rem;
  }
  
  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }
  
  .newsletter-form input[type="email"] {
    min-width: 100%;
    margin-bottom: 1rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-links {
    justify-content: center;
    gap: 1.5rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  nav ul.main-nav {
    gap: 1rem;
  }
  
  nav ul.submenu {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
  }
  
  nav ul.submenu li a {
    color: #fbbf24;
    padding: 0.5rem 1rem;
  }
}

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

.content-section {
  animation: fadeIn 0.6s ease-out;
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Focus States */
button:focus, a:focus {
  outline: 2px solid #fbbf24;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .video-container {
    display: none;
  }
  
  .hero {
    background: white !important;
    color: black !important;
  }
}

/* Additional Sections */
.additional-methods {
  margin: 3rem 0;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.additional-methods h3 {
  color: #1a202c;
  margin-bottom: 2rem;
  font-size: 2.25rem;
  font-weight: 700;
  position: relative;
}

.additional-methods h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: 2px;
}

.method-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.method-link-group h4 {
  color: #1a202c;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.method-link-group ul {
  list-style: none;
  padding: 0;
}

.method-link-group li {
  margin-bottom: 0.8rem;
  padding: 0.75rem;
  background: #f7fafc;
  border-radius: 8px;
  border-left: 4px solid #fbbf24;
  transition: all 0.3s ease;
}

.method-link-group li:hover {
  background: #edf2f7;
  transform: translateX(5px);
}

.method-link-group a {
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.method-link-group a:hover {
  color: #fbbf24;
}

/* Benefits Section */
.benefits {
  margin: 3rem 0;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.benefits h3 {
  color: #1a202c;
  margin-bottom: 2rem;
  font-size: 2.25rem;
  font-weight: 700;
  position: relative;
  text-align: center;
}

.benefits h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: 2px;
}

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

/* Related Articles */
.related-articles {
  margin: 3rem 0;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.related-articles h3 {
  color: #1a202c;
  margin-bottom: 2rem;
  font-size: 2.25rem;
  font-weight: 700;
  position: relative;
}

.related-articles h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: 2px;
}

.article-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.article-links a {
  display: block;
  padding: 1.5rem;
  background: #f7fafc;
  color: #2d3748;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  font-weight: 500;
}

.article-links a:hover {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #fbbf24;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

/* Featured Methods */
.featured-methods {
  margin: 2rem 0;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.featured-methods h3 {
  color: #1a202c;
  margin-bottom: 2rem;
  font-size: 2.25rem;
  font-weight: 700;
  position: relative;
  text-align: center;
}

.featured-methods h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: 2px;
}

/* Comparison Section */
.comparison {
  margin: 3rem 0;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.comparison h3 {
  color: #1a202c;
  margin-bottom: 2rem;
  font-size: 2.25rem;
  font-weight: 700;
  position: relative;
  text-align: center;
}

.comparison h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: 2px;
}

/* Principles List */
.principles-list ol {
  padding-left: 0;
  counter-reset: principle-counter;
  list-style: none;
}

.principles-list li {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  border-left: 5px solid #fbbf24;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.principles-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.15);
  border-left-color: #f59e0b;
}

.principles-list li::before {
  counter-increment: principle-counter;
  content: counter(principle-counter);
  position: absolute;
  left: -20px;
  top: 1.5rem;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #000; /* Changed from yellow to black for contrast */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.principles-list li strong {
  color: #1a202c;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.principles-list li p {
  margin: 0;
  color: #4a5568;
}

/* Utility: Yellow text for black backgrounds */
.text-on-black, 
header, 
.hero, 
.cta, 
.comparison-table th, 
.article-links a:hover {
  color: #fbbf24 !important;
}

.hero h2, .hero-subtitle, .hero-company, .cta h3, .cta-company, .cta-buttons a, .comparison-table th, .article-links a:hover {
  color: #fbbf24 !important;
}

.hero a, .cta a, .comparison-table th a, .article-links a:hover {
  color: #fbbf24 !important;
  text-decoration: underline;
}

/* Only apply yellow text to paragraphs in sections with .dark class */
.content-section.dark p,
.hero.dark p,
footer.dark p {
  color: #fbbf24 !important;
}

/* Force black numbers in yellow circles for best practices/principles lists */
.principles-list li::before {
  color: #000 !important;
}

/* Super-specific override: force black numbers in yellow circles, guaranteed */
body .principles-list li::before {
  color: #000 !important;
}

/* Hamburger menu styles */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2001;
  margin-left: auto;
}
.menu-toggle .bar {
  width: 28px;
  height: 4px;
  background: #fbbf24;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  nav ul.main-nav {
    flex-direction: column;
    gap: 0;
    background: #181818;
    position: fixed;
    /* Adjust top value if your header height changes */
    top: 70px;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    z-index: 2000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    display: none;
    padding: 1.5rem 0;
    border-radius: 0 0 16px 16px;
    overflow-y: auto;
    max-height: calc(100vh - 70px);
  }
  #main-nav.open ul.main-nav {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
  nav ul.main-nav > li {
    width: 100%;
    text-align: center;
    margin: 0;
    border-bottom: 1px solid #222;
  }
  nav ul.main-nav > li:last-child {
    border-bottom: none;
  }
  nav ul li a {
    padding: 1.25rem 0;
    font-size: 1.2rem;
  }
  nav ul.submenu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    min-width: 0;
    background: #181818;
    margin: 0.5rem 0 0 0;
    padding: 0 0 0 0.5rem;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  nav ul.submenu.submenu-open {
    display: block;
    max-height: 500px;
    transition: max-height 0.3s ease;
  }
  nav ul.submenu li a {
    color: #fbbf24;
    background: transparent;
    padding: 1rem 1.5rem 1rem 1.5rem;
    font-size: 1.1rem;
    border-left: 4px solid #fbbf24;
    margin-left: 0.5rem;
    border-radius: 0 8px 8px 0;
    display: block;
    transition: background 0.2s, color 0.2s;
  }
  nav ul.submenu li a:hover {
    background: #222;
    color: #f59e0b;
  }
  .dropdown > a::after {
    content: '\25BC'; /* Downward caret */
    display: inline-block;
    margin-left: 0.5em;
    font-size: 0.8em;
    color: #fbbf24;
    transition: transform 0.3s;
  }
  .dropdown > a.active::after {
    transform: rotate(-180deg);
  }
}

@media (min-width: 901px) {
  nav ul.submenu {
    display: none;
    position: absolute;
    background: white;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    top: 100%;
    left: 0;
    min-width: 250px;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
  }
  nav ul.submenu.submenu-open {
    display: block;
  }
}

@media (max-width: 600px) {
  header h1 {
    font-size: 1.3rem;
  }
  .hero h2 {
    font-size: 1.3rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .container {
    padding: 0 0.5rem;
  }
}

/* --- Improved Footer Styles --- */
.footer-container {
  background: linear-gradient(135deg, #181818 0%, #232323 100%);
  color: #fbbf24;
  padding: 1.5rem 0 0.7rem 0;
  margin-top: 3rem;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.12);
  border-top: 2px solid #fbbf24;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.7rem;
}
.footer-logo {
  font-size: 1.7rem;
  margin-bottom: 0.1rem;
}
.footer-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.footer-tagline {
  font-size: 0.92rem;
  opacity: 0.8;
  margin-top: 0.1rem;
}
.footer-content {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 0.7rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-section {
  min-width: 120px;
  text-align: left;
}
.footer-section h4 {
  color: #fbbf24;
  font-size: 1.01rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  position: relative;
  padding-bottom: 0.2rem;
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.footer-section h4::after {
  content: '';
  display: block;
  margin: 0.25rem 0 0 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: 1px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.footer-section li {
  margin-bottom: 0.3rem;
}
.footer-section a {
  color: #fbbf24;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.18s, text-decoration 0.18s;
  opacity: 0.92;
  padding: 0.2rem 0;
  border-radius: 4px;
}
.footer-section a:hover, .footer-section a:focus {
  color: #f59e0b;
  text-decoration: underline;
  opacity: 1;
  background: rgba(251,191,36,0.07);
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}
.footer-social-icon {
  font-size: 1.1rem;
  color: #fbbf24;
  background: #232323;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  text-decoration: none;
  border: 1.5px solid #2d2d2d;
  box-shadow: 0 2px 8px rgba(251,191,36,0.07);
}
.footer-social-icon:hover, .footer-social-icon:focus {
  background: #fbbf24;
  color: #181818;
  box-shadow: 0 4px 16px rgba(251,191,36,0.18);
  border-color: #fbbf24;
}
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 0.7rem;
  padding-top: 0.5rem;
}
.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.footer-bottom p {
  color: #fbbf24;
  font-size: 0.93rem;
  margin: 0;
  opacity: 0.85;
}
.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: #fbbf24;
  font-size: 0.95rem;
  opacity: 0.85;
  text-decoration: none;
  transition: color 0.18s, opacity 0.18s, text-decoration 0.18s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #f59e0b;
  opacity: 1;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }
  .footer-section {
    min-width: 0;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .footer-container {
    padding: 0.7rem 0 0.3rem 0;
  }
  .footer-branding {
    margin-bottom: 0.3rem;
  }
  .footer-title {
    font-size: 0.98rem;
  }
  .footer-section h4 {
    font-size: 0.97rem;
  }
  .footer-section a {
    font-size: 0.95rem;
  }
  .footer-social-icon {
    font-size: 1rem;
    width: 26px;
    height: 26px;
  }
}

.content-section.dark h2,
.content-section.dark h3,
.content-section.dark ul,
.content-section.dark ol,
.content-section.dark li {
  color: #fbbf24 !important;
}

.cta.dark .cta-buttons .btn-primary,
.cta.dark .cta-buttons .btn-primary:hover,
.cta.dark .cta-buttons .btn-primary:focus {
  color: #181818 !important;
  -webkit-text-fill-color: #181818 !important;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
}
