/* Main Styles for Prabogo Website */

:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --light-bg: #f8f9fa;
  --dark-bg: #343a40;
  --text-color: #333;
  --text-light: #f8f9fa;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-code: 'Fira Code', 'Courier New', Courier, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
}

/* Header Styles */
.header {
  margin-bottom: 0;
}

/* Main content spacing */
.docs {
  padding-top: 30px; /* Add extra padding to ensure content isn't hidden under the navbar */
}

/* Bootstrap Navbar Customization */
.custom-navbar {
  background-color: var(--primary-color);
  padding: 0.75rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: white !important;
}

.navbar-brand img {
  height: 40px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.nav-link:hover, .nav-link:focus {
  color: white !important;
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
  color: white !important;
  background-color: rgba(52, 152, 219, 0.2);
}

/* Custom navbar toggler */
.navbar-toggler {
  border: none;
  padding: 0.4rem;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Responsive adjustment for collapsed menu */
@media (max-width: 767.98px) {
  .custom-navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-brand img {
    height: 35px;
  }
  
  .navbar-collapse {
    background-color: var(--primary-color);
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-link {
    padding: 0.5rem 1rem !important;
    border-radius: 0.25rem;
  }
}

/* Mobile Navigation Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 30;
  margin-left: 15px;
}

.mobile-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 4px auto;
  background-color: var(--text-light);
  transition: all 0.3s ease;
  border-radius: 1px;
}

/* Menu open body state */
body.menu-open {
  overflow: hidden;
  position: fixed; /* Prevent body scrolling when menu is open */
  width: 100%;
  height: 100%;
}

/* Handle landscape orientation */
@media screen and (max-height: 480px) and (orientation: landscape) {
  .nav-links {
    padding: 1rem 0;
    overflow-y: auto;
  }
  
  .nav-links li {
    margin: 0.5rem 0;
  }
  
  .nav-links a {
    padding: 0.35rem 1rem;
    min-height: 36px;
    line-height: 36px;
  }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  /* Navbar layout */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  /* Mobile toggle button */
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 30;
    margin-left: auto;
    padding: 8px;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    -webkit-tap-highlight-color: transparent; /* Prevent tap highlight on mobile */
  }
  
  /* Add a subtle hover effect */
  .mobile-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  /* Navigation links in mobile view */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 80%;
    height: 100vh;
    background-color: var(--primary-color);
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 20%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 20px 0;
    transition: all 0.3s ease-in-out;
    z-index: 20;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scrollbar-width: thin; /* Firefox scrollbar */
    scrollbar-color: var(--secondary-color) rgba(0,0,0,0.2); /* Firefox scrollbar colors */
  }
  
  /* Custom scrollbar for WebKit browsers */
  .nav-links::-webkit-scrollbar {
    width: 4px;
  }
  
  .nav-links::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.2);
  }
  
  .nav-links::-webkit-scrollbar-thumb {
    background-color: var(--secondary-color);
    border-radius: 2px;
  }
  
  /* Mobile menu header */
  .nav-links::before {
    content: 'Menu';
    display: block;
    width: 100%;
    padding: 20px 25px;
    font-weight: 600;
    font-size: 18px;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 15px;
  }
  
  /* Mobile menu backdrop overlay */
  .nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 15;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  /* Show backdrop when menu is open */
  body.menu-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }
  
  /* Active state for mobile menu */
  .nav-links.active {
    right: 0;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  }
  
  /* Menu items in mobile view */
  .nav-links li {
    margin: 0;
    width: 100%;
    text-align: left;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: 0s;
  }
  
  /* Menu items animations when active */
  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }
  
  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
  
  /* Mobile menu links */
  .nav-links a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    min-height: 50px;
    line-height: 30px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
  }
  
  /* Active/hover state for mobile links */
  .nav-links a:hover, 
  .nav-links a.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--secondary-color);
  }
  
  /* Current page indicator in mobile menu */
  .nav-links a.current-page {
    border-left: 3px solid var(--accent-color);
    background-color: rgba(231, 76, 60, 0.1);
  }
  
  /* Hamburger icon animation */
  .mobile-toggle .bar {
    transition: all 0.3s ease;
    width: 22px;
  }
  
  .mobile-toggle.active {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  /* Adjust the header for mobile */

  .logo {
    padding: 0.5rem 0;
  }
  
  .logo img {
    height: 35px;
  }
  
  .logo span {
    font-size: 1.3rem;
  }
  
  /* Additional responsive adjustments */
  .hero {
    padding-top: 7rem;
  }
  
  .hero h1 {
    font-size: 2.3rem;
  }
  
  .hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    padding: 0 0.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .feature-card .feature-icon {
    margin-bottom: 0.75rem;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }
  
  .step-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .step-card h3 {
    font-size: 1.3rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-column {
    margin-bottom: 1.5rem;
  }
  
  /* Documentation pages responsive fixes */
  .docs-container {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .content {
    padding: 1rem;
  }
}

/* Extra small device specific adjustments */
@media screen and (max-width: 576px) {
  .hero {
    padding-top: 7rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .custom-navbar {
    padding: 0.3rem 0;
  }
  
  .navbar-brand img {
    height: 30px;
  }
  
  .navbar-brand span {
    font-size: 1.2rem;
  }
}

/* Smallest screens (iPhone SE, etc) */
@media screen and (max-width: 375px) {
  .hero {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  padding: 9rem 0 5rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  margin: 0.5rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #c0392b;
}

.cta-button.secondary {
  background-color: transparent;
  border: 2px solid white;
}

.cta-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Features Section */
.features {
  padding: 5rem 0;
}

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

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

.feature-card {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  background-color: rgba(52, 152, 219, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background-color: rgba(52, 152, 219, 0.2);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Documentation Styles */
.docs {
  padding: 5rem 0;
  background-color: var(--light-bg);
}

.docs-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1rem;
}

.sidebar {
  flex: 0 0 250px;
  position: sticky;
  top: calc(var(--navbar-shrink-desktop) + 20px); /* Account for navbar height */
  height: calc(100vh - var(--navbar-shrink-desktop) - 40px);
  overflow-y: auto;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: top 0.3s ease;
  margin-bottom: 50px !important;
}

.content {
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

/* Make sidebar fixed on larger screens and scrollable on mobile */
@media (max-width: 991.98px) {
  .sidebar {
    flex: 0 0 100%;
    position: relative;
    top: 0;
    height: auto;
    max-height: none;
    margin-bottom: 2rem;
  }
  
  .docs-container {
    flex-direction: column;
  }
  
  .docs {
    padding-top: 0 !important;
  }
}

@media (max-width: 767.98px) {  
  .docs {
    padding-top: 0 !important;
  }
}

/* Code block styling */
.code-block {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 1rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  font-family: var(--font-code);
  overflow-x: auto;
  font-size: 0.9rem;
  max-width: 100%;
  position: relative;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS devices */
  scrollbar-width: thin; /* Firefox scrollbar */
  scrollbar-color: var(--secondary-color) var(--dark-bg); /* Firefox scrollbar colors */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-left: 4px solid var(--secondary-color);
}

.code-block::-webkit-scrollbar {
  height: 6px; /* Horizontal scrollbar height */
}

.code-block::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  border-radius: 3px;
}

.code-block::-webkit-scrollbar-track {
  background-color: var(--dark-bg);
}

.code-block pre {
  margin: 0;
  white-space: pre;
  width: fit-content;
  min-width: 100%;
  padding-top: 1.5rem; /* Space for copy button and language badge */
}

.code-block code {
  display: block;
  font-size: 0.85rem;
  line-height: 1.7;
}

.copy-code-button {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem 0.75rem;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 1;
}

.copy-code-button:hover {
  background-color: #2980b9;
  transform: translateY(-1px);
}

.copy-code-button:active {
  transform: translateY(1px);
}

.code-block.copied .copy-code-button::after {
  content: ' ✓';
}

.language-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.1rem 0.5rem;
  background-color: rgba(0,0,0,0.3);
  color: #ccc;
  border-radius: 3px;
  font-size: 0.7rem;
  font-family: var(--font-main);
  text-transform: uppercase;
}

/* Line numbers for code */
.code-block.line-numbers {
  counter-reset: line;
}

.code-block.line-numbers code {
  counter-increment: line;
}

.code-block.line-numbers code::before {
  content: counter(line);
  display: inline-block;
  width: 1.5em;
  margin-right: 1em;
  padding-right: 0.5em;
  color: #666;
  border-right: 1px solid #444;
  text-align: right;
}

/* Installation Section */
.installation-steps {
  max-width: 800px;
  margin: 0 auto;
}

.step-card {
  background-color: white;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-card h3 {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.step-card h3 span {
  background-color: var(--secondary-color);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 3.5rem 0 1.5rem;
}

.footer-content {
  margin-bottom: 1.5rem;
}

.footer-column h3 {
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
  color: white;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 30px;
  background-color: var(--secondary-color);
}

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

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: #c5c5c5;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column a:hover {
  color: white;
  transform: translateX(3px);
}

.footer-column a i {
  opacity: 0.6;
  margin-left: 4px;
  font-size: 0.7rem;
}

.footer-logo {
  opacity: 0.9;
}

.footer-logo img {
  filter: brightness(1.1) drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.footer-logo p {
  color: #c5c5c5;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1rem 0;
  opacity: 0.5;
}

.copyright {
  text-align: center;
  font-size: 0.85rem;
  color: #9a9a9a;
}

@media screen and (max-width: 767px) {
  /* Footer mobile optimizations */
  .footer-logo img {
    height: 40px;
    margin-bottom: 0.5rem;
  }
  
  .footer-logo p {
    font-size: 0.8rem;
  }
  
  .footer-column h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  
  .footer-column ul {
    margin-bottom: 1.5rem;
  }
  
  .footer-column li {
    margin-bottom: 0.5rem;
  }
  
  .copyright {
    font-size: 0.75rem;
    padding: 0.75rem 0;
  }
}

@media screen and (max-width: 767.98px) {
  .docs {
    padding-top: 4rem;
  }
}

@media screen and (max-width: 576px) {
  .docs {
    padding-top: 3.5rem;
  }
}

/* Principles section styling */
.principles-container .principle-card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 8px;
}

.principles-container .principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.principle-icon {
  color: var(--secondary-color);
  background: rgba(52, 152, 219, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.principle-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.principle-desc {
  color: #555;
}

/* Benefits section styling */
.benefits-container .benefit-card {
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.benefits-container .benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.benefits-container .benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.benefit-icon {
  color: var(--secondary-color);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

.benefit-desc {
  color: #555;
}

/* Lead text */
.lead {
  font-size: 1.1rem;
  color: #555;
}

/* Sidebar Styles */
.sidebar-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--primary-color);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary-color);
}

.sidebar-nav {
  list-style: none;
  padding-left: 0;
}

.sidebar-nav li {
  margin-bottom: 0.75rem;
}

.sidebar-link {
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
}

.sidebar-link:hover,
.sidebar-link.active {
  color: var(--secondary-color);
  background-color: rgba(52, 152, 219, 0.1);
  transform: translateX(3px);
}

/* Program Page Specific Styles */
.price-tag {
  background: linear-gradient(135deg, var(--secondary-color), #2980b9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin: 1rem 0;
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.process-step {
  text-align: center;
  max-width: 200px;
}

.process-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), #2980b9);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 auto 1rem auto;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.process-arrow {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.process-step h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .process-arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
  }
  
  .process-flow {
    flex-direction: column;
  }
}

/* Elite Quote Styles */
.elite-quote {
  border-left: 4px solid var(--secondary-color);
  padding: 2rem 2rem 2rem 2.5rem;
  margin: 2rem 0;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--primary-color);
  background: linear-gradient(90deg, rgba(52, 152, 219, 0.05) 0%, transparent 100%);
  position: relative;
}

.elite-quote::before {
  content: '"';
  position: absolute;
  left: 0.5rem;
  top: -0.5rem;
  font-size: 3rem;
  color: var(--secondary-color);
  opacity: 0.2;
  font-weight: bold;
}

.elite-quote p {
  margin: 0;
  letter-spacing: 0.3px;
  font-weight: 500;
}
