:root {
  /* Color scheme - neutral with retro eco-minimalism accents */
  --color-primary: #3e6a74;
  --color-primary-light: #54838f;
  --color-primary-dark: #2a4c54;
  --color-secondary: #d8aa76;
  --color-secondary-light: #e6c5a0;
  --color-secondary-dark: #b48a57;
  --color-accent: #e9a87d;
  --color-accent-light: #f4c4a8;
  --color-accent-dark: #c48358;
  
  /* Neutral colors */
  --color-bg: #fcfcfc;
  --color-bg-alt: #f5f5f3;
  --color-bg-dark: #e9e9e7;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-lighter: #999999;
  --color-white: #ffffff;
  --color-black: #222222;
  --color-error: #e45858;
  --color-success: #58a158;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  --gradient-secondary: linear-gradient(135deg, var(--color-secondary-light), var(--color-secondary));
  --gradient-accent: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  --gradient-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
  
  /* Typography */
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Roboto', 'Montserrat', 'Inter', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-md);
}

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

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

.text-left {
  text-align: left;
}

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

.mb-0 {
  margin-bottom: 0;
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mt-0 {
  margin-top: 0;
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

/* Buttons */
.btn, 
button, 
input[type="submit"] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.btn:hover, 
button:hover, 
input[type="submit"]:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active, 
button:active, 
input[type="submit"]:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-text);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-light);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

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

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-full {
  width: 100%;
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-md) 0;
  transition: all var(--transition-medium);
}

.site-header.scrolled {
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.logo a {
  color: var(--color-text);
  text-decoration: none;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: var(--space-lg);
}

.nav-links a {
  color: var(--color-text);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
}

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

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  margin-left: auto;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-text);
  margin: 5px 0;
  transition: all var(--transition-medium);
}

/* Hero Section */
.hero {
  position: relative;
  padding: var(--space-xxl) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 72px; /* Height of the header */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content h2 {
  font-size: 3rem;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: var(--space-xl);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
}

/* Section Styles */
section {
  padding: var(--space-xxl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  font-size: 2.2rem;
  color: var(--color-text);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--color-primary);
  margin: var(--space-sm) auto 0;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-top: -1.5rem;
  margin-bottom: var(--space-xl);
}

/* Services Section */
.services-section {
  background-color: var(--color-bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: var(--space-lg);
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card h3 {
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.card p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

/* Stats Section */
.stats-section {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}

.stats-section .section-title {
  color: var(--color-white);
}

.stats-section .section-title::after {
  background-color: var(--color-white);
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: var(--space-xl);
}

.stat-widget {
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 1.1rem;
  color: var(--color-white);
}

/* Webinars Section */
.webinars-section {
  background-color: var(--color-bg);
}

.webinars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.webinar-date {
  display: inline-block;
  background-color: var(--color-primary-light);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

/* Awards Section */
.awards-section {
  background-color: var(--color-bg-alt);
  text-align: center;
}

.awards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
}

.award-item {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.award-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: var(--space-md);
  border: 4px solid var(--color-primary);
  padding: 3px;
  background-color: var(--color-white);
}

.award-item h3 {
  margin-bottom: var(--space-sm);
}

.award-item p {
  color: var(--color-text-light);
}

/* Resource Partners Section */
.resource-partners {
  background-color: var(--color-bg);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.resource-card {
  background-color: var(--color-bg-alt);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.resource-card h3 {
  margin-bottom: var(--space-sm);
}

.resource-card a {
  font-weight: bold;
  position: relative;
}

.resource-card a::after {
  content: '→';
  margin-left: var(--space-xs);
  transition: transform var(--transition-fast);
}

.resource-card a:hover::after {
  transform: translateX(3px);
}

/* Success Stories Section */
.success-stories-section {
  background-color: var(--color-bg-alt);
}

.stories-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.industry {
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.accordion {
  margin-top: var(--space-md);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  background-color: var(--color-primary-light);
  color: var(--color-white);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.accordion-header:hover {
  background-color: var(--color-primary);
}

.accordion-icon {
  font-weight: bold;
  font-size: 1.2rem;
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium), padding var(--transition-medium);
  background-color: rgba(62, 106, 116, 0.1);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.accordion-content p {
  padding: var(--space-md);
  margin: 0;
}

/* Community Section */
.community-section {
  background-color: var(--color-bg);
}

.community-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.feature {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-md);
}

.feature h3 {
  margin-bottom: var(--space-sm);
}

/* Events Calendar Section */
.events-calendar {
  background-color: var(--color-bg-alt);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.event-card {
  display: flex;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-md);
  background-color: var(--color-primary);
  color: var(--color-white);
  min-width: 100px;
}

.month {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 500;
}

.day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.event-details {
  padding: var(--space-lg);
  flex-grow: 1;
}

.event-location {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.event-description {
  margin-bottom: var(--space-md);
}

/* Press Section */
.press-section {
  background-color: var(--color-bg);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.press-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.press-item img {
  width: 180px;
  height: 80px;
  object-fit: contain;
  margin-bottom: var(--space-md);
}

.press-item blockquote {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  position: relative;
  padding: 0 var(--space-md);
}

.press-item blockquote::before,
.press-item blockquote::after {
  content: '"';
  font-size: 2rem;
  color: var(--color-primary-light);
  position: absolute;
  opacity: 0.3;
}

.press-item blockquote::before {
  top: -10px;
  left: 0;
}

.press-item blockquote::after {
  bottom: -30px;
  right: 0;
}

.source {
  font-weight: 500;
  color: var(--color-text-light);
}

/* Contact Section */
.contact-section {
  background-color: var(--color-bg-alt);
}

.contact-container {
  display: grid;
  gap: var(--space-xl);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.info-item h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.contact-form-container {
  background-color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--color-bg-dark);
  border-radius: var(--radius-md);
  background-color: var(--color-bg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(62, 106, 116, 0.2);
}

/* Footer Styles */
.site-footer {
  background-color: var(--color-text);
  color: var(--color-white);
  padding: var(--space-xxl) 0 var(--space-lg);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}

.footer-logo {
  flex: 1;
  min-width: 250px;
  margin-bottom: var(--space-lg);
}

.footer-logo h3 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.footer-logo p {
  color: var(--color-text-lighter);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-section {
  min-width: 150px;
  margin-bottom: var(--space-lg);
}

.footer-section h4 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  position: relative;
}

.footer-section h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--color-primary-light);
  margin-top: var(--space-xs);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: var(--space-sm);
}

.footer-section a {
  color: var(--color-text-lighter);
  transition: color var(--transition-fast);
}

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

.social-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.social-links a {
  color: var(--color-text-lighter);
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: var(--color-white);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--color-text-lighter);
  margin-bottom: 0;
}

/* Success Page */
.success-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: var(--space-xxl) var(--space-lg);
}

.success-container {
  max-width: 600px;
  background-color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--color-success);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto var(--space-lg);
}

.success-icon::after {
  content: '✓';
  color: var(--color-white);
  font-size: 2.5rem;
}

/* Privacy & Terms Pages */
.legal-page {
  padding-top: 100px;
  padding-bottom: var(--space-xxl);
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.legal-container h1 {
  margin-bottom: var(--space-lg);
}

.legal-container h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.legal-container p {
  margin-bottom: var(--space-md);
}

.legal-container ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.legal-container li {
  margin-bottom: var(--space-sm);
}

/* Cookie Consent Popup */
#cookie-consent-popup {
  background-color: rgba(33, 33, 33, 0.95);
  color: var(--color-white);
  padding: var(--space-lg);
  border-top: 3px solid var(--color-primary);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

#cookie-consent-popup p {
  margin-bottom: var(--space-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

#accept-cookies {
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: all var(--transition-medium);
}

#accept-cookies:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    flex-direction: row;
    padding: var(--space-sm) var(--space-md);
    justify-content: center;
  }
  
  .month, .day {
    margin: 0 var(--space-xs);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
  }
  
  .nav-links.active {
    max-height: 300px;
  }
  
  .nav-links li {
    margin: 0;
  }
  
  .nav-links a {
    display: block;
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-bg-dark);
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.slide-up {
  animation: slideUp 0.6s ease forwards;
}

.pulse {
  animation: pulse 2s infinite;
}

/* Delayed animations */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }