:root {
  /* Основные пастельные цвета */
  --primary-color: #FFB6C1; /* нежно-розовый */
  --secondary-color: #B0E0E6; /* нежно-голубой */
  --tertiary-color: #FFF0DB; /* персиковый */
  --accent-color: #CCCCFF; /* нежно-фиолетовый */
  --success-color: #98FB98; /* нежно-зеленый */
  
  /* Цвета для текста */
  --text-dark: #333333;
  --text-medium: #555555;
  --text-light: #FFFFFF;
  
  /* Цвета фона */
  --bg-light: #FFFFFF;
  --bg-medium: #F5F5F5;
  --bg-dark: #2D2D2D;
  
  /* Переходы и эффекты */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.8s ease;
  
  /* Тени */
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-dark: 0 8px 30px rgba(0, 0, 0, 0.15);
  
  /* Брутализм: яркие границы */
  --border-brutal: 3px solid var(--primary-color);
  --border-radius-small: 4px;
  --border-radius-medium: 8px;
  --border-radius-large: 16px;
  
  /* Размеры контейнеров */
  --container-max-width: 1200px;
  --container-padding: 20px;
  
  /* Размеры текста */
  --font-size-small: 0.875rem;
  --font-size-medium: 1rem;
  --font-size-large: 1.25rem;
  --font-size-xlarge: 1.5rem;
  --font-size-xxlarge: 2rem;
  --font-size-hero: 3.5rem;
}

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

body {
  font-family: 'Lato', sans-serif;
  font-size: var(--font-size-medium);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--font-size-hero);
}

h2 {
  font-size: var(--font-size-xxlarge);
}

h3 {
  font-size: var(--font-size-xlarge);
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  color: var(--text-dark);
  padding-bottom: 1rem;
}

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

/* Утилиты и классы-помощники */
.text-center {
  text-align: center;
}

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

.column {
  flex: 1;
  padding: 0 15px;
  min-width: 300px;
}

.column.is-two-thirds {
  flex: 2;
}

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

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

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

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Кнопки */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius-medium);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
  transition: all var(--transition-fast);
}

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

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

.btn-primary:hover {
  background-color: var(--tertiary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-dark);
  color: var(--text-dark);
  text-decoration: none;
}

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

.btn-secondary:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-dark);
  color: var(--text-dark);
  text-decoration: none;
}

button, input[type='submit'] {
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
}

/* Формы */
input, select, textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 2px solid var(--accent-color);
  border-radius: var(--border-radius-medium);
  font-family: 'Lato', sans-serif;
  transition: all var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 182, 193, 0.25);
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--text-medium);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-light);
  z-index: 1000;
  transition: all var(--transition-medium);
}

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

.logo {
  display: block;
}

.logo img {
  max-height: 50px;
}

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

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

.nav-list li {
  margin-left: 30px;
}

.nav-list a {
  color: var(--text-dark);
  font-weight: 700;
  position: relative;
}

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

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

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1001;
}

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

/* Hero Section */
.hero {
  position: relative;
  padding: 150px 0 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text-light);
}

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

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

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1.2s ease;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1.4s ease;
}

.hero-content .btn {
  animation: fadeIn 1.6s ease;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.image-container {
  border-radius: var(--border-radius-large);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-medium);
  width: 100%;
  text-align: center;
}

.image-container:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-dark);
}

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

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

.timeline {
  margin-top: 40px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.timeline-item {
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: -8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  border: 3px solid var(--primary-color);
  z-index: 2;
}

.timeline-content {
  background-color: var(--bg-medium);
  padding: 20px;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-medium);
}

.timeline-content:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-medium);
}

.timeline-content  {
  color: #000;
}

.vertical-timeline {
  margin-top: 40px;
  position: relative;
  padding-left: 30px;
}

.vertical-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.progress-container {
  margin-top: 30px;
}

.progress-item {
  margin-bottom: 20px;
}

.progress-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.progress-bar {
  height: 10px;
  background-color: var(--bg-medium);
  border-radius: 5px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 5px;
  position: relative;
  transition: width 1s ease;
}

.progress-fill::after {
  content: attr(data-value);
  position: absolute;
  right: 10px;
  top: -25px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

/* History Section */
.history-section {
  padding: 100px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text-light);
}

.history-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.history-content .column {
  flex: 1;
  min-width: 300px;
}

.history-content p {
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Resources Section */
.resources-section {
  padding: 100px 0;
  background-color: var(--bg-medium);
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.resource-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-medium);
  width: calc(25% - 30px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

.resource-card .card-content {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

/* Clientele Section */
.clientele-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.clientele-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonials {
  flex: 2;
  min-width: 400px;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-slide {
  width: 100%;
}

.testimonial-card {
  background-color: var(--bg-medium);
  border-radius: var(--border-radius-large);
  padding: 30px;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.testimonial-card .card-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 3px solid var(--primary-color);
  text-align: center;
}

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

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

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-medium);
  text-align: center;
}

.testimonial-author {
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-dark);
  text-align: center;
}

.testimonial-info {
  color: var(--text-medium);
  font-size: var(--font-size-small);
  text-align: center;
}

.client-stats {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  flex: 1 1 calc(50% - 20px);
  min-width: 130px;
  background-color: var(--bg-medium);
  border-radius: var(--border-radius-large);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-medium);
}

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

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

.stat-label {
  font-size: var(--font-size-medium);
  color: var(--text-medium);
}

/* Events Section */
.events-section {
  padding: 100px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text-light);
}

.events-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.events-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
}

.event-card {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-medium);
  width: calc(50% - 30px);
  min-width: 300px;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.event-card .card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  text-align: center;
}

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

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

.event-card .card-content {
  padding: 20px;
  width: 100%;
  text-align: center;
}

.event-title {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.event-date {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.event-description {
  margin-bottom: 20px;
  color: var(--text-medium);
}

.upcoming-events {
  flex: 1;
  min-width: 300px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius-large);
  padding: 30px;
  box-shadow: var(--shadow-medium);
  color: var(--text-dark);
}

.upcoming-events h3 {
  margin-bottom: 20px;
  text-align: center;
  color: var(--text-dark);
}

.event-list {
  list-style: none;
}

.event-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: background-color var(--transition-fast);
}

.event-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.event-date {
  font-weight: 700;
  color: var(--primary-color);
}

.event-name {
  flex: 1;
  padding-left: 20px;
  color: var(--text-medium);
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-medium);
}

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

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

.info-item {
  margin-bottom: 30px;
}

.info-item h3 {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.info-item p {
  color: var(--text-medium);
}

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

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

.contact-form {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-large);
  padding: 30px;
  box-shadow: var(--shadow-medium);
}

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

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 70px 0 20px;
}

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

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

.footer-logo img {
  margin-bottom: 20px;
  max-width: 180px;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h3, .footer-social h3, .footer-newsletter h3 {
  color: var(--text-light);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after, .footer-social h3::after, .footer-newsletter h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 1.5px;
}

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

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

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

.footer-links a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.footer-social {
  flex: 1;
  min-width: 200px;
}

.social-links {
  list-style: none;
}

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

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
  display: block;
  padding: 5px 0;
}

.social-links a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(5px);
}

.footer-newsletter {
  flex: 1.5;
  min-width: 300px;
}

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

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  margin-bottom: 0;
  border: none;
}

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

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

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

.success-content {
  max-width: 600px;
  padding: 50px;
  background-color: var(--bg-medium);
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-medium);
  animation: fadeIn 1s ease;
}

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

.success-content p {
  margin-bottom: 30px;
  color: var(--text-medium);
}

/* Pages with single content (Privacy, Terms) */
.page-content {
  padding: 150px 0 100px;
  background-color: var(--bg-light);
}

.page-content h1 {
  margin-bottom: 40px;
  text-align: center;
  color: var(--text-dark);
}

.page-content h2 {
  margin: 40px 0 20px;
  color: var(--text-dark);
}

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

/* Media Queries */
@media (max-width: 991px) {
  :root {
    --font-size-hero: 3rem;
    --font-size-xxlarge: 1.75rem;
    --font-size-xlarge: 1.25rem;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .nav-list {
    display: none;
  }
  
  .nav-list.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-light);
    box-shadow: var(--shadow-medium);
    padding: 20px 0;
    z-index: 999;
  }
  
  .nav-list.active li {
    margin: 10px 30px;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 6px);
  }
  
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -6px);
  }
  
  .about-content .column, 
  .history-content .column {
    flex: 1 1 100%;
  }
  
  .timeline-content {
    padding: 15px;
  }
  
  .resource-card,
  .event-card {
    width: calc(50% - 15px);
  }
}

@media (max-width: 767px) {
  :root {
    --font-size-hero: 2.5rem;
    --font-size-xxlarge: 1.5rem;
    --font-size-xlarge: 1.25rem;
    --container-padding: 15px;
  }
  
  .hero {
    padding: 120px 0 80px;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .resource-card,
  .event-card {
    width: 100%;
  }
  
  .client-stats {
    gap: 15px;
  }
  
  .stat-item {
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .footer-content {
    gap: 30px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  :root {
    --font-size-hero: 2.2rem;
    --font-size-xxlarge: 1.4rem;
    --font-size-xlarge: 1.2rem;
  }
  
  .column {
    min-width: 100%;
  }
  
  .image-container img {
    height: 250px;
  }
  
  .client-stats {
    flex-direction: column;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .contact-content,
  .events-content {
    gap: 30px;
  }
  
  .upcoming-events {
    padding: 20px;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .page-content {
    padding: 120px 0 60px;
  }
}

/* Card styles */
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-medium);
  margin-bottom: 30px;
}

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  text-align: center;
}

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

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

.card-content {
  padding: 25px;
  width: 100%;
  text-align: center;
}

/* Read more links */
.read-more {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  padding-right: 25px;
}

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

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

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

/* Cookie consent */
#cookie-consent {
  animation: slideUp 0.5s ease-out;
}

#accept-cookies {
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

#accept-cookies:hover {
  background-color: #5CBF60;
  transform: translateY(-3px);
}