:root {
  /* Тетрадная цветовая схема */
  --primary: #3a5bbc;
  --primary-light: #5a77d1;
  --primary-dark: #2a4189;
  --secondary: #bc3a5b;
  --secondary-light: #d15a77;
  --secondary-dark: #89294a;
  --tertiary: #5bbc3a;
  --tertiary-light: #77d15a;
  --tertiary-dark: #418929;
  --quaternary: #bc5b3a;
  --quaternary-light: #d17a5a;
  --quaternary-dark: #894229;
  
  /* Нейтральные цвета */
  --white: #ffffff;
  --light-gray: #f5f7fa;
  --medium-gray: #e1e5ee;
  --gray: #9ea7bb;
  --dark-gray: #3c4858;
  --black: #222222;
  
  /* Типографика */
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Merriweather', serif;
  
  /* Размеры */
  --container-width: 1200px;
  --border-radius: 8px;
  --card-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  
  /* Анимации */
  --transition-fast: all 0.3s ease;
  --transition-medium: all 0.5s ease;
  --transition-slow: all 0.8s ease;
}

/* Базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

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

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

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

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

.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
}

.has-parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

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

/* Кнопки */
.button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-family: var(--heading-font);
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  text-align: center;
}

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

.button.is-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(58, 91, 188, 0.3);
}

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

.button.is-secondary:hover {
  background-color: var(--secondary-light);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(188, 58, 91, 0.3);
}

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

.button.is-tertiary:hover {
  background-color: var(--tertiary-light);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(91, 188, 58, 0.3);
}

.button.is-light {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.button.is-light:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

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

.button.is-outlined:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(58, 91, 188, 0.3);
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition-fast);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.navbar-brand h1 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--primary);
}

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

.navbar-item {
  margin-left: 1.5rem;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-gray);
  position: relative;
}

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

.navbar-item::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-fast);
}

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

.navbar-burger {
  display: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  position: relative;
}

.navbar-burger span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--dark-gray);
  margin: 6px auto;
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  position: relative;
  /*height: 100vh;*/
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  margin-top: 0;
  overflow: hidden;
}

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

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.5s;
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--white);
  font-weight: 400;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.8s;
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: fadeIn 1s forwards 1.1s;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 1s forwards 1.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Vision Section */
.vision-section {
  background-color: var(--white);
}

.vision-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.vision-text {
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

.vision-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

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

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

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

.stat-label {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  color: var(--dark-gray);
  display: block;
}

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

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

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

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

.image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

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

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

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

.card-content p {
  color: var(--dark-gray);
  font-size: 0.95rem;
}

/* Portfolio Section */
.portfolio-section {
  background-color: var(--white);
}

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

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

/* Success Stories Section */
.success-stories-section {
  position: relative;
  color: var(--white);
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-item {
  display: none;
}

.testimonial-content {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 2rem;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.3);
}

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

blockquote {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

blockquote::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 5rem;
  position: absolute;
  left: -30px;
  top: -40px;
  color: rgba(255, 255, 255, 0.2);
}

cite {
  font-style: normal;
  font-weight: 700;
  font-family: var(--heading-font);
  font-size: 1rem;
  display: block;
  margin-top: 1rem;
}

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

.testimonial-controls button {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 0.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-controls button:hover {
  background-color: var(--primary);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--light-gray);
}

.gallery-grid {
  margin-top: 3rem;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin-bottom: 1.5rem;
  position: relative;
  height: 250px;
  transition: var(--transition-medium);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

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

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

.resource-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-medium);
}

.resource-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.resource-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.resource-card h3 a {
  color: var(--white);
  transition: var(--transition-fast);
}

.resource-card h3 a:hover {
  color: var(--primary-light);
}

.resource-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Insights Section */
.insights-section {
  background-color: var(--white);
}

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

.accordion {
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.accordion-header {
  background-color: var(--light-gray);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.accordion-header .icon {
  font-family: monospace;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition-fast);
}

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

.accordion-header.active h3 {
  color: var(--white);
}

.accordion-header.active .icon {
  color: var(--white);
  transform: rotate(45deg);
}

.accordion-content {
  background-color: var(--white);
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.accordion-content p {
  padding: 1rem 0;
  font-size: 0.95rem;
}

.insight-image-container {
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

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

/* Press Section */
.press-section {
  position: relative;
  color: var(--white);
}

.press-grid {
  margin-top: 3rem;
}

.press-item {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.press-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.press-logo {
  width: 150px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.press-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.press-item h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--white);
}

.press-date {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Careers Section */
.careers-section {
  background-color: var(--light-gray);
}

.careers-intro {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.job-listings {
  margin-top: 2rem;
}

.job-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: var(--transition-medium);
}

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

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

.job-item p {
  margin-bottom: 1.5rem;
}

.careers-image-container {
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

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

/* Contact Section */
.contact-section {
  position: relative;
  color: var(--white);
}

.contact-info {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}

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

.contact-item .icon {
  font-size: 1.5rem;
  margin-right: 1.5rem;
}

.contact-form-container {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}

.contact-form .label {
  color: var(--white);
  font-family: var(--heading-font);
  margin-bottom: 0.5rem;
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: var(--border-radius);
  padding: 0.8rem 1rem;
  font-family: var(--body-font);
  width: 100%;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  box-shadow: 0 0 0 3px rgba(58, 91, 188, 0.3);
  outline: none;
}

.contact-form .select {
  position: relative;
  width: 100%;
}

.contact-form .select::after {
  content: '▼';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 0.8rem;
  color: var(--dark-gray);
}

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

.footer h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer p {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

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

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

.footer-links a {
  color: var(--medium-gray);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

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

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

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

.footer-social a {
  color: var(--medium-gray);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
}

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

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

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray);
}

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

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

.success-page h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.success-page p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

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

.page-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary);
}

.page-content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1.5rem;
  color: var(--primary-dark);
}

.page-content p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

.page-content ul, 
.page-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

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

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(50, 50, 50, 0.95);
  color: var(--white);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.cookie-content p {
  margin: 0;
  padding-right: 2rem;
}

#acceptCookies {
  white-space: nowrap;
}

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

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

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

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

.mb-4 {
  margin-bottom: 2rem;
}

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

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
  }

  .navbar-menu.is-active {
    display: flex;
  }

  .navbar-item {
    margin: 0.5rem 0;
    padding: 0.5rem 1.5rem;
    width: 100%;
    text-align: center;
  }

  .navbar-burger {
    display: block;
  }

  .navbar-burger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .navbar-burger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .navbar-burger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content p {
    margin-bottom: 1rem;
    padding-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .button {
    width: 100%;
    margin-bottom: 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .testimonial-content {
    padding: 2rem 1.5rem;
  }

  .contact-info,
  .contact-form-container {
    margin-bottom: 2rem;
  }
}

/* Animations */
[data-motion="fade-in"] {
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

[data-motion="fade-in-delay"] {
  opacity: 0;
  transition: opacity 0.8s ease-in-out 0.3s, transform 0.8s ease-in-out 0.3s;
}

[data-motion="fade-in-delay-2"] {
  opacity: 0;
  transition: opacity 0.8s ease-in-out 0.6s, transform 0.8s ease-in-out 0.6s;
}

[data-motion="fade-in-delay-3"] {
  opacity: 0;
  transition: opacity 0.8s ease-in-out 0.9s, transform 0.8s ease-in-out 0.9s;
}

[data-motion="slide-up"] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

[data-motion="slide-up-delay"] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-in-out 0.3s, transform 0.8s ease-in-out 0.3s;
}

[data-motion="parallax"] {
  transition: transform 0.5s ease-out;
}

[data-motion="counter"] .stat-number {
  display: inline-block;
  animation: countUp 2s ease-out forwards;
}

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

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Columns */
.columns {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}

.columns:last-child {
  margin-bottom: -0.75rem;
}

.column {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0.75rem;
}

.column.is-narrow {
  flex: none;
}

.column.is-one-quarter {
  flex: none;
  width: 25%;
}

.column.is-one-third {
  flex: none;
  width: 33.3333%;
}

.column.is-half {
  flex: none;
  width: 50%;
}

.column.is-two-thirds {
  flex: none;
  width: 66.6666%;
}

@media screen and (max-width: 768px) {
  .column.is-one-quarter,
  .column.is-one-third,
  .column.is-half,
  .column.is-two-thirds {
    width: 100%;
  }
}

.is-multiline {
  flex-wrap: wrap;
}

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

/* Forms */
.field {
  margin-bottom: 1.5rem;
}

.label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.control {
  position: relative;
  width: 100%;
}

.input, .textarea, .select select {
  background-color: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  color: var(--dark-gray);
  padding: 0.75rem;
  width: 100%;
  transition: var(--transition-fast);
}

.input:focus, .textarea:focus, .select select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(58, 91, 188, 0.25);
  outline: none;
}

.select {
  display: block;
  position: relative;
  width: 100%;
}

.select select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.is-fullwidth {
  width: 100%;
}

.textarea {
  resize: vertical;
}