:root {
  /* Пастельная цветовая схема */
  --primary-color: #8ecae6;
  --primary-dark: #5390d9;
  --secondary-color: #ffb5a7;
  --secondary-dark: #ff8c94;
  --accent-color: #a8dadc;
  --text-color: #333333;
  --text-light: #666666;
  --text-white: #ffffff;
  --background-color: #f5f7fa;
  --background-light: #ffffff;
  --background-dark: #e9ecef;
  --shadow-color: rgba(0, 0, 0, 0.05);
  --success-color: #81b29a;
  --warning-color: #f4a261;
  --error-color: #e63946;
  
  /* Размеры */
  --container-width: 1200px;
  --border-radius: 15px;
  --card-border-radius: 20px;
  --button-border-radius: 30px;
  
  /* Тени для нейроморфизма */
  --neumorphic-light: 5px 5px 10px var(--shadow-color), -5px -5px 10px rgba(255, 255, 255, 0.8);
  --neumorphic-pressed: inset 5px 5px 10px var(--shadow-color), inset -5px -5px 10px rgba(255, 255, 255, 0.8);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  
  /* Переходы и анимации */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-color);
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 30px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

p {
  margin-bottom: 20px;
}

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

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

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

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

.section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  color: var(--text-color);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 5px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Кнопки */
.btn {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: var(--button-border-radius);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  box-shadow: var(--neumorphic-light);
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
  transition: width var(--transition-medium);
}

.btn:hover::before {
  width: 100%;
}

.btn:active {
  box-shadow: var(--neumorphic-pressed);
  transform: translateY(2px);
}

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

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

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

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

button, input[type="submit"] {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: var(--button-border-radius);
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  box-shadow: var(--neumorphic-light);
  outline: none;
  background-color: var(--primary-color);
  color: var(--text-white);
}

button:hover, input[type="submit"]:hover {
  background-color: var(--primary-dark);
}

button:active, input[type="submit"]:active {
  box-shadow: var(--neumorphic-pressed);
  transform: translateY(2px);
}

/* Хедер */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: all var(--transition-medium);
}

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

.logo {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
}

.logo a {
  color: var(--primary-dark);
  transition: color var(--transition-fast);
}

.logo a:hover {
  color: var(--secondary-dark);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.main-nav a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width var(--transition-medium);
}

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

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-color);
  border-radius: 3px;
  transition: all var(--transition-medium);
}

/* Hero секция */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

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

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

.hero-title {
  color: var(--text-white);
  font-size: 4rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  color: var(--text-white);
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.2s ease;
}

.hero-text {
  color: var(--text-white);
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.4s ease;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1.6s ease;
}

/* Методология */
.methodology {
  background-color: var(--background-light);
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

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

.methodology-card:hover {
  transform: translateY(-10px);
}

.card-image {
  width: 100%;
  overflow: hidden;
  border-radius: var(--card-border-radius) var(--card-border-radius) 0 0;
}

.image-container {
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

.card-content h3 {
  color: var(--text-color);
  margin-bottom: 15px;
}

.card-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.progress-bar {
  width: 100%;
  background-color: var(--background-dark);
  border-radius: 30px;
  height: 10px;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  border-radius: 30px;
  animation: progressAnimate 2s ease;
}

.progress-bar span {
  display: block;
  text-align: right;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
  margin-top: 8px;
}

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

.stories-slider {
  display: grid;
  position: relative;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.story-card {
  background-color: var(--background-light);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story-card .card-image {
  width: 100%;
  height: 350px;
}

.story-card .image-container {
  height: 100%;
}

.story-card .card-content {
  padding: 30px;
  text-align: center;
}

.client-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
  font-weight: 600;
  color: var(--text-light);
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.prev-btn, .next-btn {
  background-color: var(--background-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: var(--neumorphic-light);
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--primary-color);
}

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

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

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

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

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

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

.insight-card:hover {
  transform: translateY(-10px);
}

.insight-card .card-image {
  width: 100%;
  height: 220px;
}

.insight-card .card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.read-more {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary-dark);
  margin-top: auto;
  transition: all var(--transition-fast);
}

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

.arrow {
  margin-left: 5px;
  transition: transform var(--transition-fast);
}

.read-more:hover .arrow {
  transform: translateX(5px);
}

/* External Resources */
.external-resources {
  background-color: var(--background-color);
  position: relative;
}

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

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

.resource-card:hover {
  transform: translateY(-10px);
}

.resource-card .card-image {
  width: 100%;
  height: 200px;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary-dark);
  margin-top: 20px;
  transition: all var(--transition-fast);
}

.resource-link:hover {
  color: var(--secondary-dark);
}

.resource-link:hover .arrow {
  transform: translateX(5px);
}

/* Research */
.research {
  background-color: var(--background-light);
}

.research-tabs {
  margin-top: 40px;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-btn {
  background-color: var(--background-color);
  color: var(--text-color);
  padding: 12px 25px;
  margin: 0 10px;
  border-radius: var(--button-border-radius);
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: var(--neumorphic-light);
}

.tab-btn.active, .tab-btn:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.tabs-content {
  position: relative;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-pane.active {
  display: block;
}

.research-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.research-image {
  flex: 1 1 400px;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

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

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

.research-text {
  flex: 1 1 500px;
}

.research-stats {
  display: flex;
  margin-top: 30px;
  gap: 30px;
}

.stat {
  flex: 1;
  text-align: center;
  background-color: var(--background-color);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--neumorphic-light);
}

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

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

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

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1 1 400px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background-color: var(--background-light);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--neumorphic-light);
}

.info-card .icon {
  margin-right: 20px;
  padding: 15px;
  background-color: var(--background-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--neumorphic-light);
}

.info-card .info-text h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.info-card .info-text p {
  margin-bottom: 0;
  color: var(--text-light);
}

.contact-map {
  margin-top: 30px;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

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

.contact-form-container {
  flex: 1 1 500px;
}

.contact-form {
  background-color: var(--background-light);
  padding: 40px;
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--background-dark);
  border-radius: var(--border-radius);
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: 'Rubik', sans-serif;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(142, 202, 230, 0.2);
}

.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
}

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

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--background-color);
  border: 1px solid var(--background-dark);
  border-radius: 4px;
}

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

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

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

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

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  font-size: 0.9rem;
  color: var(--text-light);
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: var(--primary-color);
  color: var(--text-white);
  border: none;
  border-radius: var(--button-border-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: var(--neumorphic-light);
}

.submit-btn:hover {
  background-color: var(--primary-dark);
}

.submit-btn:active {
  box-shadow: var(--neumorphic-pressed);
  transform: translateY(2px);
}

/* Footer */
.footer {
  background-color: var(--background-dark);
  padding: 80px 0 30px;
  color: var(--text-color);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 1 1 300px;
}

.footer-logo h2 {
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.footer-links {
  flex: 2 1 500px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.links-column {
  flex: 1 1 150px;
}

.links-column h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.links-column ul {
  list-style: none;
}

.links-column ul li {
  margin-bottom: 10px;
}

.links-column ul li a {
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.links-column ul li a:hover {
  color: var(--primary-dark);
}

.social-links li a {
  display: flex;
  align-items: center;
  transition: transform var(--transition-fast);
}

.social-links li a:hover {
  transform: translateX(5px);
}

.footer-newsletter {
  flex: 1 1 300px;
}

.footer-newsletter h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.newsletter-form {
  display: flex;
  margin-top: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--background-color);
  border-radius: var(--button-border-radius) 0 0 var(--button-border-radius);
  font-family: 'Rubik', sans-serif;
  outline: none;
}

.newsletter-form button {
  padding: 0 20px;
  background-color: var(--primary-color);
  color: var(--text-white);
  border: none;
  border-radius: 0 var(--button-border-radius) var(--button-border-radius) 0;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-light);
  padding: 50px 20px;
}

.success-content {
  max-width: 600px;
  background-color: var(--background-color);
  padding: 50px;
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-shadow);
  text-align: center;
}

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

.success-title {
  color: var(--text-color);
  margin-bottom: 20px;
}

.success-message {
  color: var(--text-light);
  margin-bottom: 40px;
}

.back-to-home {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: var(--button-border-radius);
  font-weight: 600;
  transition: all var(--transition-medium);
  box-shadow: var(--neumorphic-light);
}

.back-to-home:hover {
  background-color: var(--primary-dark);
  color: var(--text-white);
}

/* About, Privacy, Terms Pages */
.about-page, .privacy-page, .terms-page, .contacts-page {
  padding-top: 100px;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--background-light);
  padding: 50px;
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-shadow);
}

.page-content h1 {
  margin-bottom: 30px;
  color: var(--primary-dark);
}

.page-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-content ul, .page-content ol {
  margin: 20px 0;
  padding-left: 20px;
}

.page-content li {
  margin-bottom: 10px;
}

/* Анимации */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes progressAnimate {
  from {
    width: 0;
  }
}

/* Медиа-запросы */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .research-content {
    flex-direction: column;
  }
  
  .research-image, .research-text {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--background-light);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .footer-logo {
    flex: unset;
  }

  .tabs-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    padding: 20px;
  }
  
  .main-nav ul li {
    margin-bottom: 15px;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--button-border-radius);
    margin-bottom: 10px;
  }
  
  .newsletter-form button {
    border-radius: var(--button-border-radius);
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .btn {
    padding: 10px 25px;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .page-content {
    padding: 30px;
  }
}

/* Cookie Notice Styles */
#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 15px;
  text-align: center;
  z-index: 9999;
  display: none;
}

#cookie-notice p {
  margin: 0;
  padding: 5px;
}

#accept-cookies {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 8px 16px;
  margin: 5px;
  border-radius: 4px;
  cursor: pointer;
}

textarea {
  resize: none;
}

.team-image {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

html {
  overflow-x: hidden;
}