/* ==========================================
   SERVICE PAGE STYLES
   ========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #2C3E50; background: #fff; overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.3; }

:root {
  --green: #6DBE8A; --green-dark: #4A9D6F; --green-light: rgba(109,190,138,0.1);
  --bg-light: #F5F5F0; --dark: #2C3E50; --mid: #5A6C7D;
  --orange: #FF914D; --white: #fff;
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
  --radius: 16px; --transition: 0.3s ease;
  --header-h: 72px;
}

/* ---- HEADER ---- */
.sp-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h); background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px); box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: flex; align-items: center;
}
.sp-header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sp-brand { display: flex; align-items: center; gap: 10px; }
.sp-brand-logo { height: 42px; width: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green-light); }
.sp-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.sp-brand-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--dark); }
.sp-brand-sub { font-size: 11px; color: var(--green); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.sp-nav { display: flex; align-items: center; gap: 8px; }
.sp-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; color: var(--mid);
  padding: 8px 16px; border-radius: 20px; border: 1px solid #e0e0e0;
  transition: all var(--transition);
}
.sp-back:hover { color: var(--green); border-color: var(--green); background: var(--green-light); }
.sp-book-btn {
  background: var(--orange); color: white; font-size: 14px; font-weight: 600;
  padding: 10px 22px; border-radius: 22px; transition: all var(--transition);
  animation: pulse 2s ease-in-out infinite;
}
.sp-book-btn:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 6px 20px rgba(255,145,77,0.4); animation: none; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,145,77,0.4); } 50% { box-shadow: 0 0 0 8px rgba(255,145,77,0); } }

/* ---- HERO ---- */
.sp-hero {
  min-height: 70vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: var(--header-h);
}
.sp-hero-img {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.sp-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(26,58,42,0.88) 0%, rgba(44,62,80,0.75) 100%);
}
.sp-hero-content {
  position: relative; z-index: 2; max-width: 1200px;
  margin: 0 auto; padding: 60px 24px; width: 100%;
}
.sp-hero-badge {
  display: inline-block; background: var(--green); color: white;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px;
}
.sp-hero-title {
  font-size: clamp(32px, 5vw, 58px); color: white; margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3); max-width: 700px;
}
.sp-hero-sub {
  font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,0.88);
  max-width: 580px; line-height: 1.8; font-weight: 300; margin-bottom: 36px;
}
.sp-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.sp-btn-primary {
  background: var(--orange); color: white; font-size: 16px; font-weight: 600;
  padding: 14px 36px; border-radius: 28px; transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.sp-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(255,145,77,0.4); }
.sp-btn-secondary {
  background: transparent; color: white; font-size: 16px; font-weight: 600;
  padding: 14px 36px; border-radius: 28px; border: 2px solid rgba(255,255,255,0.6);
  transition: all var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.sp-btn-secondary:hover { background: white; color: var(--dark); border-color: white; }
.sp-hero-stats {
  display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap;
}
.sp-stat { text-align: left; }
.sp-stat-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--green); display: block; }
.sp-stat-label { font-size: 13px; color: rgba(255,255,255,0.75); }

/* ---- CONTAINER ---- */
.sp-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sp-section { padding: 80px 0; }
.sp-section-alt { background: var(--bg-light); }

/* ---- SECTION HEADER ---- */
.sp-section-header { text-align: center; margin-bottom: 56px; }
.sp-pretitle { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--green); margin-bottom: 10px; }
.sp-title { font-size: clamp(26px, 4vw, 40px); color: var(--dark); margin-bottom: 14px; }
.sp-subtitle { font-size: 16px; color: var(--mid); max-width: 620px; margin: 0 auto; line-height: 1.7; }

/* ---- BENEFITS GRID ---- */
.sp-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sp-benefit-card {
  background: white; border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(109,190,138,0.1);
  transition: all var(--transition); text-align: center;
}
.sp-benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.sp-benefit-icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.sp-benefit-icon.sp-icon-circle {
  background: linear-gradient(135deg, var(--green-light) 0%, rgba(109,190,138,0.25) 100%);
  border: 2px solid rgba(109,190,138,0.3);
  position: relative;
}
.sp-benefit-icon.sp-icon-circle::after {
  content: '';
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--green); opacity: 0.7;
  display: block;
}
.sp-schedule-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-light); margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
}
.sp-schedule-icon.sp-icon-dot {
  background: linear-gradient(135deg, var(--green-light), rgba(109,190,138,0.3));
  border: 2px solid rgba(109,190,138,0.3);
  position: relative;
}
.sp-schedule-icon.sp-icon-dot::after {
  content: '';
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--green); opacity: 0.8; display: block;
}
.sp-benefit-title { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.sp-benefit-desc { font-size: 14px; color: var(--mid); line-height: 1.7; }

/* ---- WHO IS IT FOR ---- */
.sp-who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.sp-who-img {
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; position: relative;
}
.sp-who-img img { width: 100%; height: 100%; object-fit: cover; }
.sp-who-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.sp-who-item { display: flex; align-items: flex-start; gap: 14px; }
.sp-who-check {
  width: 26px; height: 26px; min-width: 26px; border-radius: 50%;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}
.sp-who-item p { font-size: 15px; color: var(--dark); line-height: 1.6; }
.sp-who-item strong { display: block; font-weight: 600; }
.sp-who-item span { font-size: 13px; color: var(--mid); }

/* ---- WHAT YOU LEARN ---- */
.sp-learn-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.sp-learn-item {
  background: white; border-radius: var(--radius); padding: 20px 22px;
  display: flex; align-items: flex-start; gap: 14px;
  box-shadow: var(--shadow-sm); border-left: 4px solid var(--green);
  transition: all var(--transition);
}
.sp-learn-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.sp-learn-num {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
  color: var(--green); min-width: 32px; line-height: 1;
}
.sp-learn-text strong { display: block; font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.sp-learn-text span { font-size: 13px; color: var(--mid); line-height: 1.5; }

/* ---- SCHEDULE ---- */
.sp-schedule-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sp-schedule-card {
  background: white; border-radius: var(--radius); padding: 28px 24px;
  text-align: center; box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--green); transition: all var(--transition);
}
.sp-schedule-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.sp-schedule-label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--green); margin-bottom: 6px; }
.sp-schedule-value { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--dark); font-weight: 600; }
.sp-schedule-sub { font-size: 13px; color: var(--mid); margin-top: 4px; }

/* ---- FAQ ---- */
.sp-faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.sp-faq-item { border-radius: var(--radius); overflow: hidden; }
.sp-faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; background: var(--bg-light); border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius); cursor: pointer; text-align: left;
  transition: all var(--transition); gap: 12px;
}
.sp-faq-q:hover { border-color: var(--green); background: rgba(109,190,138,0.05); }
.sp-faq-q[aria-expanded="true"] { background: white; border-color: var(--green); border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.sp-faq-q span:first-child { font-size: 15px; font-weight: 600; color: var(--dark); flex: 1; }
.sp-faq-icon { font-size: 20px; color: var(--green); transition: transform var(--transition); flex-shrink: 0; }
.sp-faq-q[aria-expanded="true"] .sp-faq-icon { transform: rotate(45deg); }
.sp-faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease;
  background: white; border: 1px solid var(--green); border-top: none;
  border-bottom-left-radius: var(--radius); border-bottom-right-radius: var(--radius);
}
.sp-faq-a.open { max-height: 200px; }
.sp-faq-a p { padding: 16px 24px; font-size: 14px; color: var(--mid); line-height: 1.8; }

/* ---- CTA BANNER ---- */
.sp-cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 72px 24px; text-align: center; position: relative; overflow: hidden;
}
.sp-cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.sp-cta-banner-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.sp-cta-banner h2 { font-size: clamp(26px, 4vw, 42px); color: white; margin-bottom: 16px; }
.sp-cta-banner p { font-size: 17px; color: rgba(255,255,255,0.88); line-height: 1.7; margin-bottom: 36px; font-weight: 300; }
.sp-cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.sp-cta-call {
  background: white; color: var(--dark); font-size: 16px; font-weight: 700;
  padding: 14px 36px; border-radius: 28px; transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.sp-cta-call:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.sp-cta-book {
  background: var(--orange); color: white; font-size: 16px; font-weight: 700;
  padding: 14px 36px; border-radius: 28px; transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.sp-cta-book:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(255,145,77,0.4); }

/* ---- FOOTER ---- */
.sp-footer {
  background: #1A252F; color: #b0b0b0; padding: 32px 24px; text-align: center;
}
.sp-footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.sp-footer-brand { display: flex; align-items: center; gap: 10px; }
.sp-footer-logo { height: 36px; width: 36px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green); }
.sp-footer-name { font-family: 'Playfair Display', serif; font-size: 16px; color: white; }
.sp-footer p { font-size: 13px; }
.sp-footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.sp-footer-links a { font-size: 13px; color: #b0b0b0; transition: color var(--transition); }
.sp-footer-links a:hover { color: var(--green); }

/* ---- MODAL ---- */
.sp-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px); z-index: 2000; display: flex;
  align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.sp-modal-overlay.open { opacity: 1; pointer-events: all; }
.sp-modal {
  background: white; border-radius: 20px; padding: 44px 40px;
  max-width: 520px; width: 100%; position: relative;
  transform: scale(0.9); transition: transform 0.4s ease;
  max-height: 90vh; overflow-y: auto;
}
.sp-modal-overlay.open .sp-modal { transform: scale(1); }
.sp-modal-close { position: absolute; top: 16px; right: 18px; font-size: 20px; color: var(--mid); padding: 6px; }
.sp-modal-close:hover { color: var(--dark); }
.sp-modal h2 { font-size: 26px; color: var(--dark); margin-bottom: 6px; }
.sp-modal p { font-size: 14px; color: var(--mid); margin-bottom: 24px; }
.sp-form-group { margin-bottom: 18px; }
.sp-form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--dark); margin-bottom: 6px; }
.sp-form-group input, .sp-form-group select {
  width: 100%; height: 48px; padding: 0 16px;
  border: 2px solid #e0e0e0; border-radius: 10px;
  font-size: 14px; color: var(--dark); outline: none;
  transition: border-color var(--transition); font-family: inherit;
}
.sp-form-group input:focus, .sp-form-group select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(109,190,138,0.1); }
.sp-form-submit {
  width: 100%; height: 50px; background: var(--green); color: white;
  font-size: 16px; font-weight: 600; border-radius: 10px;
  transition: all var(--transition); margin-top: 4px;
}
.sp-form-submit:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ---- WHATSAPP ---- */
.sp-whatsapp {
  position: fixed; bottom: 28px; right: 22px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: white; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition); animation: waPulse 2s ease-in-out infinite;
}
.sp-whatsapp svg { width: 28px; height: 28px; }
.sp-whatsapp:hover { transform: scale(1.1); animation: none; }
@keyframes waPulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); } }

/* ---- RESPONSIVE ---- */
@media (max-width: 1023px) {
  .sp-benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .sp-schedule-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .sp-who-grid { grid-template-columns: 1fr; gap: 32px; }
  .sp-learn-grid { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 767px) {
  :root { --header-h: 60px; }
  .sp-header-inner { padding: 0 16px; }
  .sp-brand-name { font-size: 16px; }
  .sp-brand-sub { display: none; }
  .sp-brand-logo { height: 36px; width: 36px; }
  .sp-back { font-size: 13px; padding: 7px 12px; }
  .sp-book-btn { font-size: 13px; padding: 9px 16px; }
  .sp-hero { min-height: 55vh; }
  .sp-hero-content { padding: 36px 16px; }
  .sp-hero-title { font-size: clamp(24px, 6vw, 40px); margin-bottom: 14px; }
  .sp-hero-sub { font-size: 14px; margin-bottom: 24px; }
  .sp-hero-badge { font-size: 11px; padding: 5px 12px; margin-bottom: 14px; }
  .sp-hero-btns { flex-direction: column; gap: 12px; }
  .sp-btn-primary, .sp-btn-secondary { width: 100%; max-width: 260px; justify-content: center; font-size: 15px; padding: 13px 20px; }
  .sp-hero-stats { gap: 20px; margin-top: 28px; }
  .sp-stat-num { font-size: 26px; }
  .sp-stat-label { font-size: 12px; }
  .sp-section { padding: 48px 0; }
  .sp-container { padding: 0 16px; }
  .sp-section-header { margin-bottom: 36px; }
  .sp-title { font-size: clamp(22px, 5vw, 34px); }
  .sp-subtitle { font-size: 14px; }
  .sp-benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .sp-benefit-card { padding: 24px 18px; }
  .sp-benefit-icon { width: 52px; height: 52px; margin-bottom: 14px; }
  .sp-benefit-icon svg { width: 26px; height: 26px; }
  .sp-benefit-title { font-size: 15px; }
  .sp-benefit-desc { font-size: 13px; }
  .sp-who-grid { grid-template-columns: 1fr; gap: 28px; }
  .sp-who-img { aspect-ratio: 16/9; }
  .sp-who-title { font-size: clamp(20px, 5vw, 30px); }
  .sp-who-item p { font-size: 14px; }
  .sp-learn-grid { grid-template-columns: 1fr; gap: 12px; }
  .sp-learn-item { padding: 16px 18px; }
  .sp-learn-num { font-size: 18px; }
  .sp-learn-text strong { font-size: 14px; }
  .sp-learn-text span { font-size: 12px; }
  .sp-schedule-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sp-schedule-card { padding: 20px 16px; }
  .sp-schedule-value { font-size: 17px; }
  .sp-faq-list { padding: 0; }
  .sp-faq-q { padding: 16px 18px; }
  .sp-faq-q span:first-child { font-size: 14px; }
  .sp-faq-a p { padding: 14px 18px; font-size: 14px; }
  .sp-cta-banner { padding: 52px 16px; }
  .sp-cta-banner h2 { font-size: clamp(22px, 5vw, 34px); }
  .sp-cta-banner p { font-size: 15px; margin-bottom: 28px; }
  .sp-cta-banner-btns { flex-direction: column; align-items: center; gap: 12px; }
  .sp-cta-call, .sp-cta-book { width: 100%; max-width: 260px; justify-content: center; font-size: 15px; padding: 13px 20px; }
  .sp-footer-inner { flex-direction: column; text-align: center; gap: 12px; }
  .sp-footer-brand { justify-content: center; }
  .sp-footer-links { justify-content: center; }
  .sp-modal { padding: 28px 20px; border-radius: 16px; }
  .sp-modal h2 { font-size: 22px; }
  .sp-modal p { font-size: 14px; margin-bottom: 18px; }
  .sp-form-group input, .sp-form-group select { height: 46px; font-size: 14px; }
  .sp-form-submit { height: 48px; font-size: 15px; }
  .sp-whatsapp { width: 52px; height: 52px; bottom: 20px; right: 16px; }
  .sp-whatsapp svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  :root { --header-h: 56px; }
  .sp-header-inner { padding: 0 12px; gap: 8px; }
  .sp-brand-logo { height: 32px; width: 32px; }
  .sp-brand-name { font-size: 14px; }
  .sp-back { padding: 6px 10px; font-size: 12px; }
  .sp-book-btn { font-size: 12px; padding: 8px 12px; }
  .sp-hero-content { padding: 28px 12px; }
  .sp-hero-stats { flex-direction: column; gap: 10px; }
  .sp-section { padding: 40px 0; }
  .sp-container { padding: 0 12px; }
  .sp-benefits-grid { grid-template-columns: 1fr; gap: 12px; }
  .sp-benefit-card { flex-direction: row; text-align: left; padding: 16px; gap: 14px; align-items: flex-start; }
  .sp-benefit-icon { width: 44px; height: 44px; min-width: 44px; margin: 0; flex-shrink: 0; }
  .sp-benefit-icon svg { width: 22px; height: 22px; }
  .sp-schedule-grid { grid-template-columns: 1fr; gap: 10px; }
  .sp-schedule-card { padding: 16px; display: flex; align-items: center; gap: 16px; text-align: left; }
  .sp-schedule-icon { margin: 0; flex-shrink: 0; }
  .sp-cta-call, .sp-cta-book { max-width: 100%; }
  .sp-modal { padding: 24px 14px; }
  .sp-modal h2 { font-size: 20px; }
}

@media (min-width: 1024px) {
  .sp-benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .sp-schedule-grid { grid-template-columns: repeat(3, 1fr); }
  .sp-who-grid { grid-template-columns: 1fr 1fr; }
  .sp-learn-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Focus */
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }

/* ==========================================
   EMOJI FIX — hide all broken characters
   ========================================== */
/* Hide any remaining garbled emoji text in icon containers */
.sp-who-check { font-size: 0; }
.sp-who-check svg { display: block; }
.sp-faq-icon { font-size: 20px !important; font-family: monospace; }
.sp-schedule-icon { font-size: 0 !important; }
.sp-schedule-icon.sp-icon-dot::after { content: ''; width: 16px; height: 16px; border-radius: 50%; background: var(--green); opacity: 0.8; display: block; }
