:root {
  /* Основные цвета */
  --primary-color: #3a6ea5;
  --primary-dark: #2a5180;
  --primary-light: #5a8ec5;
  --secondary-color: #6c757d;
  --secondary-dark: #5a6268;
  --secondary-light: #8e959c;
  --accent-color: #e63946;
  --accent-dark: #c6313e;
  --accent-light: #f06470;
  
  /* Нейтральные цвета */
  --neutral-900: #212529;
  --neutral-800: #343a40;
  --neutral-700: #495057;
  --neutral-600: #6c757d;
  --neutral-500: #adb5bd;
  --neutral-400: #ced4da;
  --neutral-300: #dee2e6;
  --neutral-200: #e9ecef;
  --neutral-100: #f8f9fa;
  --neutral-50: #fafafa;
  
  /* Фоновые цвета */
  --bg-dark: #121212;
  --bg-light: #ffffff;
  --bg-gradient-1: linear-gradient(135deg, rgba(58, 110, 165, 0.1), rgba(90, 142, 197, 0.1));
  --bg-gradient-2: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(240, 100, 112, 0.1));
  
  /* Тени */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
  
  /* Радиусы */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-rounded: 50%;
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Размеры контейнера */
  --container-width-xl: 1200px;
  --container-width-lg: 1140px;
  --container-width-md: 960px;
  --container-width-sm: 720px;
  --container-width-xs: 540px;
  
  /* Размеры отступов */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Merriweather', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-800);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

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

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--neutral-700);
}

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

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

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

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

.container {
  width: 100%;
  max-width: var(--container-width-xl);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  color: var(--neutral-900);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 1rem auto 0;
  border-radius: var(--radius-sm);
}

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

/* Кнопки */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
}

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

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

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

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

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

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

.btn-text {
  background-color: transparent;
  color: var(--primary-color);
  padding: 0.5rem 0;
  box-shadow: none;
  border-bottom: 2px solid transparent;
}

.btn-text:hover {
  color: var(--primary-dark);
  border-bottom: 2px solid var(--primary-dark);
  box-shadow: none;
  transform: none;
}

.full-width {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo a {
  color: var(--primary-color);
  text-decoration: none;
}

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

.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-list a {
  color: var(--neutral-800);
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  padding: 0.5rem 0;
  position: relative;
}

.nav-list a:hover {
  color: var(--primary-color);
}

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

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

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

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

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

.hero-content h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease;
}

.hero-content p {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

/* Services Section */
.services-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--neutral-50);
}

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

.card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

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

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

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

.card-content h3 {
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

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

/* Diagnostic Section */
.diagnostic-section {
  padding: var(--spacing-xl) 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.diagnostic-section .section-title,
.diagnostic-section .section-description {
  color: white;
}

.diagnostic-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

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

.diagnostic-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.diagnostic-text ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.diagnostic-text li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.diagnostic-text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-light);
}

.diagnostic-image-container {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.diagnostic-image-container img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Success Stories Section */
.success-stories-section {
  padding: var(--spacing-xl) 0;
  background-color: white;
}

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

.story-card {
  background-color: var(--neutral-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

/* Testimonials Section */
.testimonials-section {
  padding: var(--spacing-xl) 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.testimonials-section .section-title,
.testimonials-section .section-description {
  color: white;
}

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

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.testimonial-content {
  padding: 2rem;
  position: relative;
}

.quote-icon {
  font-size: 4rem;
  position: absolute;
  top: -10px;
  left: 10px;
  color: rgba(255, 255, 255, 0.1);
  font-family: Georgia, serif;
}

.testimonial-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

.author-info h4 {
  margin: 0;
  color: white;
  font-size: 1.1rem;
}

.author-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Insights Section */
.insights-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--neutral-50);
}

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

/* Resources Section */
.resources-section {
  padding: var(--spacing-xl) 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.resources-section .section-title,
.resources-section .section-description {
  color: white;
}

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

.resource-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.resource-card h3 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.resource-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.resource-list li {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.resource-list a {
  color: var(--accent-light);
  transition: color var(--transition-normal);
}

.resource-list a:hover {
  color: white;
  text-decoration: underline;
}

/* Workshops Section */
.workshops-section {
  padding: var(--spacing-xl) 0;
  background-color: white;
}

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

.workshop-details {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.detail {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--neutral-600);
}

.detail strong {
  margin-right: 0.3rem;
  color: var(--neutral-800);
}

/* Projects Section */
.projects-section {
  padding: var(--spacing-xl) 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.projects-section .section-title,
.projects-section .section-description {
  color: white;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.tab-btn {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all var(--transition-normal);
}

.tab-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

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

.tabs-content {
  margin-top: 2rem;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.project-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.project-image {
  flex: 1;
  min-width: 300px;
}

.project-image img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

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

.project-info h3 {
  color: white;
  margin-bottom: 1rem;
}

.project-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.project-info ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.project-info li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.project-info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-light);
}

/* Events Section */
.events-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--neutral-50);
}

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

.event-date {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.event-date .date {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
}

.event-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.event-details .detail {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--neutral-600);
}

.event-details .detail i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
  padding: var(--spacing-xl) 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.faq-section .section-title,
.faq-section .section-description {
  color: white;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.accordion-header:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: white;
}

.toggle-icon {
  font-size: 1.5rem;
  color: white;
  transition: transform var(--transition-normal);
}

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

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-normal);
}

.accordion-item.active .accordion-content {
  padding: 0 1.5rem 1.5rem;
  max-height: 1000px;
}

.accordion-content p {
  color: rgba(255, 255, 255, 0.9);
}

/* Customer Stories Section */
.customer-stories-section {
  padding: var(--spacing-xl) 0;
  background-color: white;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.gallery-tab {
  background-color: var(--neutral-200);
  border: none;
  color: var(--neutral-700);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all var(--transition-normal);
}

.gallery-tab:hover {
  background-color: var(--neutral-300);
}

.gallery-tab.active {
  background-color: var(--primary-color);
  color: white;
}

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

.gallery-item {
  background-color: var(--neutral-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.gallery-item .card-image {
  height: 250px;
}

.story-content {
  padding: 1.5rem;
}

.story-content h3 {
  margin-bottom: 1rem;
}

.story-content p {
  margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
  padding: var(--spacing-xl) 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

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

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

.contact-info .section-title {
  text-align: left;
}

.contact-info .section-title::after {
  margin-left: 0;
}

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

.info-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-rounded);
  margin-right: 1rem;
}

.info-content h3 {
  margin-bottom: 0.5rem;
  color: white;
  font-size: 1.2rem;
}

.info-content p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: #000 !important;
  
}

.contact-form-container h3 {
  color: #121212;
  margin-bottom: 1rem;
}

.contact-form-container p {
  color: #000;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.form-group {
  flex: 1 1 45%;
  min-width: 250px;
}

.form-group.full-width {
  flex: 1 1 100%;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  transition: border-color var(--transition-normal), background-color var(--transition-normal);
  border: 1px solid #000 !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo h2 {
  color: white;
  margin-bottom: 0.5rem;
}

.footer-column h3 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

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

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

.footer-links a:hover {
  color: white;
  text-decoration: none;
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

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

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

.social-links a:hover {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

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

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.cookie-content {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: var(--container-width-xl);
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  flex: 1;
}

.cookie-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-normal);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

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

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

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

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

.success-container h1 {
  margin-bottom: 1.5rem;
}

.success-container p {
  margin-bottom: 2rem;
}

/* Inner Pages */
.inner-page {
  padding-top: 100px;
  padding-bottom: var(--spacing-xl);
}

.inner-page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.inner-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

/* Utility Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

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

.mb-0 {
  margin-bottom: 0;
}

.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;
}

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.75rem;
  }
  
  .diagnostic-content,
  .project-card {
    flex-direction: column;
  }
  
  .project-image,
  .diagnostic-image-container {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-light);
    z-index: 1000;
    transition: left var(--transition-normal);
    display: block;
  }
  
  .main-nav.active {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }
  
  .nav-list li {
    width: 100%;
  }
  
  .nav-list a {
    display: block;
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid var(--neutral-200);
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    margin-top: 1rem;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .card-image {
    height: 200px;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .resource-card,
  .project-card,
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .tabs-nav,
  .gallery-tabs {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .tab-btn,
  .gallery-tab {
    width: 100%;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-btn {
    width: 100%;
  }
}