/* Modern responsive stylesheet for Ayurveda clinic homepage */
:root{
  --accent:#7aa67a; /* soothing green */
  --accent-light:#a3c9a3;
  --accent-dark:#5d8a5d;
  --dark:#22333b;
  --dark-light:#374151;
  --muted:#6b7280;
  --light:#f8fafc;
  --white:#ffffff;
  --bg-gradient: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 50%, #fefce8 100%);
  --card: rgba(255,255,255,0.95);
  --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

/* Loading Screen Styles */
#pageLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 50%, #fefce8 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#pageLoader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  animation: fadeInUp 0.8s ease;
}

.loader-logo {
  width: 80px;
  height: 80px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(122, 166, 122, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.loader-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.loader-subtext {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 30px;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  position: relative;
}

.spinner-leaf {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  animation: leafSpin 1.2s linear infinite;
}

.spinner-leaf:nth-child(1) { transform: rotate(0deg) translate(20px); animation-delay: 0s; }
.spinner-leaf:nth-child(2) { transform: rotate(45deg) translate(20px); animation-delay: -0.15s; }
.spinner-leaf:nth-child(3) { transform: rotate(90deg) translate(20px); animation-delay: -0.3s; }
.spinner-leaf:nth-child(4) { transform: rotate(135deg) translate(20px); animation-delay: -0.45s; }
.spinner-leaf:nth-child(5) { transform: rotate(180deg) translate(20px); animation-delay: -0.6s; }
.spinner-leaf:nth-child(6) { transform: rotate(225deg) translate(20px); animation-delay: -0.75s; }
.spinner-leaf:nth-child(7) { transform: rotate(270deg) translate(20px); animation-delay: -0.9s; }
.spinner-leaf:nth-child(8) { transform: rotate(315deg) translate(20px); animation-delay: -1.05s; }

@keyframes leafSpin {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.4); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 20px rgba(122, 166, 122, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 12px 30px rgba(122, 166, 122, 0.5); }
}

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

*{box-sizing:border-box}

html{
  scroll-behavior: smooth;
}

html,body{
  height:100%;
  margin:0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

body{
  background: var(--bg-gradient);
  color:var(--dark);
  -webkit-font-smoothing:antialiased;
  position:relative;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Main container should be full width */
.main-container{
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Content wrapper with bigger width */
.content-wrapper{
  max-width: calc(100% - 20px);
  margin: 0 10px;
  width: calc(100% - 20px);
}

/* Hero specific wrapper - much wider */
.hero-wrapper{
  max-width: calc(100% - 40px);
  margin: 0 20px;
  width: calc(100% - 40px);
}

/* Smooth animations and transitions */
*, *::before, *::after {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--accent);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
  border-radius: 4px;
}

.skip-link:focus {
  top: 6px;
}
.container{
  max-width:100%;
  width:100%;
  margin:0;
  padding:0;
  position:relative;
}

.section-wrapper{
  width: 100%;
  margin: 0;
  padding: 40px 10px;
}

.content-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

/* Image slider section */
.image-slider-section{
  width: 100%;
  background: #000;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.image-slider{
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slider-images{
  display: flex;
  transition: transform 0.8s ease-in-out;
  height: 100%;
}

.slider-image{
  min-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #2d5a2d;
}

.slider-overlay{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slider-text{
  color: white;
  max-width: 800px;
  padding: 20px;
}

.slider-text h2{
  font-size: 56px;
  font-weight: 800;
  margin: 0 0 24px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.slider-text p{
  font-size: 24px;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.slider-nav{
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active{
  background: white;
  transform: scale(1.2);
}

.slider-arrows{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-arrows:hover{
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-prev{
  left: 20px;
}

.slider-next{
  right: 20px;
}

/* Header */
.site-header{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
  background:var(--white);
  backdrop-filter:blur(8px);
  box-shadow:var(--shadow);
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  gap:16px;
  align-items:center;
  flex-shrink: 0;
}

.logo{
  width:60px;
  height:60px;
  border-radius:var(--border-radius);
  background:linear-gradient(135deg, var(--accent), var(--accent-dark));
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--white);
  font-weight:800;
  font-size:22px;
  box-shadow:var(--shadow);
}

.nav{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}

.nav a{
  color:var(--dark);
  text-decoration:none;
  font-weight:600;
  font-size:15px;
  padding:10px 16px;
  border-radius:8px;
  transition:var(--transition);
  white-space:nowrap;
}

.nav a:hover{
  background:var(--light);
  color:var(--accent-dark);
}

.menu-item {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: var(--border-radius);
  min-width: 220px;
  z-index: 1000;
  overflow: hidden;
  animation: slideDown 0.3s ease-out;
}

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

.menu-item:hover .submenu {
  display: block;
}

.submenu a {
  display: block;
  padding: 12px 18px;
  color: var(--dark);
  text-decoration: none;
  border: none;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 14px;
}

.submenu a:first-child {
  border-top: 1px solid var(--light);
}

.submenu a:last-child {
  border-bottom: 1px solid var(--light);
}

.submenu a:hover {
  background: var(--accent-light);
  color: var(--white);
  padding-left: 24px;
}

.cta{
  background:linear-gradient(135deg, var(--accent), var(--accent-dark));
  color:var(--white);
  padding:12px 20px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
  box-shadow:var(--shadow);
  transition:var(--transition);
}

.cta:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-lg);
}

/* Hamburger menu - mobile only */
#hamburger{
  display:none;
  background:transparent;
  border:2px solid var(--accent);
  color:var(--accent);
  font-size:24px;
  padding:8px 12px;
  border-radius:8px;
  cursor:pointer;
  transition:var(--transition);
}

#hamburger:hover{
  background:var(--accent);
  color:var(--white);
}

/* Mobile Navigation */
@media (max-width:900px){
  .header-content{
    padding:12px 16px;
    position:relative;
  }
  
  #hamburger{
    display:block;
  }
  
  .nav{
    display:none;
    position:fixed;
    top:80px;
    left:5px;
    right:5px;
    background:var(--white);
    padding:16px;
    border-radius:12px;
    flex-direction:column;
    box-shadow:var(--shadow-lg);
    gap:8px;
    z-index:1001;
    max-height:calc(100vh - 100px);
    overflow-y:auto;
    margin:0;
    width:auto;
  }
  
  .nav.show{
    display:flex;
  }
  
  .nav a{
    display:block;
    padding:12px 16px;
    text-align:center;
    border-radius:8px;
    border:1px solid var(--light);
    font-size:15px;
    font-weight:600;
    margin:0;
    width:100%;
    box-sizing:border-box;
  }
  
  .nav a:hover{
    background:var(--accent);
    color:var(--white);
    border-color:var(--accent);
  }
  
  .cta{
    background:linear-gradient(135deg, var(--accent), var(--accent-dark));
    margin:10px 0;
    color:var(--white);
    border:none;
  }
  
  .hero-content{
    grid-template-columns:1fr;
    gap:30px;
    padding:0 16px;
  }
  
  .section-content{
    padding:0 16px;
  }
}

/* About page specific styles */
.about-hero{
  width:100%;
  padding:60px 10px;
  background: linear-gradient(135deg, rgba(122,166,122,0.06), rgba(163,201,163,0.04));
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.about-hero-inner{ max-width:1100px; padding:12px 20px; }
.about-hero h1{ margin:0 0 8px; font-size:36px; color:var(--dark); }
.about-hero .muted{ margin:0; color:var(--muted); }

.about-section .about-scroll{
  margin-top:18px;
  max-height:60vh;
  overflow-y:auto;
  padding-right:12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.55));
  border-radius:12px;
  box-shadow: var(--shadow);
  padding:18px;
}

.about-card{
  background: var(--card);
  border-radius:10px;
  padding:18px;
  margin-bottom:14px;
  box-shadow: 0 6px 18px rgba(34,51,59,0.06);
}
.about-card h3{ margin-top:0; }

/* Team grid */
.team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:16px;
}
.team-member{
  background:var(--card);
  padding:18px;
  border-radius:12px;
  text-align:center;
  box-shadow:var(--shadow);
}
.team-member img{ border-radius:50%; background:linear-gradient(135deg,var(--accent-light),var(--accent)); padding:8px; }
.team-member h4{ margin:12px 0 6px; }

/* Reveal animations */
.reveal{ opacity:0; transform:translateY(18px) scale(0.995); transition: opacity 550ms ease, transform 550ms cubic-bezier(.2,.9,.3,1); }
.reveal.in-view{ opacity:1; transform:translateY(0) scale(1); }

/* Animated subtle background for about-scroll */
@keyframes shimmerGradient{
  0%{ background-position:0% 50%; }
  50%{ background-position:100% 50%; }
  100%{ background-position:0% 50%; }
}
.about-scroll::before{
  content:"";
  position:absolute;
  pointer-events:none;
}

@media (max-width:900px){
  .team-grid{ grid-template-columns:repeat(1,1fr); }
  .about-hero h1{ font-size:28px; }
  .about-section .about-scroll{ max-height:50vh; }
}

/* Services pages styling */
h1, h2, h3, h4 { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
h1 { font-size:36px; font-weight:800; }
h2 { font-size:26px; font-weight:700; margin-top:18px; }
h3 { font-size:20px; font-weight:700; }
h4 { font-size:18px; font-weight:700; }

.section-wrapper .content-container p { font-size:16px; color:var(--dark); }

.section-wrapper img{ max-width:100%; height:auto; display:block; margin-left:auto; margin-right:auto; }

.card a{ color:inherit; text-decoration:none; font-weight:700; }

/* Ensure each service page scrolls comfortably */
main { min-height:60vh; }
.section-wrapper{ padding:28px 10px; }

@media (max-width:900px){
  h1{ font-size:28px; }
  h2{ font-size:20px; }
}


/* Backdrop shown when mobile menu is open */
#menuBackdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0);
  z-index:50;
  pointer-events:none;
  transition:background 300ms ease;
}

#menuBackdrop.show{
  background:rgba(0,0,0,0.5);
  pointer-events:auto;
}

/* Hero Section */
.hero{
  width:100%;
  padding:0;
  margin:0;
}

.hero-content{
  max-width:1400px;
  margin:0 auto;
  padding:50px 20px;
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:60px;
  align-items:start;
}

.hero-card{
  background:var(--card);
  padding:50px;
  border-radius:var(--border-radius);
  box-shadow:var(--shadow-lg);
  backdrop-filter:blur(10px);
}

.hero h1{
  margin:0 0 24px;
  font-size:52px;
  line-height:1.1;
  font-weight:800;
  color:var(--dark);
  background:linear-gradient(135deg, var(--dark), var(--accent-dark));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.hero p.lead{
  margin:0 0 36px;
  color:var(--muted);
  font-size:20px;
  line-height:1.7;
  max-width: none;
}

.hero .primary-cta, .hero .secondary-cta{
  display:inline-block;
  margin:8px 8px 8px 0;
  transition:var(--transition);
}

.primary-cta{
  background:linear-gradient(135deg, var(--accent), var(--accent-dark));
  color:var(--white);
  padding:16px 24px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  box-shadow:var(--shadow);
}

.primary-cta:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-lg);
}

.secondary-cta{
  background:transparent;
  border:2px solid var(--accent);
  color:var(--accent);
  padding:14px 22px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  transition:var(--transition);
}

.secondary-cta:hover{
  background:var(--accent);
  color:var(--white);
  transform:translateY(-3px);
}

/* Sections */
section{
  margin-bottom:60px;
  width:100%;
}

.section-content{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

section h2{
  font-size:36px;
  font-weight:800;
  margin:0 0 16px;
  color:var(--dark);
  text-align:center;
}

section > p{
  text-align:center;
  color:var(--muted);
  font-size:18px;
  max-width:800px;
  margin:0 auto 40px;
  line-height:1.7;
}

/* Grid Layout */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:24px;
  margin-top:40px;
}

.card{
  background:var(--card);
  padding:32px;
  border-radius:var(--border-radius);
  box-shadow:var(--shadow);
  transition:var(--transition);
  border:1px solid rgba(122, 166, 122, 0.1);
}

.card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-lg);
  border-color:var(--accent);
}

.card h3{
  margin:0 0 16px;
  font-size:22px;
  font-weight:700;
  color:var(--dark);
}

.card p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

.card .muted{
  color:var(--muted);
}

/* Utility Classes */
.center{
  text-align:center;
}

.muted{
  color:var(--muted);
}

/* Enhanced Slider Styles */
#testimonials{
  background:linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding:60px 0;
  width:100%;
}

.slider{
  position:relative;
  overflow:hidden;
  border-radius:var(--border-radius);
  background:var(--white);
  box-shadow:var(--shadow-lg);
  margin:40px auto;
  max-width:1000px;
}

.slides{
  display:flex;
  transition:transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide{
  min-width:100%;
  padding:35px 40px;
  background:linear-gradient(135deg, var(--white), var(--light));
  box-sizing:border-box;
  cursor:pointer;
  text-align:center;
  transition:var(--transition);
}

.slide:hover{
  background:linear-gradient(135deg, var(--light), var(--white));
}

.slide p{
  margin:0 0 20px;
  font-size:18px;
  line-height:1.5;
  color:var(--dark);
  font-style:italic;
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:20px;
}

.slide .author{
  font-weight:700;
  color:var(--accent-dark);
  font-size:18px;
  font-style:normal;
}

.slider-controls{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:20px;
  display:flex;
  gap:12px;
  z-index:10;
}

.dot{
  width:16px;
  height:16px;
  border-radius:50%;
  background:rgba(255,255,255,0.6);
  cursor:pointer;
  transition:var(--transition);
  border:2px solid var(--accent);
}

.dot:hover{
  background:rgba(255,255,255,0.8);
  transform:scale(1.1);
}

.dot.active{
  background:var(--accent);
  transform:scale(1.2);
}

/* Footer */
.footer{
  margin-top:0;
  padding:60px 0 40px;
  color:var(--white);
  font-size:14px;
  background:linear-gradient(135deg, var(--dark), var(--dark-light));
  width:100%;
}

.footer-content{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  text-align:center;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:40px;
  margin-bottom:40px;
  text-align:left;
}

.footer-section h4{
  color:var(--accent-light);
  margin:0 0 16px;
  font-size:18px;
  font-weight:700;
}

.footer-section p, .footer-section a{
  color:rgba(255,255,255,0.8);
  text-decoration:none;
  line-height:1.6;
  margin:8px 0;
  display:block;
}

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

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.2);
  padding-top:20px;
  text-align:center;
  color:rgba(255,255,255,0.6);
}

/* Responsive Design */
@media (max-width:1024px){
  .hero-content{
    grid-template-columns:1fr;
    gap:40px;
    max-width:1200px;
  }
  
  .hero-card{
    padding:40px;
  }
  
  .hero h1{
    font-size:44px;
  }
  
  .hero p.lead{
    font-size:18px;
  }
  
  .grid{
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:20px;
  }
  
  .footer-grid{
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap:30px;
  }
  
  .image-slider{
    height:400px;
  }
  
  .slider-text h2{
    font-size:42px;
  }
  
  .slider-text p{
    font-size:20px;
  }
}

@media (max-width:768px){
  .content-wrapper{
    margin:0 5px;
    max-width:calc(100% - 10px);
    width:calc(100% - 10px);
  }
  
  .hero-wrapper{
    margin:0 10px;
    max-width:calc(100% - 20px);
    width:calc(100% - 20px);
  }
  
  .section-wrapper{
    padding:30px 5px;
  }
  
  .hero-content{
    padding:30px 15px;
    max-width:100%;
  }
  
  .hero-card{
    padding:30px;
  }
  
  .hero h1{
    font-size:32px;
    line-height:1.2;
  }
  
  .hero p.lead{
    font-size:17px;
  }
  
  .primary-cta, .secondary-cta{
    padding:14px 24px;
    font-size:15px;
    display:inline-block;
    margin:8px 8px 8px 0;
  }
  
  section h2{
    font-size:28px;
  }
  
  section > p{
    font-size:16px;
  }
  
  .grid{
    grid-template-columns:1fr;
    gap:20px;
    margin-top:30px;
  }
  
  .card{
    padding:28px;
  }
  
  .slide{
    padding:25px 20px;
  }
  
  .slide p{
    font-size:16px;
  }
  
  .section-wrapper{
    margin-bottom:30px;
  }
  
  #testimonials{
    padding:40px 0;
  }
  
  .footer{
    padding:40px 0 20px;
  }
  
  .footer-grid{
    grid-template-columns:1fr;
    gap:20px;
    text-align:center;
  }
  
  .image-slider{
    height:320px;
  }
  
  .slider-text h2{
    font-size:32px;
  }
  
  .slider-text p{
    font-size:17px;
  }
  
  .slider-arrows{
    width:40px;
    height:40px;
    font-size:16px;
  }
}

@media (max-width:480px){
  .logo{
    width:50px;
    height:50px;
    font-size:18px;
  }
  
  .hero h1{
    font-size:26px;
  }
  
  .hero p.lead{
    font-size:16px;
  }
  
  .hero-card{
    padding:24px;
  }
  
  .card{
    padding:24px;
  }
  
  .slide{
    padding:20px 16px;
  }
  
  .slide p{
    font-size:15px;
  }
  
  section h2{
    font-size:24px;
  }
  
  .header-content{
    padding:8px 12px;
  }
  
  .nav{
    left:3px;
    right:3px;
    padding:12px;
  }
  
  .nav a{
    padding:10px 14px;
    font-size:14px;
  }
  
  .image-slider{
    height:280px;
  }
  
  .slider-text h2{
    font-size:26px;
  }
  
  .slider-text p{
    font-size:15px;
  }
  
  .slider-arrows{
    width:35px;
    height:35px;
    font-size:14px;
  }
  
  .slider-prev{
    left:10px;
  }
  
  .slider-next{
    right:10px;
  }
  
  .primary-cta, .secondary-cta{
    display:block;
    text-align:center;
    margin:8px 0;
  }
}

/* utility */
.muted{color:var(--muted)}
.center{text-align:center}

/* Give the hero a little extra top spacing so header/nav don't visually crowd the title */
.hero{margin-top:6px}
