:root {
  /* Основная цветовая схема (дополнительная) */
  --primary-color: #2e5cb8;
  --primary-dark: #1a3a78;
  --primary-light: #4d7cd6;
  --secondary-color: #e67e22;
  --secondary-dark: #c86a1b;
  --secondary-light: #f39c12;
  --accent-color: #2ecc71;
  --accent-dark: #27ae60;
  --accent-light: #4cd787;
  
  /* Нейтральные цвета */
  --dark: #222222;
  --dark-gray: #444444;
  --medium-gray: #777777;
  --light-gray: #dddddd;
  --off-white: #f8f8f8;
  --white: #ffffff;

  /* Текстовые цвета */
  --text-dark: #333333;
  --text-medium: #555555;
  --text-light: #ffffff;
  
  /* Функциональные цвета */
  --success: #27ae60;
  --error: #e74c3c;
  --warning: #f39c12;
  --info: #3498db;
  
  /* Тени */
  --shadow-small: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-large: 0 10px 30px rgba(0, 0, 0, 0.12);
  
  /* Эффекты */
  --glass-effect: rgba(255, 255, 255, 0.25);
  --overlay-dark: rgba(0, 0, 0, 0.5);
  --overlay-gradient: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
  
  /* Радиусы */
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;
  --radius-full: 999px;
  
  /* Типографика */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Merriweather', serif;
  
  /* Размеры текста */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  /* Контейнеры */
  --container-padding: 1.5rem;
  --section-spacing: 6rem;
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-medium);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 0px !important;
}

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

h1 {
  font-size: var(--text-5xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

ul, ol {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

/* Утилиты */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  font-size: var(--text-lg);
  margin-bottom: 3rem;
  color: var(--medium-gray);
}

.text-center {
  text-align: center;
}

.full-width {
  width: 100%;
}

/* Кнопки */
.btn, 
button, 
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-medium);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: var(--text-sm);
}

/* Формы */
input, 
textarea, 
select {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-dark);
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-small);
  transition: border-color var(--transition-fast);
}

input:focus, 
textarea:focus, 
select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(46, 92, 184, 0.1);
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 1.5rem;
}

.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.checkmark {
  height: 20px;
  width: 20px;
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-small);
  margin-right: 10px;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: var(--off-white);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Хедер и навигация */
.header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  box-shadow: var(--shadow-small);
  transition: all var(--transition-medium);
}

.header.scrolled {
  background-color: var(--white);
  box-shadow: var(--shadow-medium);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  text-decoration: none;
}

.logo h1 {
  font-size: var(--text-2xl);
  margin-bottom: 0;
  color: var(--primary-color);
  font-weight: 800;
}

.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin-left: 2rem;
}

.nav-list a {
  position: relative;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
}

.nav-list a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-medium);
}

.nav-list a:hover:after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: var(--radius-small);
  transition: all var(--transition-medium);
}

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

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

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

.hero-content h1 {
  font-size: var(--text-5xl);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: var(--text-xl);
  margin-bottom: 2rem;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

/* Features секция */
.features {
  padding: var(--section-spacing) 0;
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

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

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

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

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

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

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

.card-content h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: var(--text-xl);
}

.card-content p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

/* Team секция */
.team {
  padding: var(--section-spacing) 0;
  background-color: var(--off-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}

.team .card-image {
  height: 350px;
}

.position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

/* Case Studies секция */
.case-studies {
  padding: var(--section-spacing) 0;
  background-color: var(--white);
}

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

.slider-container {
  overflow: hidden;
}

.slide {
  width: 100%;
  opacity: 0;
  transition: opacity var(--transition-slow);
  position: absolute;
  top: 0;
  left: 0;
}

.slide.active {
  opacity: 1;
  position: relative;
}

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

.prev-btn,
.next-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary-color);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-btn span,
.next-btn span {
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}

.prev-btn span {
  transform: rotate(-135deg);
}

.next-btn span {
  transform: rotate(45deg);
}

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

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

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

/* Events секция */
.events {
  padding: var(--section-spacing) 0;
  background-color: var(--off-white);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

.event-date {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-small);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
}

/* External Resources секция */
.external-resources {
  padding: var(--section-spacing) 0;
  background-color: var(--white);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}

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

.resource-list li {
  margin-bottom: 0.75rem;
}

.resource-list a {
  display: block;
  padding: 0.75rem;
  background-color: var(--off-white);
  border-radius: var(--radius-small);
  color: var(--primary-color);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.resource-list a:hover {
  background-color: var(--primary-light);
  color: var(--white);
  transform: translateX(5px);
}

/* Blog секция */
.blog {
  padding: var(--section-spacing) 0;
  background-color: var(--off-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.post-date {
  color: var(--medium-gray);
  font-size: var(--text-sm);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  padding-right: 20px;
  transition: all var(--transition-fast);
}

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

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover:after {
  transform: translate(5px, -50%);
}

.blog-cta {
  text-align: center;
}

/* Press секция */
.press {
  padding: var(--section-spacing) 0;
  background-color: var(--white);
}

.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.press-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.press-logo:hover {
  opacity: 1;
}

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

.press-quotes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.quote {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 2rem;
  background-color: var(--off-white);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-small);
}

blockquote {
  position: relative;
  font-style: italic;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

blockquote:before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--primary-light);
  font-family: Georgia, serif;
}

cite {
  display: block;
  text-align: right;
  font-weight: 600;
  color: var(--text-dark);
}

/* Careers секция */
.careers {
  padding: var(--section-spacing) 0;
  background-color: var(--off-white);
}

.careers-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.careers-text {
  flex: 1;
  min-width: 300px;
}

.careers-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.job-list {
  list-style: none;
  margin: 2rem 0;
}

.job-list li {
  padding: 1.5rem;
  margin-bottom: 1rem;
  background-color: var(--white);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-small);
  transition: transform var(--transition-fast);
}

.job-list li:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.job-title {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
}

/* Contact секция */
.contact {
  padding: var(--section-spacing) 0;
  background-color: var(--white);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
  background-color: var(--off-white);
  padding: 2rem;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
}

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

.info-item h3 {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.info-item i {
  margin-right: 0.5rem;
}

.contact-map {
  margin-top: 2rem;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-small);
}

.contact-map img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-logo h3 {
  color: var(--white);
  font-size: var(--text-2xl);
  margin-bottom: 1rem;
}

.footer-column h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: var(--text-lg);
  position: relative;
  display: inline-block;
}

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

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

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

.footer-column a {
  color: var(--light-gray);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--white);
}

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

.social-links a {
  color: var(--light-gray);
  transition: color var(--transition-fast);
}

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

.newsletter {
  margin-top: 2rem;
}

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

.newsletter .form-group {
  display: flex;
  margin-bottom: 0;
}

.newsletter input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.newsletter button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.heart {
  color: var(--error);
}

/* Модальная галерея */
.modal-gallery {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  overflow: hidden;
}

.modal-content {
  position: relative;
  width: 80%;
  max-width: 1000px;
  max-height: 80%;
  margin: 5% auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.modal-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#modal-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  margin-bottom: 1rem;
}

.modal-caption {
  color: var(--white);
  text-align: center;
  padding: 10px;
}

.modal-prev,
.modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
  padding: 15px;
  z-index: 1001;
}

.modal-prev {
  left: -50px;
}

.modal-next {
  right: -50px;
}

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

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

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

.success-actions {
  margin-top: 2rem;
}

/* Pages */
.page-content {
  padding: 100px 0 6rem;
}

.about-page,
.privacy-page,
.terms-page,
.contacts-page {
  padding-top: 100px;
}

/* Анимации */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes morphing {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.animate-morphing {
  animation: morphing 8s ease-in-out infinite;
}

/* Медиа-запросы */
@media (max-width: 1024px) {
  :root {
    --section-spacing: 5rem;
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
  }
  
  .hero {
    min-height: 600px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 4rem;
    --text-5xl: 2.25rem;
    --text-4xl: 1.875rem;
    --text-3xl: 1.5rem;
    --text-2xl: 1.25rem;
  }
  
  .header-inner {
    height: 70px;
  }
  
  .main-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-medium);
    padding: 1rem 0;
    z-index: 999;
  }
  
  .main-nav.active {
    display: block;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-list li {
    margin: 0 0 1rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .features-grid,
  .team-grid,
  .events-grid,
  .resources-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .press-logos {
    gap: 1.5rem;
  }
  
  .modal-prev {
    left: 10px;
  }
  
  .modal-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
    --section-spacing: 3rem;
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
    --text-3xl: 1.5rem;
    --text-2xl: 1.25rem;
    --text-xl: 1.125rem;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .card-image {
    height: 200px;
  }
  
  .team .card-image {
    height: 300px;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-column {
    min-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
}
html,body{
  overflow-x: hidden;
}