:root {
  /* Primary colors */
  --primary-color: #0055a4;
  --primary-light: #1a73e8;
  --primary-dark: #00408c;
  
  /* Complementary colors */
  --complementary-color: #ff9900;
  --complementary-light: #ffb444;
  --complementary-dark: #e67e00;
  
  /* Accent colors */
  --accent-color: #23c4b7;
  --accent-light: #4dd8cc;
  --accent-dark: #1b9d93;
  
  /* Neutral colors */
  --neutral-dark: #333333;
  --neutral-medium: #666666;
  --neutral-light: #f8f9fa;
  
  /* Text colors */
  --text-dark: #222222;
  --text-medium: #444444;
  --text-light: #ffffff;
  
  /* Other variables */
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease-in-out;
  --section-padding: 80px 0;
  --container-padding: 0 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-medium);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.2rem;
}

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

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

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

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

.section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  margin-bottom: 50px;
  text-align: center;
}

.section-header .title {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-header .title::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background: var(--complementary-color);
  bottom: -10px;
  left: 25%;
  border-radius: 2px;
}

.section-header .subtitle {
  color: var(--neutral-medium);
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary-color);
  color: var(--text-light) !important;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.button:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

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

.button.is-light {
  background-color: var(--text-light);
  color: var(--primary-color) !important;
}

.button.is-light:hover {
  background-color: var(--neutral-light);
  color: var(--primary-dark) !important;
}

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

.button.is-outlined:hover {
  background-color: var(--primary-color);
  color: var(--text-light) !important;
}

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

.buttons.is-centered {
  justify-content: center;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

.navbar-item {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.7rem 1rem;
  transition: var(--transition);
}

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

.navbar-burger {
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: none;
}

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

.navbar-end {
  margin-left: auto;
  display: flex;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-light);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 85, 164, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
}

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

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

.hero .subtitle {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* About Section */
.about-image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.about-image-container img {
  transition: transform 0.5s ease;
}

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

.image-container {
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 20px;
  text-align: center;
}

.image-container img {
  width: 100%;
  transition: transform 0.5s ease;
  object-fit: cover;
}

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

/* Statistics Section */
.has-background-light {
  background-color: var(--neutral-light);
}

.stat-card {
  background-color: white;
  padding: 30px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Cards */
.card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-image {
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card .title {
  color: var(--text-dark);
  margin-bottom: 10px;
}

.card .subtitle {
  color: var(--neutral-medium);
  margin-bottom: 15px;
}

.card .content {
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Sustainability Section */
.sustainability-cards .card {
  text-align: center;
}

.sustainability-cards .card-image {
  margin-bottom: 15px;
}

.sustainability-cards .card-content {
  padding: 20px;
}

/* Success Stories Section */
.success-card .card-content {
  padding: 25px;
}

/* Partners Section */
.partners-carousel {
  margin: 30px 0;
}

.partner-card {
  text-align: center;
  padding: 20px;
}

.partner-card img {
  max-height: 100px;
  margin: 0 auto 15px;
  object-fit: contain;
}

/* Testimonials Section */
.testimonial-card {
  position: relative;
  padding: 30px;
}

.testimonial-card .media {
  margin-bottom: 20px;
}

.testimonial-card .media-left {
  margin-right: 15px;
}

.testimonial-card .image.is-64x64 {
  width: 64px;
  height: 64px;
  overflow: hidden;
}

.testimonial-card .image.is-64x64 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card .rating {
  margin-top: 15px;
  color: var(--complementary-color);
}

/* Awards Section */
.award-card {
  text-align: center;
  padding: 20px;
}

.award-card img {
  max-height: 150px;
  margin: 0 auto 20px;
  object-fit: contain;
}

/* Blog Section */
.blog-card {
  margin-bottom: 30px;
}

.blog-card .card-content {
  padding: 25px;
}

.blog-card .title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.blog-card .subtitle {
  color: var(--neutral-medium);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

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

/* Contact Section */
.contact-info {
  margin-bottom: 30px;
}

.contact-info strong {
  color: var(--text-dark);
}

.contact-map {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.contact-form .field {
  margin-bottom: 20px;
}

.contact-form .label {
  font-weight: 600;
  color: var(--text-dark);
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select {
  border-radius: var(--border-radius);
  border: 1px solid #ddd;
  padding: 10px 15px;
  transition: var(--transition);
}

.contact-form .input:focus,
.contact-form .textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 85, 164, 0.2);
}

.contact-form .button {
  margin-top: 10px;
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 70px 0 30px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-title {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

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

.social-links {
  margin-top: 20px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  margin-right: 10px;
  transition: var(--transition);
  display: inline-block;
}

.social-links a:hover {
  color: var(--complementary-color);
  transform: translateY(-3px);
}

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

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 20px;
}

.success-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  font-size: 5rem;
  color: var(--complementary-color);
  margin-bottom: 30px;
}

/* Privacy & Terms Pages */
.privacy-page,
.terms-page {
  padding-top: 100px;
  padding-bottom: 50px;
}

.privacy-content,
.terms-content {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
}

.privacy-content h2,
.terms-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.privacy-content h3,
.terms-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.privacy-content p,
.terms-content p {
  margin-bottom: 20px;
}

.privacy-content ul,
.terms-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

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

.has-text-white {
  color: var(--text-light) !important;
}

.mb-6 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 2rem;
}

.mt-6 {
  margin-top: 3rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Media Queries */
@media screen and (max-width: 1023px) {
  .navbar-burger {
    display: block;
  }
  
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  .navbar-menu.is-active {
    display: block;
  }
  
  .navbar-end {
    flex-direction: column;
  }
  
  .navbar-item {
    padding: 15px 0;
  }
  
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .columns {
    margin-left: 0;
    margin-right: 0;
  }
  
  .column {
    padding: 10px;
  }
  
  .hero .title {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.2rem;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .section-header .title {
    font-size: 2rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .buttons {
    flex-direction: column;
  }
  
  .card-image img {
    height: 200px;
  }
}

@media screen and (max-width: 480px) {
  :root {
    --section-padding: 40px 0;
    --container-padding: 0 15px;
  }
  
  .hero .title {
    font-size: 1.8rem;
  }
  
  .hero .subtitle {
    font-size: 1.1rem;
  }
  
  .section-header .title {
    font-size: 1.8rem;
  }
  
  .button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}