:root {
  /* Основная цветовая схема */
  --primary-color: #4d7a97;
  --primary-dark: #3a5d74;
  --primary-light: #6a97b4;
  --secondary-color: #f0a867;
  --secondary-dark: #d99456;
  --secondary-light: #ffbe7d;
  --accent-color: #e56b6f;
  --accent-dark: #c9575b;
  --accent-light: #ff8288;
  
  /* Пастельные цвета для эко-минимализма */
  --pastel-blue: #a8dadc;
  --pastel-green: #b5e48c;
  --pastel-yellow: #f6bd60;
  --pastel-pink: #f7cad0;
  
  /* Нейтральные цвета */
  --white: #ffffff;
  --light-gray: #f5f5f7;
  --medium-gray: #e6e6ea;
  --dark-gray: #4a4e69;
  --black: #22223b;
  
  /* Тени для нейроморфизма */
  --neuro-shadow-light: 8px 8px 16px rgba(174, 174, 192, 0.15);
  --neuro-shadow-dark: -8px -8px 16px rgba(255, 255, 255, 0.8);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  
  /* Шрифты */
  --heading-font: 'Archivo Black', sans-serif;
  --body-font: 'Roboto', sans-serif;
  
  /* Размеры */
  --container-max-width: 1200px;
  --section-padding: 80px 0;
  --card-border-radius: 15px;
  --button-border-radius: 30px;
  
  /* Переходы */
  --transition-slow: all 0.5s ease-in-out;
  --transition-medium: all 0.3s ease-in-out;
  --transition-fast: all 0.15s ease-in-out;
}

/* Сброс стилей и базовые настройки */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

/* Типографика */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--black);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--dark-gray);
}

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

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

/* Контейнер */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 15px;
}

/* Секции */
.section {
  padding: var(--section-padding);
}

.section-alt {
  background-color: var(--white);
}

/* Заголовки секций */
.section-title {
  text-align: center;
  position: relative;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.title-underline {
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 0 auto 30px;
  position: relative;
  border-radius: 2px;
}

.title-underline::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 4px;
  background: var(--secondary-color);
  left: -20px;
  border-radius: 2px;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--dark-gray);
  font-size: 1.1rem;
}

/* Хедер */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-medium);
}

.header.scrolled {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
}

.navbar-brand img {
  max-height: 50px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  color: var(--dark-gray);
  transition: var(--transition-fast);
}

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

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Кнопки - Глобальные стили */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--button-border-radius);
  transition: var(--transition-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: var(--neuro-shadow-light);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--neuro-shadow-light);
}

.btn-primary {
  color: var(--white);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus {
  color: var(--white);
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  color: var(--white);
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-secondary:hover, .btn-secondary:focus {
  color: var(--white);
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.btn-outline {
  color: var(--white);
  background-color: transparent;
  border-color: var(--white);
}

.btn-outline:hover, .btn-outline:focus {
  color: var(--primary-color);
  background-color: var(--white);
  border-color: var(--white);
}

.btn-outline-primary {
  color: var(--primary-color);
  background-color: transparent;
  border-color: var(--primary-color);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  color: var(--white);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Формы и инпуты */
.form-control, .form-select {
  height: 50px;
  border-radius: 8px;
  border: 1px solid var(--medium-gray);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background-color: var(--white);
  transition: var(--transition-fast);
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.05);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.2rem rgba(77, 122, 151, 0.25);
}

textarea.form-control {
  min-height: 120px;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Карточки */
.card {
  border: none;
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  background-color: var(--white);
  transition: var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.card-image {
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

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

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

.card-content h4 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.card-content p {
  margin-bottom: 1.25rem;
}

.card-content .btn {
  margin-top: auto;
}

/* Hero секция */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--white);
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Acerca del curso Section */
.content-wrapper {
  padding: 2rem 0;
}

.course-features {
  display: grid;
  grid-gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--card-border-radius);
  box-shadow: var(--neuro-shadow-light);
  transition: var(--transition-medium);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pastel-blue);
  border-radius: 50%;
  padding: 10px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-text h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.feature-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

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

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

/* Análisis del sector Section */
.analysis-timeline {
  position: relative;
  margin-top: 2rem;
}

.analysis-timeline::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 2px;
  background: var(--primary-light);
  left: 15px;
  top: 0;
}

.timeline-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 1.5rem;
}

.timeline-marker {
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 50%;
  left: 0;
  top: 0;
  border: 5px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary-light);
}

.timeline-content h4 {
  margin-bottom: 0.5rem;
}

.timeline-content p {
  margin-bottom: 0;
}

/* Accolades Section */
.accolades {
  background-color: var(--light-gray);
}

.accolade-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--card-border-radius);
  box-shadow: var(--neuro-shadow-light), var(--neuro-shadow-dark);
  transition: var(--transition-medium);
  height: 100%;
}

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

.accolade-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.accolade-card h5 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.accolade-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

/* Perspectivas futuras Section */
.progress-indicators {
  margin-top: 2rem;
}

.indicator-item {
  margin-bottom: 1.5rem;
}

.indicator-item h5 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.progress {
  height: 10px;
  border-radius: 5px;
  background-color: var(--medium-gray);
  margin-bottom: 0.5rem;
}

.progress-bar {
  background-color: var(--primary-color);
  border-radius: 5px;
}

.indicator-item p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

/* Resources Section */
.resources {
  background-color: var(--light-gray);
}

.resource-card {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.resource-card .card-image {
  height: 200px;
  overflow: hidden;
  text-align: center;
}

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

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

.resource-card .card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-card .card-content h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.resource-card .card-content p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.resource-card .card-content .btn {
  margin-top: auto;
}

/* Formación para profesionales Section */
.program-card {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
}

.program-card .card-image {
  height: 180px;
  overflow: hidden;
  text-align: center;
}

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

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

.program-card .card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.program-card .card-content h4 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.program-card .card-content p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.program-details {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
  text-align: left;
  width: 100%;
}

.program-details li {
  margin-bottom: 0.5rem;
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
}

.program-details li::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  left: 0;
  top: 8px;
}

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

.testimonial-card {
  border: none;
  border-radius: var(--card-border-radius);
  box-shadow: var(--neuro-shadow-light), var(--neuro-shadow-dark);
  overflow: hidden;
  transition: var(--transition-medium);
  height: 100%;
}

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

.testimonial-card .image-container {
  padding: 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
  transition: var(--transition-medium);
  margin: 0 auto;
}

.testimonial-card:hover img {
  border-color: var(--primary-color);
}

.testimonial-card .card-body {
  padding: 1.5rem;
}

.testimonial-card .card-title {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.testimonial-card .card-subtitle {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.testimonial-card .card-text {
  font-style: italic;
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

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

.insight-card .card-image {
  height: 200px;
  overflow: hidden;
  text-align: center;
}

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

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

.insight-card .card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.insight-card .card-content h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.insight-card .card-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

.career-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--card-border-radius);
  box-shadow: var(--neuro-shadow-light), var(--neuro-shadow-dark);
  transition: var(--transition-medium);
  margin-bottom: 1.5rem;
  height: 100%;
}

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

.career-icon {
  min-width: 80px;
  text-align: center;
}

.career-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.career-content {
  flex: 1;
}

.career-content h4 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.career-content p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.salary-range {
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* Contact Section */
.contact {
  background-color: var(--light-gray);
}

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

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 10px;
  box-shadow: var(--neuro-shadow-light);
}

.info-icon img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
}

.info-text h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.info-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.map-container {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 300px;
}

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

.contact-form-container {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-shadow);
}

.contact-form-container h3 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-form .form-control, .contact-form .form-select {
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

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

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

.social-links {
  margin-top: 1.5rem;
}

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

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

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

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

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

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

.newsletter {
  margin-top: 2rem;
}

.newsletter h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.newsletter .input-group {
  margin-top: 1rem;
}

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

.copyright p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin-bottom: 0;
}

/* Modal */
.modal-content {
  border-radius: var(--card-border-radius);
  border: none;
  box-shadow: var(--card-shadow);
}

.modal-header {
  border-bottom: 1px solid var(--medium-gray);
  padding: 1.5rem;
}

.modal-title {
  font-size: 1.5rem;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  border-top: 1px solid var(--medium-gray);
  padding: 1.5rem;
}

.program-detail {
  padding: 1rem 0;
}

.program-detail h3 {
  margin-bottom: 1rem;
}

.program-detail h4 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.program-detail ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.program-detail li {
  margin-bottom: 0.5rem;
}

.program-detail p {
  margin-bottom: 1rem;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.success-container {
  max-width: 800px;
  padding: 3rem;
  text-align: center;
  background-color: var(--white);
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-shadow);
}

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

.success-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

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

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

/* Privacy & Terms Pages */
.page-content {
  padding-top: 120px;
  min-height: calc(100vh - 400px);
}

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

.page-title {
  margin-bottom: 2rem;
  text-align: center;
}

.page-section {
  margin-bottom: 2.5rem;
}

.page-section:last-child {
  margin-bottom: 0;
}

.page-section h3 {
  margin-bottom: 1.25rem;
  color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 991.98px) {
  :root {
    --section-padding: 60px 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .navbar-collapse {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: var(--card-shadow);
  }
  
  .career-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .career-content {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  :root {
    --section-padding: 50px 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-section {
    padding: 100px 0;
  }
  
  .testimonial-card .row {
    flex-direction: column;
  }
  
  .testimonial-card .image-container {
    padding-bottom: 0;
  }
  
  .info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .info-text {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  :root {
    --section-padding: 40px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .feature-text {
    text-align: center;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .page-content .container {
    padding: 1.5rem;
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.slide-in-left {
  animation: slideInLeft 1s ease-out forwards;
}

.slide-in-right {
  animation: slideInRight 1s ease-out forwards;
}

.zoom-in {
  animation: zoomIn 1s ease-out forwards;
}

/* Scroll animations (will be triggered by JS) */
.scroll-animation {
  opacity: 0;
  transition: var(--transition-medium);
}

.scroll-animation.active {
  opacity: 1;
}

.scroll-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-medium);
}

.scroll-fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: var(--transition-medium);
}

.scroll-fade-left.active {
  opacity: 1;
  transform: translateX(0);
}

.scroll-fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: var(--transition-medium);
}

.scroll-fade-right.active {
  opacity: 1;
  transform: translateX(0);
}

.scroll-zoom {
  opacity: 0;
  transform: scale(0.95);
  transition: var(--transition-medium);
}

.scroll-zoom.active {
  opacity: 1;
  transform: scale(1);
}