/* ============================================
   CRIMSON ARC - VINTAGE RETRO DESIGN SYSTEM
   Comprehensive CSS Stylesheet
   ============================================ */

/* ========== CSS RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.6;
  color: #2C1810;
  background-color: #F5E6D3;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139, 21, 56, 0.02) 10px, rgba(139, 21, 56, 0.02) 20px);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ========== VINTAGE TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Palatino', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #8B1538;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0px rgba(212, 175, 55, 0.1);
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 36px;
  border-bottom: 3px solid #D4AF37;
  padding-bottom: 10px;
  display: inline-block;
}

h3 {
  font-size: 24px;
  color: #2C5F7D;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

/* ========== LAYOUT CONTAINERS ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ========== VINTAGE HEADER ========== */
header {
  background: linear-gradient(135deg, #8B1538 0%, #6B1028 100%);
  border-bottom: 5px solid #D4AF37;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* ========== VINTAGE NAVIGATION ========== */
.main-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #F5E6D3;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 15px;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Georgia', serif;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 3px;
  background: #D4AF37;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover::before {
  width: 100%;
}

.main-nav a:hover {
  color: #D4AF37;
  transform: translateY(-2px);
}

/* ========== MOBILE MENU ========== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #8B1538;
  color: #F5E6D3;
  border: 3px solid #D4AF37;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #6B1028;
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #8B1538 0%, #6B1028 100%);
  border-left: 5px solid #D4AF37;
  z-index: 1000;
  transition: right 0.4s ease;
  overflow-y: auto;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #D4AF37;
  color: #F5E6D3;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #D4AF37;
  color: #8B1538;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 0;
}

.mobile-nav a {
  color: #F5E6D3;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Georgia', serif;
}

.mobile-nav a:hover {
  background: rgba(212, 175, 55, 0.2);
  color: #D4AF37;
  padding-left: 30px;
  border-left: 5px solid #D4AF37;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* ========== VINTAGE HERO SECTIONS ========== */
.hero {
  background: linear-gradient(135deg, #2C5F7D 0%, #1A3A4D 100%);
  color: #F5E6D3;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 5px solid #D4AF37;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(212, 175, 55, 0.05) 20px, rgba(212, 175, 55, 0.05) 40px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: #D4AF37;
  font-size: 56px;
  margin-bottom: 25px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: 20px;
  margin-bottom: 35px;
  color: #F5E6D3;
  line-height: 1.7;
}

.hero-404 {
  background: linear-gradient(135deg, #8B1538 0%, #6B1028 100%);
  padding: 100px 20px;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  color: #D4AF37;
  text-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

.legal-hero {
  background: linear-gradient(135deg, #2C5F7D 0%, #1A3A4D 100%);
  color: #F5E6D3;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 5px solid #D4AF37;
}

.legal-hero h1 {
  color: #D4AF37;
}

.thank-you-hero {
  background: linear-gradient(135deg, #2C5F7D 0%, #1A3A4D 100%);
  color: #F5E6D3;
  padding: 100px 20px;
  text-align: center;
}

.success-icon {
  font-size: 80px;
  color: #D4AF37;
  margin-bottom: 30px;
  width: 120px;
  height: 120px;
  border: 5px solid #D4AF37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  background: rgba(212, 175, 55, 0.1);
}

/* ========== VINTAGE BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Georgia', serif;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: #8B1538;
  color: #F5E6D3;
  border-color: #D4AF37;
  box-shadow: 0 4px 15px rgba(139, 21, 56, 0.3);
}

.btn-primary:hover {
  background: #6B1028;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 21, 56, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #8B1538;
  border-color: #8B1538;
}

.btn-secondary:hover {
  background: #8B1538;
  color: #F5E6D3;
  transform: translateY(-3px);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* ========== TRUST BADGES ========== */
.trust-badges {
  margin-top: 40px;
  padding: 20px;
  background: rgba(212, 175, 55, 0.1);
  border: 2px dashed #D4AF37;
  border-radius: 8px;
}

.trust-badges p {
  color: #F5E6D3;
  font-size: 14px;
  margin: 0;
  font-weight: 600;
}

/* ========== VINTAGE CARD LAYOUTS ========== */
.benefits-grid,
.services-grid,
.testimonials-grid,
.categories-grid,
.resources-grid,
.options-grid,
.suggestions-grid,
.team-grid,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.benefit,
.service-card,
.testimonial-card,
.category,
.resource-card,
.option,
.suggestion-card,
.suggestion,
.team-member,
.step,
.workshop-item,
.service-detail {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  border: 3px solid #8B1538;
  box-shadow: 5px 5px 0 rgba(139, 21, 56, 0.2);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit::before,
.service-card::before,
.category::before {
  content: '●';
  position: absolute;
  top: -15px;
  left: 20px;
  font-size: 30px;
  color: #D4AF37;
}

.benefit:hover,
.service-card:hover,
.testimonial-card:hover,
.category:hover,
.resource-card:hover,
.option:hover,
.suggestion-card:hover,
.suggestion:hover,
.team-member:hover,
.workshop-item:hover,
.service-detail:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0 rgba(139, 21, 56, 0.3);
}

.benefit h3,
.service-card h3,
.category h3,
.resource-card h3,
.option h3,
.suggestion-card h3,
.suggestion h3,
.team-member h3,
.workshop-item h3,
.service-detail h3 {
  color: #8B1538;
  margin-bottom: 15px;
  font-size: 22px;
}

.benefit p,
.service-card p,
.category p,
.resource-card p,
.option p,
.suggestion-card p,
.suggestion p,
.team-member p,
.workshop-item p,
.service-detail p {
  color: #2C1810;
  line-height: 1.7;
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  background: #F5E6D3;
  border: 3px solid #D4AF37;
  padding: 30px;
  font-style: italic;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #D4AF37;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card p {
  color: #2C1810;
  font-size: 16px;
  margin-bottom: 15px;
}

.testimonial-card .author {
  color: #8B1538;
  font-weight: 700;
  font-style: normal;
  text-align: right;
  border-top: 2px solid #D4AF37;
  padding-top: 15px;
  margin-top: 20px;
}

/* ========== PRICE DISPLAY ========== */
.price {
  font-size: 28px;
  font-weight: 900;
  color: #8B1538;
  margin: 20px 0;
  padding: 15px;
  background: rgba(212, 175, 55, 0.1);
  border: 2px dashed #D4AF37;
  border-radius: 5px;
  text-align: center;
}

.includes {
  font-size: 14px;
  color: #2C5F7D;
  font-weight: 600;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid #F5E6D3;
}

/* ========== CTA SECTIONS ========== */
.cta-section,
.value-proposition,
.services-overview,
.mission,
.story,
.workshop-benefits,
.upcoming-workshops,
.resource-categories,
.featured-resources,
.newsletter,
.contact-options,
.contact-info,
.location,
.office-hours,
.navigation-help,
.next-steps,
.while-waiting,
.testimonials {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.cta-section {
  background: linear-gradient(135deg, #8B1538 0%, #6B1028 100%);
  color: #F5E6D3;
  text-align: center;
  border-top: 5px solid #D4AF37;
  border-bottom: 5px solid #D4AF37;
}

.cta-section h2 {
  color: #D4AF37;
  border-bottom: none;
  margin-bottom: 20px;
}

.cta-section p {
  color: #F5E6D3;
  font-size: 18px;
  margin-bottom: 30px;
}

.guarantee,
.privacy-note {
  font-size: 14px;
  color: #D4AF37;
  margin-top: 20px;
  font-style: italic;
}

/* ========== VALUE PROPOSITION ========== */
.value-proposition {
  background: #FFFFFF;
  border: 3px solid #8B1538;
  border-radius: 8px;
}

.value-proposition h2 {
  color: #8B1538;
  text-align: center;
}

.value-proposition > p {
  text-align: center;
  font-size: 18px;
  color: #2C5F7D;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* ========== MISSION & STORY ========== */
.mission,
.story {
  background: #F5E6D3;
  border-left: 5px solid #D4AF37;
  padding-left: 40px;
}

.mission ul,
.legal-content ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.mission li,
.legal-content li {
  padding: 12px 0 12px 30px;
  position: relative;
  color: #2C1810;
  line-height: 1.7;
}

.mission li::before,
.legal-content li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-size: 14px;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.milestone {
  flex: 1 1 calc(50% - 20px);
  min-width: 200px;
  padding: 20px;
  background: #FFFFFF;
  border: 2px solid #8B1538;
  border-radius: 5px;
  font-weight: 600;
  color: #2C1810;
}

.milestone strong {
  color: #8B1538;
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
}

/* ========== TEAM SECTION ========== */
.team {
  background: #FFFFFF;
  padding: 60px 20px;
}

.role {
  color: #2C5F7D;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 10px;
}

/* ========== WORKSHOP ITEMS ========== */
.workshop-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.workshop-item {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ========== CONTACT SECTIONS ========== */
.location-details,
.hours-list {
  background: #FFFFFF;
  padding: 30px;
  border: 3px solid #8B1538;
  border-radius: 8px;
  margin-top: 30px;
}

.hours-list p {
  padding: 10px 0;
  border-bottom: 1px solid #F5E6D3;
  color: #2C1810;
}

.hours-list p:last-child {
  border-bottom: none;
}

.form-note {
  background: rgba(212, 175, 55, 0.1);
  padding: 30px;
  border: 2px dashed #D4AF37;
  border-radius: 8px;
  text-align: center;
  margin-top: 30px;
}

/* ========== LEGAL CONTENT ========== */
.legal-content {
  padding: 60px 20px;
  background: #FFFFFF;
  border: 3px solid #8B1538;
  border-radius: 8px;
  margin: 40px 20px;
}

.legal-content h2 {
  color: #8B1538;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #D4AF37;
  padding-bottom: 10px;
}

.legal-content p {
  color: #2C1810;
  line-height: 1.8;
}

.updated {
  font-size: 14px;
  color: #D4AF37;
  font-style: italic;
}

/* ========== VINTAGE FOOTER ========== */
footer {
  background: linear-gradient(135deg, #8B1538 0%, #6B1028 100%);
  color: #F5E6D3;
  padding: 60px 20px 30px;
  border-top: 5px solid #D4AF37;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3,
.footer-section h4 {
  color: #D4AF37;
  margin-bottom: 20px;
  font-size: 20px;
  border-bottom: 2px solid #D4AF37;
  padding-bottom: 10px;
}

.footer-section p {
  color: #F5E6D3;
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #F5E6D3;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 15px;
  position: relative;
}

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
  color: #D4AF37;
}

.footer-nav a:hover {
  color: #D4AF37;
  padding-left: 25px;
}

.footer-nav a:hover::before {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.footer-bottom p {
  color: #F5E6D3;
  font-size: 14px;
  margin: 0;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C5F7D 0%, #1A3A4D 100%);
  color: #F5E6D3;
  padding: 25px 20px;
  border-top: 5px solid #D4AF37;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1 1 300px;
}

.cookie-consent-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-consent-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-consent-buttons .btn {
  padding: 10px 25px;
  font-size: 14px;
  white-space: nowrap;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #F5E6D3;
  padding: 40px;
  border-radius: 8px;
  border: 5px solid #8B1538;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-modal h2 {
  color: #8B1538;
  margin-bottom: 20px;
}

.cookie-category {
  padding: 20px;
  background: #FFFFFF;
  border: 2px solid #8B1538;
  border-radius: 5px;
  margin-bottom: 20px;
}

.cookie-category h3 {
  color: #2C5F7D;
  margin-bottom: 10px;
  font-size: 18px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #2C1810;
  cursor: pointer;
}

.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .categories-grid,
  .resources-grid,
  .options-grid,
  .suggestions-grid,
  .team-grid,
  .steps-grid {
    flex-direction: column;
  }
  
  .benefit,
  .service-card,
  .testimonial-card,
  .category,
  .resource-card,
  .option,
  .suggestion-card,
  .suggestion,
  .team-member,
  .step,
  .workshop-item,
  .service-detail {
    flex: 1 1 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-modal-content {
    padding: 30px 20px;
  }
  
  .mission,
  .story {
    padding-left: 20px;
    border-left: 3px solid #D4AF37;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .error-code {
    font-size: 60px;
  }
  
  .success-icon {
    width: 100px;
    height: 100px;
    font-size: 60px;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .price {
    font-size: 24px;
  }
}

/* ========== UTILITY CLASSES ========== */
.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Apply fade-in animation to sections */
section {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth transitions for interactive elements */
button,
.btn,
a {
  transition: all 0.3s ease;
}

/* ========== PRINT STYLES ========== */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-consent,
  .cookie-modal,
  .btn {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero {
    background: white;
    color: black;
    border: 2px solid black;
  }
}