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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #000000;
  color: #ffffff;
  overflow-x: hidden;
  padding-top: 80px; /* Account for fixed header */
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.header-title {
  display: flex;
  flex-direction: column;
}

.header-name {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.header-role {
  font-size: 14px;
  color: #888888;
}

.header-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #888888;
}

.availability-badge {
  background-color: #00ff00;
  color: #000000;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-section {
  margin-top: 100px;
  padding: 80px 40px;
  text-align: center;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-title strong {
  color: #00ff00;
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.btn-primary {
  background-color: #00ff00;
  color: #000000;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}

.social-link:hover {
  border-color: #00ff00;
}

.social-icon {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.company-tag {
  font-size: 14px;
  color: #888888;
  margin-top: 20px;
}

.company-tag a {
  color: #00ff00;
  text-decoration: none;
}

.video-container {
  margin: 40px auto;
  max-width: 1200px;
  border-radius: 16px;
  overflow: hidden;
}

.section {
  padding: 80px 40px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

.brands-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0.6;
}

.brand-logo {
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%) brightness(200%);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.project-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 30px;
}

.project-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.project-category {
  font-size: 14px;
  color: #888888;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.philosophy-list {
  list-style: none;
}

.philosophy-list li {
  font-size: 16px;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.philosophy-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00ff00;
  font-weight: bold;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.skill-tag {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.strength-card {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.strength-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.strength-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #cccccc;
}

.experience-timeline {
  max-width: 1000px;
  margin: 0 auto;
}

.experience-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.company-logo {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.experience-content {
  flex: 1;
}

.company-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.job-title {
  font-size: 16px;
  color: #00ff00;
  margin-bottom: 5px;
}

.job-period {
  font-size: 14px;
  color: #888888;
  margin-bottom: 15px;
}

.job-description {
  font-size: 15px;
  line-height: 1.6;
  color: #cccccc;
}

.tools-grid {
  display: flex;
  flex-wrap:wrap;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.tool-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.tool-name {
  font-size: 14px;
  text-align: center;
}

.about-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content {
  font-size: 18px;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 30px;
}

.about-content strong {
  color: #ffffff;
  font-weight: 600;
}

.about-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.3s;
}

.btn-secondary:hover {
  border-color: #00ff00;
}

.cta-section {
  background-color: rgba(0, 255, 0, 0.05);
  padding: 80px 40px;
  text-align: center;
  margin: 80px 0;
  border-top: 1px solid rgba(0, 255, 0, 0.2);
  border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 30px;
}

.footer {
  padding: 60px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.footer-info p {
  font-size: 14px;
  color: #888888;
}

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

.footer-contact p {
  font-size: 14px;
  margin-bottom: 5px;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
}

.copyright {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #888888;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.process-step {
  font-size: 14px;
  color: #888888;
  position: relative;
}

.process-step:not(:last-child):after {
  content: "→";
  position: absolute;
  right: -25px;
  color: #00ff00;
}

@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }

  .header-nav {
    display: none;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .section {
    padding: 60px 20px;
  }

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

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

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

/* ========================================
   UI ENHANCEMENTS - Animations & Effects
   Preserves original design language
   ======================================== */

/* Page Load Animation */
body {
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.page-loaded {
  opacity: 1;
}

/* ----------------------------------------
   1. SCROLL-TRIGGERED ANIMATIONS
   ---------------------------------------- */

.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-visible {
  opacity: 1;
}

.fade-up {
  transform: translateY(30px);
}

.fade-up.animate-visible {
  transform: translateY(0);
}

.fade-right {
  transform: translateX(-30px);
}

.fade-right.animate-visible {
  transform: translateX(0);
}

.fade-left {
  transform: translateX(30px);
}

.fade-left.animate-visible {
  transform: translateX(0);
}

.scale-in {
  transform: scale(0.9);
}

.scale-in.animate-visible {
  transform: scale(1);
}

/* Staggered child animations */
.stagger-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-child.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------
   2. ENHANCED BUTTON INTERACTIONS
   ---------------------------------------- */

.btn-primary,
.btn-secondary {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.magnetic-hover {
  transform: translate(var(--mouse-x, 0), var(--mouse-y, 0));
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translate(var(--mouse-x, 0), var(--mouse-y, 0)) translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

.btn-secondary:hover {
  transform: translate(var(--mouse-x, 0), var(--mouse-y, 0)) translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 0, 0.1);
  background: rgba(0, 255, 0, 0.05);
}

/* ----------------------------------------
   3. SOCIAL LINK GLOW EFFECT
   ---------------------------------------- */

.social-link.glow-hover {
  transition: all 0.3s ease;
}

.social-link.glow-hover:hover {
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
  transform: translateY(-3px);
}

.social-link.glow-hover:hover .social-icon {
  fill: #00ff00;
}

.social-icon {
  transition: fill 0.3s ease;
}

/* ----------------------------------------
   4. CARD TILT & HOVER EFFECTS
   ---------------------------------------- */

.tilt-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.tilt-hover:hover {
  transform: rotateX(var(--rotate-x, 0)) rotateY(var(--rotate-y, 0)) translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Strength card subtle glow on hover */
.strength-card {
  transition: all 0.3s ease;
}

.strength-card:hover {
  border-color: rgba(0, 255, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Experience item hover */
.experience-item {
  transition: all 0.3s ease;
}

.experience-item:hover {
  border-color: rgba(0, 255, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
}

/* ----------------------------------------
   5. PROJECT CARDS - STACKED & ENHANCED
   ---------------------------------------- */

.projects-grid.stacked-cards-enabled {
  perspective: 1000px;
}

.project-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.project-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
}

.project-card:hover .project-title {
  color: #00ff00;
}

.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border: 1px solid rgba(0, 255, 0, 0.5);
}

.project-card:hover::after {
  opacity: 1;
}

.project-title,
.project-category {
  transition: color 0.3s ease;
}

/* Click indicator */
.project-card::before {
  content: 'Click to view';
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: #00ff00;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 5;
}

.project-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------
   6. GALLERY MODAL
   ---------------------------------------- */

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}

.gallery-modal.closing {
  opacity: 0;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.modal-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.modal-content {
  max-width: 900px;
  width: 100%;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease, opacity 0.15s ease;
}

.gallery-modal.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-content.transitioning {
  opacity: 0.5;
}

.modal-image {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.modal-info {
  text-align: center;
  padding: 30px 0;
}

.modal-title {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.modal-category {
  font-size: 16px;
  color: #00ff00;
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  border-color: #00ff00;
  background: rgba(0, 255, 0, 0.1);
  transform: rotate(90deg);
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-prev {
  left: 30px;
}

.modal-next {
  right: 30px;
}

.modal-nav:hover {
  border-color: #00ff00;
  background: rgba(0, 255, 0, 0.1);
}

.modal-prev:hover {
  transform: translateY(-50%) translateX(-5px);
}

.modal-next:hover {
  transform: translateY(-50%) translateX(5px);
}

/* ----------------------------------------
   7. TOOL ITEMS BOUNCE
   ---------------------------------------- */

.tool-item.bounce-hover {
  transition: transform 0.3s ease;
}

.tool-item.bounce-hover:hover {
  transform: translateY(-8px);
}

.tool-item.bounce-hover:hover .tool-icon {
  filter: drop-shadow(0 10px 20px rgba(0, 255, 0, 0.2));
}

.tool-icon {
  transition: filter 0.3s ease;
}

/* ----------------------------------------
   8. SKILL TAGS ENHANCED
   ---------------------------------------- */

.skill-tag {
  cursor: default;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  border-color: #00ff00;
  background-color: rgba(0, 255, 0, 0.1);
  transform: translateY(-3px);
}

/* ----------------------------------------
   9. HEADER ENHANCEMENTS
   ---------------------------------------- */

.header {
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.header.header-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 0, 0, 0.95);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00ff00;
  transition: width 0.3s ease;
}

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

/* ----------------------------------------
   10. AVAILABILITY BADGE PULSE
   ---------------------------------------- */

.availability-badge.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(0, 255, 0, 0);
  }
}

/* ----------------------------------------
   11. HERO PARALLAX
   ---------------------------------------- */

.hero-section {
  transform: translateY(var(--parallax-offset, 0));
}

.hero-title.typing-complete strong::after {
  content: '';
  display: inline-block;
  width: 3px;
  height: 1em;
  background: #00ff00;
  margin-left: 5px;
  animation: blink 1s infinite;
  vertical-align: text-bottom;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

/* ----------------------------------------
   12. BRAND LOGOS ENHANCED
   ---------------------------------------- */

.brand-logo {
  transition: all 0.3s ease;
}

.brand-logo:hover {
  filter: grayscale(0%) brightness(100%);
  opacity: 1;
  transform: scale(1.1);
}

/* ----------------------------------------
   13. PROCESS STEPS ENHANCED
   ---------------------------------------- */

.process-step {
  transition: all 0.3s ease;
  cursor: default;
}

.process-step:hover {
  color: #00ff00;
  transform: translateY(-3px);
}

/* ----------------------------------------
   14. CTA SECTION ENHANCED
   ---------------------------------------- */

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(0, 255, 0, 0.05) 0%, transparent 70%);
  animation: ctaGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaGlow {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(5%, 5%);
  }
}

/* ----------------------------------------
   15. FOOTER ENHANCED
   ---------------------------------------- */

.footer-left .logo {
  transition: transform 0.3s ease;
}

.footer-left .logo:hover {
  transform: scale(1.1) rotate(5deg);
}

/* ----------------------------------------
   16. MOBILE RESPONSIVE ENHANCEMENTS
   ---------------------------------------- */

@media (max-width: 768px) {

  /* Reduce animation intensity on mobile */
  .fade-up {
    transform: translateY(20px);
  }

  .fade-left,
  .fade-right {
    transform: translateY(20px);
  }

  .project-card:hover {
    transform: translateY(-6px);
  }

  .project-card::before {
    display: none;
  }

  /* Modal mobile adjustments */
  .modal-container {
    padding: 20px;
  }

  .modal-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .modal-nav {
    width: 40px;
    height: 40px;
  }

  .modal-prev {
    left: 10px;
  }

  .modal-next {
    right: 10px;
  }

  .modal-title {
    font-size: 22px;
  }

  /* Disable tilt on mobile (performance) */
  .tilt-hover:hover {
    transform: translateY(-5px);
  }

  /* Reduce parallax on mobile */
  .hero-section {
    transform: none !important;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-section {
    transform: none !important;
  }
}
/* Spacer blocks */
.spacer {
  width: 100%;
}

.spacer-small {
  height: 20px;
}

.spacer-medium {
  height: 40px;
}

.spacer-large {
  height: 80px;
}

.spacer-xlarge {
  height: 120px;
}

/* Rich text block */
.rich-text-block {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 40px;
  color: #ffffff;
}

.rich-text-block h2,
.rich-text-block h3,
.rich-text-block h4 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.rich-text-block p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.rich-text-block ul,
.rich-text-block ol {
  margin-left: 30px;
  margin-bottom: 15px;
}

.rich-text-block a {
  color: #00ff00;
  text-decoration: none;
}

.rich-text-block a:hover {
  text-decoration: underline;
}


/* About block content styling */
.about-content {
  color: #ffffff;
  line-height: 1.8;
}

.about-paragraph,
.about-html {
  margin-bottom: 20px;
}

.about-paragraph p,
.about-html p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
  color: #cccccc;
}

.about-paragraph strong,
.about-html strong {
  color: #ffffff;
  font-weight: 600;
}

.about-heading {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 20px;
}

