:root {
  /* Main Color Palette - Analogous scheme */
  --primary-color: #36c75e;
  --primary-light: #64e485;
  --primary-dark: #1e9b41;
  --secondary-color: #3ec1a6;
  --secondary-light: #65e8d1;
  --secondary-dark: #2a9682;
  --accent-color: #3683c7;
  --accent-light: #619fe0;
  --accent-dark: #205b96;
  
  /* Neutral Colors */
  --dark: #1a1a1a;
  --dark-gray: #333333;
  --medium-gray: #666666;
  --light-gray: #f5f5f5;
  --off-white: #f9f9f9;
  --white: #ffffff;
  
  /* Typography */
  --heading-font: 'Archivo Black', sans-serif;
  --body-font: 'Roboto', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 24px;
  
  /* Shadows */
  --shadow-small: 0 2px 5px rgba(0,0,0,0.1);
  --shadow-medium: 0 4px 10px rgba(0,0,0,0.1);
  --shadow-large: 0 10px 20px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--off-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
}

p {
  margin-bottom: var(--spacing-sm);
}

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

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

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

.section {
  padding: var(--spacing-lg) 0;
}

.has-background-light {
  background-color: var(--light-gray);
}

.container {
  padding-inline: 12px;
}

/* Navbar Styles */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-medium);
  transition: background-color var(--transition-medium);
}

.navbar-item {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition-fast);
}

.navbar-item:hover {
  color: var(--primary-color);
}

.navbar-burger {
  color: var(--dark);
}

.navbar-burger:hover {
  color: var(--primary-color);
}

.navbar-menu.is-active {
  box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero .title,
.hero .subtitle,
.hero-description {
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero .title {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-sm);
}

.hero .subtitle {
  font-size: 1.8rem;
  margin-bottom: var(--spacing-md);
}

.hero-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto var(--spacing-md);
}

/* Button Styles */
.button {
  font-weight: 600;
  letter-spacing: 1px;
  transition: all var(--transition-medium);
  border: none;
}

.button.is-primary {
  background-color: var(--primary-color);
}

.button.is-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(54, 199, 94, 0.4);
  transform: translateY(-2px);
}

.button.is-light {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--dark);
}

.button.is-light:hover {
  background-color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.button.is-outlined {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.button.is-outlined:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.pulse-button {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(54, 199, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(54, 199, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(54, 199, 94, 0);
  }
}

/* Card Styles */
.card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.card-image {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.card-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card .title {
  margin-bottom: var(--spacing-sm);
}

.card .button {
  margin-top: auto;
  align-self: flex-start;
}

/* Vision Section */
#about {
  position: relative;
}

#about .content {
  padding: var(--spacing-sm);
}

#about figure {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

/* Features Section */
#features .card {
  margin-bottom: var(--spacing-md);
}

/* Statistics Section */
#statistics .stat-box {
  background-color: var(--white);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-medium);
  height: 100%;
  transition: transform var(--transition-medium);
}

#statistics .stat-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

#statistics .is-size-1 {
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.1;
}

/* Research Section */
#research figure {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

/* External Resources Section */
.card .title a {
  color: var(--dark);
  transition: color var(--transition-fast);
}

.card .title a:hover {
  color: var(--primary-color);
}

/* Case Studies Section */
.case-study {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-medium);
}

.case-study figure {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-small);
}

.case-study img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Blog Section */
#blog .card {
  margin-bottom: var(--spacing-md);
}

#blog .subtitle {
  color: var(--medium-gray);
}

#blog .card-image {
  height: 220px;
}

#blog .card-image img {
  height: 100%;
}

/* Webinars Section */
.webinar-item {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-medium);
}

.webinar-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.date-box {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: var(--spacing-sm);
  border-radius: var(--border-radius-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.date-box p {
  margin-bottom: 0;
}

/* News Section */
.news-item {
  padding: var(--spacing-md);
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-medium);
  height: 100%;
  transition: transform var(--transition-medium);
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.news-item .subtitle {
  color: var(--medium-gray);
}

/* Press Section */
.press-item {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-medium);
}

.press-item .is-italic {
  color: var(--medium-gray);
}

.press-item figure {
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-small);
}

/* Contact Section */
#contact .card {
  border-radius: var(--border-radius-lg);
}

#contact form .field {
  margin-bottom: var(--spacing-sm);
}

#contact .input,
#contact .textarea {
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius-sm);
  transition: border-color var(--transition-fast);
}

#contact .input:focus,
#contact .textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(54, 199, 94, 0.2);
}

#contact .label {
  color: var(--dark-gray);
  font-weight: 500;
}

.contact-info p {
  margin-bottom: var(--spacing-xs);
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--light-gray);
  padding: var(--spacing-lg) 0;
}

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

.footer p {
  color: var(--light-gray);
}

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

.footer ul li {
  margin-bottom: var(--spacing-xs);
}

.footer a {
  color: var(--light-gray);
  transition: color var(--transition-fast);
}

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

.social-links {
  display: flex;
  flex-direction: column;
}

.social-links li {
  margin-right: var(--spacing-sm);
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  color: var(--white);
  padding: var(--spacing-md);
  z-index: 9999;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content p {
  margin: 0;
  padding-right: var(--spacing-md);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--off-white);
}

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

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

/* Privacy & Terms Pages */
.content-page {
  padding-top: 100px;
  padding-bottom: var(--spacing-lg);
}

.content-page .container {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-medium);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    margin-bottom: var(--spacing-sm);
    padding-right: 0;
  }
  
  .webinar-item .columns {
    flex-direction: column;
  }
  
  .webinar-item .column.is-one-quarter {
    margin-bottom: var(--spacing-sm);
  }
  
  .date-box {
    padding: var(--spacing-xs);
  }
  
  .case-study .columns {
    flex-direction: column;
  }
  
  .case-study .column.is-one-third {
    margin-bottom: var(--spacing-sm);
  }
  
  .press-item .columns {
    flex-direction: column;
    text-align: center;
  }
  
  .press-item .column.is-one-quarter {
    margin-bottom: var(--spacing-sm);
  }
}

@media screen and (max-width: 480px) {
  .hero .title {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .buttons.is-centered {
    flex-direction: column;
  }
  
  .buttons.is-centered .button {
    width: 100%;
    margin: 0.5rem 0;
  }
}