:root {
  /* Primary Colors */
  --primary-color: #ff6b35;
  --primary-light: #ff8c61;
  --primary-dark: #e54e17;
  
  /* Secondary Colors */
  --secondary-color: #2ec4b6;
  --secondary-light: #4ad6ca;
  --secondary-dark: #1da89b;
  
  /* Accent Colors */
  --accent-color: #f9cb40;
  --accent-light: #fad86b;
  --accent-dark: #e5b520;
  
  /* Neutral Colors */
  --dark-color: #333333;
  --dark-light: #555555;
  --dark-lighter: #777777;
  --light-color: #ffffff;
  --light-dark: #f5f5f5;
  --light-darker: #eeeeee;
  
  /* Gradient Colors */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  --gradient-light: linear-gradient(135deg, var(--light-color), var(--light-dark));
  --gradient-dark: linear-gradient(135deg, var(--dark-color), var(--dark-light));
  --gradient-overlay: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  
  /* Typography */
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Source Sans Pro', sans-serif;
  
  /* Spacing */
  --section-spacing: 80px;
  --card-spacing: 24px;
  --text-spacing: 16px;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* Shadow */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
  --shadow-card: 0 10px 30px rgba(0,0,0,0.08);
  
  /* Animation */
  --animation-speed-fast: 0.2s;
  --animation-speed-medium: 0.4s;
  --animation-speed-slow: 0.8s;
}
.title:not(.is-spaced)+.subtitle{
  margin-top: 0 !important;
}
/* Global Styles */
html, body {
  font-family: var(--body-font);
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--dark-light);
}

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

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

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

section {
  padding: 60px 0;
  position: relative;
}

/* Container adjustments */
.container {
  max-width: 1200px;
  padding: 0 20px;
}

/* Button Styles */
.button {
  transition: transform var(--animation-speed-fast) cubic-bezier(0.34, 1.56, 0.64, 1), 
              background-color var(--animation-speed-fast) ease,
              box-shadow var(--animation-speed-fast) ease;
  position: relative;
  overflow: hidden;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  z-index: 1;
}

.button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button.is-primary {
  background: var(--gradient-primary);
  border: none;
}

.button.is-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.button.is-light {
  background: var(--gradient-light);
  color: var(--dark-color);
  border: none;
}

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

.is-large {
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
}

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

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.navbar {
  padding: 0.5rem 0;
}

.navbar-item {
  font-weight: 500;
  position: relative;
  padding: 0.5rem 1rem;
  color: var(--dark-color);
  transition: color var(--animation-speed-fast) ease;
}

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

.navbar-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transition: all var(--animation-speed-fast) ease;
  transform: translateX(-50%);
}

.navbar-item:hover::after {
  width: 70%;
}

.navbar-menu.is-active {
  box-shadow: var(--shadow-md);
  animation: slideIn var(--animation-speed-medium) cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar-burger {
  transition: all var(--animation-speed-fast) ease;
}

.navbar-burger:hover {
  background-color: var(--light-darker);
}

/* Hero Section */
.hero {
  position: relative;
  color: var(--light-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 80px; /* For fixed header */
}

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

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

.hero .title, 
.hero .subtitle,
.hero p {
  color: var(--light-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero .subtitle {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.hero-button {
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--light-color);
  text-align: center;
  line-height: 40px;
  transition: all var(--animation-speed-fast) ease;
}

.hero-scroll-indicator a:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.05;
  z-index: -1;
}

.about-image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: 2rem;
}

.about-image-container img {
  transition: transform var(--animation-speed-medium) ease;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

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

.statistics-widget {
  background: var(--gradient-light);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.stat-item {
  text-align: center;
  padding: 1rem;
  transition: transform var(--animation-speed-medium) ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

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

.stat-label {
  font-size: 1rem;
  color: var(--dark-light);
  font-weight: 500;
}

/* Methodology Section */
.methodology-section {
  background: linear-gradient(to right, #f9f9f9, #ffffff);
  position: relative;
}

.methodology-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.03;
  z-index: -1;
}

.methodology-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--animation-speed-medium) ease, 
              box-shadow var(--animation-speed-medium) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

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

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

.methodology-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--animation-speed-medium) ease;
}

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

.methodology-card .card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.methodology-card .title {
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.methodology-cta {
  margin-top: 3rem;
}

/* Gallery Section */
.gallery-section {
  background: linear-gradient(to bottom, #ffffff, #f5f5f5);
  position: relative;
}

.gallery-slider {
  position: relative;
  margin-top: 2rem;
}

.gallery-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--animation-speed-medium) ease, 
              box-shadow var(--animation-speed-medium) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

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

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

.gallery-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--animation-speed-medium) ease;
}

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

.gallery-card .card-content {
  padding: 1.5rem;
  text-align: center;
}

.gallery-controls {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.gallery-controls button {
  margin: 0 0.5rem;
}

/* Resources Section */
.resources-section {
  background-color: #f9f9f9;
  position: relative;
}

.resource-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--animation-speed-medium) ease, 
              box-shadow var(--animation-speed-medium) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}

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

.resource-card .card-content {
  padding: 2rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resource-card .title {
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.resource-card p {
  flex-grow: 1;
}

.resource-card .button {
  margin-top: 1rem;
  align-self: center;
}

/* Events Section */
.events-section {
  background: linear-gradient(to right, #f5f5f5, #ffffff);
  position: relative;
}

.event-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--animation-speed-medium) ease, 
              box-shadow var(--animation-speed-medium) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

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

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

.event-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--animation-speed-medium) ease;
}

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

.event-card .card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.event-date {
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--primary-color);
  color: var(--light-color);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.event-details {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-darker);
}

.event-details div {
  margin-bottom: 0.5rem;
}

.register-event-button {
  margin-top: 1.5rem;
  align-self: flex-start;
}

/* Team Section */
.team-section {
  background: linear-gradient(to bottom, #ffffff, #f9f9f9);
  position: relative;
}

.team-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--animation-speed-medium) ease, 
              box-shadow var(--animation-speed-medium) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

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

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

.team-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--animation-speed-medium) ease;
}

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

.team-card .card-content {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team-card .title {
  margin-bottom: 0.25rem;
}

.team-card .subtitle {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 500;
}

.social-links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-social-link {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: var(--border-radius-sm);
  background-color: var(--light-darker);
  color: var(--dark-color);
  transition: all var(--animation-speed-fast) ease;
  font-size: 0.9rem;
}

.team-social-link:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
  transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
  background: var(--gradient-light);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.03;
  z-index: -1;
}

.testimonial-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  background-color: var(--light-color);
  box-shadow: var(--shadow-card);
  transition: transform var(--animation-speed-medium) ease, 
              box-shadow var(--animation-speed-medium) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

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

.testimonial-card .card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  position: relative;
  padding: 0 1rem 1.5rem;
  flex-grow: 1;
}

.testimonial-quote::before {
  content: '"';
  font-family: var(--heading-font);
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 5rem;
  color: var(--light-darker);
  opacity: 0.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--light-darker);
  padding-top: 1.5rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 3px solid var(--light-darker);
}

.testimonial-info {
  flex-grow: 1;
}

.testimonial-info .title {
  margin-bottom: 0.25rem;
}

.testimonial-info .subtitle {
  color: var(--dark-lighter);
}

.testimonial-controls {
  margin-top: 2rem;
}

.testimonial-controls button {
  margin: 0 0.5rem;
}

/* Partners Section */
.partners-section {
  background-color: var(--light-color);
  position: relative;
}

.partner-logo {
  text-align: center;
  margin-bottom: 2rem;
  transition: transform var(--animation-speed-medium) ease;
}

.partner-logo:hover {
  transform: translateY(-5px);
}

.partner-logo img {
  max-width: 100%;
  height: auto;
  max-height: 100px;
  margin-bottom: 1rem;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
}

.partner-name {
  font-weight: 600;
  color: var(--dark-light);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(to right, #f9f9f9, #ffffff);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.03;
  z-index: -1;
}

.contact-info {
  padding: 2rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  height: 100%;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-item p {
  margin-bottom: 0.5rem;
}

.contact-social-link {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--border-radius-sm);
  background-color: var(--light-darker);
  color: var(--dark-color);
  transition: all var(--animation-speed-fast) ease;
  font-size: 0.9rem;
}

.contact-social-link:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
  transform: translateY(-2px);
}

.contact-form-container {
  padding: 2rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  height: 100%;
}

.contact-form .field {
  margin-bottom: 1.5rem;
}

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

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  border-radius: var(--border-radius-md);
  border: 2px solid var(--light-darker);
  box-shadow: none;
  transition: all var(--animation-speed-fast) ease;
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.contact-form .button {
  margin-top: 1rem;
}

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

.footer::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: -1;
}

.footer .title {
  color: var(--light-color);
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

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

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

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

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

.footer-links a {
  color: var(--light-dark);
  transition: color var(--animation-speed-fast) ease, transform var(--animation-speed-fast) ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.footer .social-links {
  margin-top: 1.5rem;
  justify-content: flex-start;
}

.footer .social-links a {
  color: var(--light-darker);
  margin-right: 1.5rem;
  font-size: 0.9rem;
  transition: color var(--animation-speed-fast) ease;
}

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

.newsletter-form {
  margin-top: 1.5rem;
}

.newsletter-form .input {
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
  border: none;
}

.newsletter-form .button {
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
}

.footer-bottom p {
  color: var(--light-darker);
  margin-bottom: 0;
}

/* Success Page */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--gradient-light);
  text-align: center;
  padding: 2rem;
}

.success-container {
  max-width: 600px;
  padding: 3rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
}

.success-icon {
  font-size: 5rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.success-title {
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.success-message {
  margin-bottom: 2rem;
  color: var(--dark-light);
}

.back-home-button {
  display: inline-block;
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 100px;
  padding-bottom: 60px;
}

.page-content .container {
  background-color: var(--light-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  padding: 3rem;
}

.page-content h1 {
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.page-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.page-content p {
  margin-bottom: 1.5rem;
  color: var(--dark-light);
}

.page-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--dark-light);
}

.page-content li {
  margin-bottom: 0.5rem;
}

/* Cookie Consent */
#cookie-consent {
  backdrop-filter: blur(8px);
  transition: all var(--animation-speed-medium) ease;
}

#accept-cookies {
  transition: all var(--animation-speed-fast) ease;
}

#accept-cookies:hover {
  background-color: #608aff;
  transform: scale(1.05);
}

/* Animations */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Read More Links */
.read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  padding-right: 20px;
  transition: all var(--animation-speed-fast) ease;
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all var(--animation-speed-fast) ease;
}

.read-more:hover {
  color: var(--primary-dark);
  padding-right: 25px;
}

.read-more:hover::after {
  right: -5px;
}

/* Media Queries */
@media screen and (max-width: 1023px) {
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .hero .title {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.2rem;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .card {
    margin-bottom: 2rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .contact-info, .contact-form-container {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .hero .title {
    font-size: 1.8rem;
  }
  
  .hero .subtitle {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 30px 0;
  }
  
  .title.is-2 {
    font-size: 1.75rem;
  }
  
  .buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .buttons .button {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}