/* Variables */
:root {
  /* Primary colors */
  --primary-color: #4a6de5; /* Bright blue */
  --primary-dark: #3553c9; /* Darker blue for hover states */
  --primary-light: #6b89f9; /* Lighter blue for accents */
  
  /* Complementary colors */
  --complementary-color: #e54a6d; /* Bright pink - complementary to blue */
  --complementary-dark: #c93553; /* Darker pink for hover states */
  --complementary-light: #f96b89; /* Lighter pink for accents */
  
  /* Neutral colors */
  --text-dark: #2c3e50; /* Dark blue-gray for main text */
  --text-light: #f8f9fa; /* Light gray for text on dark backgrounds */
  --background-light: #ffffff; /* White for card backgrounds */
  --background-dark: #f7f8fc; /* Very light blue for section backgrounds */
  --gray-light: #e9ecef; /* Light gray for borders */
  --gray-medium: #adb5bd; /* Medium gray for secondary text */
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-medium: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  
  /* Border radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* Font families */
  --font-heading: 'Roboto', sans-serif;
  --font-body: 'Lato', sans-serif;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  --gradient-complementary: linear-gradient(135deg, var(--complementary-color) 0%, var(--complementary-light) 100%);
  --overlay-dark: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

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

html {
  scroll-behavior: smooth;
}

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

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

p {
  margin-bottom: 1.5rem;
}

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

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

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

/* Container classes are defined by Bulma, so we don't redefine them */

/* Section styles */
.section {
  padding: 5rem 1.5rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-medium);
}

.section-title.has-text-centered::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-medium);
  margin-bottom: 3rem;
  font-weight: 300;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--background-light);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  min-height: 80px;
}

.navbar-brand .logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-brand .logo span {
  color: var(--complementary-color);
}

.navbar-item {
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: var(--transition-fast);
}

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

/* Button styles (global) */
.button {
  font-family: var(--font-heading);
  font-weight: 500;
  transition: var(--transition-fast);
  transform: translateY(0);
}

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

.button.is-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

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

.button.is-light {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: white;
  color: white;
}

.button.is-light.is-outlined {
  background-color: transparent;
  border-color: white;
  color: white;
}

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

.button.is-rounded {
  border-radius: 100px;
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(74, 109, 229, 0.7);
  }
  
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(74, 109, 229, 0);
  }
  
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(74, 109, 229, 0);
  }
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-dark);
  z-index: 1;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: white;
  opacity: 0.9;
}

/* Process Section */
.process-section {
  background-color: var(--background-dark);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(74, 109, 229, 0.05);
  border-radius: 50%;
}

.process-container {
  position: relative;
  padding: 2rem 0;
}

.process-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  height: 100%;
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

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

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

.process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  position: relative;
}

.icon-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.process-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--primary-color);
}

/* Behind the Scenes Section */
.behind-scenes {
  position: relative;
  overflow: hidden;
}

.behind-scenes::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  background-color: rgba(229, 74, 109, 0.05);
  border-radius: 50%;
  z-index: -1;
}

.image-container {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.image-container img {
  width: 100%;
  height: auto;
  transition: var(--transition-medium);
  display: block;
}

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

.section-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.behind-stats {
  margin-top: 3rem;
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--background-light);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  height: 100%;
}

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

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

.stat-label {
  display: block;
  font-size: 1rem;
  color: var(--gray-medium);
}

/* Workshops Section */
.workshops-section {
  background-color: var(--background-dark);
  position: relative;
}

.custom-slider {
  position: relative;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.slider-container {
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-item {
  flex: 0 0 100%;
  padding: 1rem;
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 769px) {
  .slider-item {
    flex: 0 0 50%;
  }
}

@media screen and (min-width: 1024px) {
  .slider-item {
    flex: 0 0 33.333%;
  }
}

.workshop-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-medium);
}

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

.workshop-card .card-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.workshop-card .image-container {
  height: 250px;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.workshop-card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.workshop-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.workshop-card p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

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

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

.slider-prev,
.slider-next {
  background-color: var(--primary-color);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-prev:hover,
.slider-next:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gray-medium);
  margin: 0 5px;
  transition: var(--transition-fast);
  cursor: pointer;
}

.slider-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Research Section */
.research-section {
  position: relative;
  overflow: hidden;
}

.research-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-medium);
}

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

.research-card .card-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.research-card .image-container {
  height: 300px;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.research-card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
}

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

.research-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.research-card p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

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

/* Resources Section */
.resources-section {
  background-color: var(--background-dark);
  position: relative;
}

.resource-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.resource-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  background-color: rgba(74, 109, 229, 0.1);
  border-radius: 50%;
  transition: var(--transition-fast);
}

.resource-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.resource-card:hover .resource-icon {
  background-color: var(--primary-color);
}

.resource-card:hover .resource-icon i {
  color: white;
}

.resource-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.resource-card p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.resource-card .button {
  margin-top: auto;
}

/* Media Section */
.media-section {
  position: relative;
  overflow: hidden;
}

.media-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.media-logo {
  width: 150px;
  height: 75px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.media-quote {
  font-style: italic;
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.media-link {
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition-fast);
}

.media-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Blog Section */
.blog-section {
  position: relative;
  overflow: hidden;
}

.blog-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-medium);
}

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

.blog-card .card-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-card .image-container {
  height: 250px;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.blog-card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
}

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

.blog-date {
  color: var(--gray-medium);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.blog-card p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

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

/* News Section */
.news-section {
  background-color: var(--background-dark);
  position: relative;
}

.news-card {
  display: flex;
  background-color: var(--background-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
  margin-bottom: 1.5rem;
  height: 100%;
}

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

.news-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 1rem;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.news-date .day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.news-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.news-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.news-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.news-card p {
  margin-bottom: 1rem;
}

.news-link {
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition-fast);
}

.news-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* FAQ Section */
.faq-section {
  position: relative;
  overflow: hidden;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 1.5rem;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-question h3 {
  font-size: 1.3rem;
  margin-bottom: 0;
  flex-grow: 1;
  padding-right: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition-fast);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-medium);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
  background-color: var(--background-dark);
  position: relative;
  overflow: hidden;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  min-width: 50px;
  height: 50px;
  background-color: rgba(74, 109, 229, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.contact-icon i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.contact-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

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

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

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

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  border-color: var(--gray-light);
  box-shadow: none;
  transition: var(--transition-fast);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px rgba(74, 109, 229, 0.2);
}

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

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 5rem 1.5rem 2rem;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-brand .logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.footer-brand .logo span {
  color: var(--complementary-light);
}

.footer-title {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--complementary-color);
  border-radius: var(--border-radius-sm);
}

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

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

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

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-social {
  list-style-type: none;
  padding: 0;
  margin: 0 0 2rem;
}

.footer-social li {
  margin-bottom: 0.75rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
}

.footer-social a:before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--complementary-color);
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  color: white;
}

.footer-social a:hover:before {
  transform: scale(1.3);
}

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

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Success, Privacy and Terms pages */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

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

.success-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.success-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.success-message {
  margin-bottom: 2rem;
}

.privacy-page,
.terms-page {
  padding-top: 100px;
  padding-bottom: 3rem;
}

.privacy-content,
.terms-content {
  background-color: var(--background-light);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.privacy-content h2,
.terms-content h2 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-content h2:first-child,
.terms-content h2:first-child {
  margin-top: 0;
}

/* Animation Utilities */
[data-animate] {
  opacity: 0;
  transition: var(--transition-slow);
}

[data-animate="fadeIn"] {
  transform: translateY(20px);
}

[data-animate="fadeInLeft"] {
  transform: translateX(-50px);
}

[data-animate="fadeInRight"] {
  transform: translateX(50px);
}

[data-animate="fadeInUp"] {
  transform: translateY(50px);
}

[data-animate="fadeInDown"] {
  transform: translateY(-50px);
}

[data-animate].animate__animated {
  opacity: 1;
  transform: translate(0, 0);
}

/* Media Queries */
@media screen and (max-width: 1023px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 4rem 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .process-card,
  .contact-info,
  .contact-form-container {
    margin-bottom: 1.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .news-date {
    min-width: 60px;
  }
  
  .news-date .day {
    font-size: 1.5rem;
  }
}