/* Variables */
:root {
  --primary-color: #6eff68;
  --primary-dark: #56cc50;
  --secondary-color: #061c32;
  --secondary-light: #092742;
  --secondary-lighter: #0e2f4e;
  --text-light: #ffffff;
  --text-dark: #061c32;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --border-radius: 10px;
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--secondary-color);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--primary-color);
}

p {
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-dark);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(110, 255, 104, 0.3);
}

.btn:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(110, 255, 104, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-dark);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  background-color: rgba(6, 28, 50, 0.9);
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.navbar-links li a {
  color: var(--text-light);
  font-weight: 500;
  position: relative;
}

.navbar-links li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.navbar-links li a:hover {
  color: var(--primary-color);
}

.navbar-links li a:hover::after {
  width: 100%;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, #061c32 0%, #092742 50%, #0e2f4e 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-light {
  background: #ffffff;
  color: var(--text-dark);
}

.section-dark {
  background: var(--secondary-light);
}

.section-primary {
  background: linear-gradient(135deg, #0e2f4e 0%, #092742 100%);
  color: var(--text-light);
}

.section-gradient {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-lighter) 100%);
}

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

.section-title {
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Vision */
.vision-section {
  padding: 4rem 0;
}

.vision-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

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

.service-card {
  background-color: var(--secondary-lighter);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.service-title {
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Methodology */
.methodology-fullscreen {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: var(--secondary-color);
  overflow: hidden;
}

.methodology-fullscreen img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Contact */
.contact-section {
  text-align: center;
  padding: 5rem 0;
}

.contact-info {
  margin-bottom: 3rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: var(--text-light);
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--secondary-color);
  padding: 4rem 0 2rem;
  position: relative;
}

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

.footer-logo img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-description {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-light);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  opacity: 1;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary-lighter);
  color: var(--text-light);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--text-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
}

/* Responsive */
@media (max-width: 992px) {
  .navbar-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 70px);
    background-color: var(--secondary-color);
    flex-direction: column;
    gap: 0;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .navbar-links.active {
    right: 0;
  }

  .navbar-links li {
    margin-bottom: 1.5rem;
  }

  .navbar-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

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

  .hero-title {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.px-1 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-4 { padding-left: 2rem; padding-right: 2rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }


/* ========================================
   QUIZ STYLES - INTÉGRATION COMPLÈTE
   ======================================== */

/* Quiz Navigation Link */
.quiz-nav-link {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color), #4ade80) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 600 !important;
}

.quiz-nav-link::after {
  background: linear-gradient(135deg, var(--primary-color), #4ade80) !important;
}

/* Quiz CTA in Hero */
.quiz-cta {
  position: relative;
  overflow: hidden;
}

.quiz-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.quiz-cta:hover::before {
  left: 100%;
}

/* New Quiz Hero Section */
.section-quiz-hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.section-quiz-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.quiz-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.quiz-hero-left {
  padding: 2rem 0;
}

.quiz-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color), #4ade80);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(110, 255, 104, 0.3);
}

.quiz-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.quiz-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-dark);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.quiz-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quiz-stat {
  text-align: center;
}

.quiz-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.quiz-stat-label {
  font-size: 0.9rem;
  color: var(--text-dark);
  opacity: 0.7;
  font-weight: 500;
}

.quiz-hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.quiz-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-dark);
  font-weight: 500;
}

.quiz-benefit-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  width: 20px;
  flex-shrink: 0;
}

.quiz-hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-quiz-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, var(--primary-color), #4ade80);
  color: var(--text-dark);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(110, 255, 104, 0.3);
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.btn-quiz-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(110, 255, 104, 0.4);
  background: linear-gradient(135deg, #4ade80, var(--primary-color));
}

.quiz-hero-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark);
  opacity: 0.7;
  font-size: 0.9rem;
}

.quiz-hero-trust i {
  color: var(--primary-color);
}

/* Quiz Visual Container */
.quiz-hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.quiz-visual-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 500px;
}

.quiz-visual-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--primary-color), #4ade80);
  border-radius: 50%;
  opacity: 0.1;
  animation: pulse 3s infinite;
}

.quiz-visual-card {
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
  max-width: 380px;
  margin: 0 auto;
}

.quiz-visual-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.quiz-card-header {
  background: var(--secondary-color);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quiz-card-dots {
  display: flex;
  gap: 0.5rem;
}

.quiz-card-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-color);
}

.quiz-card-dots span:nth-child(2) {
  background: #fbbf24;
}

.quiz-card-dots span:nth-child(3) {
  background: #ef4444;
}

.quiz-card-title {
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.1rem;
}

.quiz-card-content {
  padding: 2rem 1.5rem;
}

.quiz-card-question h4 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.quiz-card-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.quiz-card-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.quiz-card-option.selected {
  border-color: var(--primary-color);
  background-color: rgba(110, 255, 104, 0.1);
}

.quiz-card-radio {
  width: 16px;
  height: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.quiz-card-option.selected .quiz-card-radio {
  border-color: var(--primary-color);
}

.quiz-card-option.selected .quiz-card-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
}

.quiz-card-option span {
  color: var(--text-dark);
  font-size: 0.9rem;
  line-height: 1.3;
}

.quiz-card-progress {
  text-align: center;
}

.quiz-progress-bar {
  width: 100%;
  height: 6px;
  background-color: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), #4ade80);
  border-radius: 3px;
  width: 20%;
  animation: progressGlow 2s infinite;
}

.quiz-progress-text {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Floating Elements */
.quiz-floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  color: var(--primary-color);
  font-size: 1.5rem;
}

.quiz-float-1 {
  top: 10%;
  right: 10%;
  animation: float 3s infinite;
}

.quiz-float-2 {
  top: 60%;
  right: 5%;
  animation: float 3s infinite 0.5s;
}

.quiz-float-3 {
  bottom: 20%;
  left: 5%;
  animation: float 3s infinite 1s;
}

.quiz-float-4 {
  top: 20%;
  left: 10%;
  animation: float 3s infinite 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes progressGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
}

/* Responsive Design for New Quiz Hero Section */
@media (max-width: 768px) {
  .quiz-hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .quiz-hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .quiz-stat-number {
    font-size: 1.8rem;
  }
  
  .quiz-visual-container {
    height: 400px;
    max-width: 350px;
  }
  
  .quiz-visual-card {
    max-width: 320px;
    transform: rotate(0deg);
  }
  
  .quiz-floating-element {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .quiz-hero-benefits {
    align-items: center;
  }
  
  .btn-quiz-hero {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .section-quiz-hero {
    padding: 3rem 0;
  }
  
  .quiz-hero-title {
    font-size: 2rem;
  }
  
  .quiz-hero-subtitle {
    font-size: 1rem;
  }
  
  .quiz-hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem;
  }
  
  .quiz-stat-number {
    font-size: 1.5rem;
  }
  
  .quiz-stat-label {
    font-size: 0.8rem;
  }
  
  .quiz-visual-container {
    height: 350px;
    max-width: 300px;
  }
  
  .quiz-visual-card {
    max-width: 280px;
  }
  
  .quiz-card-content {
    padding: 1.5rem 1rem;
  }
  
  .quiz-floating-element {
    display: none;
  }
  
  .btn-quiz-hero {
    font-size: 1rem;
    padding: 1rem 2rem;
  }
}

