:root {
  /* Аналоговая цветовая схема */
  --primary-color: #3a7bd5;
  --primary-light: #6fa0e0;
  --primary-dark: #1e5bb0;
  
  --secondary-color: #4c89d8;
  --secondary-light: #7cacf0;
  --secondary-dark: #2c65b0;
  
  --accent-color: #2e9fe6;
  --accent-light: #5cbbf5;
  --accent-dark: #1a7bb2;
  
  /* Нейтральные цвета */
  --neutral-dark: #333333;
  --neutral-medium: #666666;
  --neutral-light: #e0e0e0;
  --neutral-bg: #f5f7fa;
  --white: #ffffff;
  
  /* Тени для неоморфизма */
  --shadow-light: rgba(255, 255, 255, 0.8);
  --shadow-dark: rgba(174, 174, 192, 0.4);
  --shadow-blur: 16px;
  
  /* Размеры */
  --container-width: 1200px;
  --container-padding: 20px;
  --border-radius: 12px;
  --border-radius-sm: 6px;
  
  /* Типографика */
  --h1-size: clamp(2.5rem, 5vw, 4rem);
  --h2-size: clamp(2rem, 4vw, 3rem);
  --h3-size: clamp(1.5rem, 3vw, 2rem);
  --h4-size: clamp(1.25rem, 2vw, 1.5rem);
  --text-base: clamp(1rem, 1.5vw, 1.125rem);
  --text-small: clamp(0.875rem, 1vw, 1rem);
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-индексы */
  --z-header: 100;
  --z-modal: 200;
  --z-cookie: 300;
}

/* Общие стили */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

h4 {
  font-size: var(--h4-size);
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

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

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

/* Неоморфные элементы */
.neomorphic {
  border-radius: var(--border-radius);
  background: var(--neutral-bg);
  box-shadow: 
    8px 8px var(--shadow-blur) var(--shadow-dark),
    -8px -8px var(--shadow-blur) var(--shadow-light);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.neomorphic:hover {
  transform: translateY(-5px);
  box-shadow: 
    10px 10px var(--shadow-blur) var(--shadow-dark),
    -10px -10px var(--shadow-blur) var(--shadow-light);
}

.neomorphic-inset {
  border-radius: var(--border-radius);
  background: var(--neutral-bg);
  box-shadow: 
    inset 8px 8px var(--shadow-blur) var(--shadow-dark),
    inset -8px -8px var(--shadow-blur) var(--shadow-light);
}

/* Кнопки */
.btn, 
button, 
input[type='submit'] {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 
    3px 3px 10px var(--shadow-dark),
    -3px -3px 10px var(--shadow-light);
}

.btn:hover, 
button:hover, 
input[type='submit']:hover {
  transform: translateY(-3px);
  box-shadow: 
    5px 5px 15px var(--shadow-dark),
    -5px -5px 15px var(--shadow-light);
}

.btn:active, 
button:active, 
input[type='submit']:active {
  transform: translateY(0);
  box-shadow: 
    inset 3px 3px 5px var(--shadow-dark),
    inset -3px -3px 5px var(--shadow-light);
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
}

.btn.secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  color: var(--white);
}

.btn.primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn.secondary:hover {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
}

/* Карточки */
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  box-shadow: 
    5px 5px 15px var(--shadow-dark),
    -5px -5px 15px var(--shadow-light);
  margin-bottom: 2rem;
}

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.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;
  width: 100%;
  text-align: center;
}

/* Header и навигация */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: var(--z-header);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-medium);
}

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

.logo a {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.main-nav {
  display: flex;
}

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

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  color: var(--neutral-dark);
  font-weight: 500;
  position: relative;
}

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

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

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

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

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-dark);
  border-radius: 3px;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(58, 123, 213, 0.7), rgba(46, 159, 230, 0.7));
  z-index: 2;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

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

.hero-content p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  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;
  margin-bottom: 3rem;
}

.progress-indicator {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.progress-item {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.progress-item.active {
  background-color: var(--white);
}

/* About Us секция */
.about {
  padding: 6rem 0;
  background-color: var(--white);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4rem;
}

.about-image {
  flex: 1 1 40%;
  min-width: 300px;
  padding: 1rem;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: 
    8px 8px var(--shadow-blur) var(--shadow-dark),
    -8px -8px var(--shadow-blur) var(--shadow-light);
}

.about-text {
  flex: 1 1 60%;
  padding: 2rem;
}

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

/* History секция */
.history {
  padding: 6rem 0;
  background-color: var(--neutral-bg);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
}

.timeline-content {
  position: relative;
  width: calc(50% - 40px);
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 
    5px 5px 15px var(--shadow-dark),
    -5px -5px 15px var(--shadow-light);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border: 4px solid var(--primary-color);
  border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  left: -50px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  right: -50px;
}

.timeline-content .date {
  display: inline-block;
  padding: 5px 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--white);
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.timeline-content img {
  border-radius: var(--border-radius-sm);
  margin: 1rem auto;
  max-width: 100%;
}

/* Portfolio секция */
.portfolio {
  padding: 6rem 0;
  background-color: var(--white);
}

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

.filter-btn {
  padding: 8px 20px;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  color: var(--primary-color);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

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

.portfolio-stats {
  margin-top: 1.5rem;
  background-color: var(--neutral-bg);
  padding: 1rem;
  border-radius: var(--border-radius-sm);
}

.stat {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.stat .label {
  font-weight: bold;
  color: var(--neutral-medium);
}

.stat .value {
  color: var(--primary-dark);
  font-weight: bold;
}

/* Projects секция */
.projects {
  padding: 6rem 0;
  background-color: var(--neutral-bg);
}

.projects-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.project-item {
  margin: 0 auto 2rem;
  max-width: 100%;
}

.project-details {
  margin-top: 1.5rem;
  background-color: var(--white);
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  box-shadow: inset 3px 3px 5px var(--shadow-dark), inset -3px -3px 5px var(--shadow-light);
}

.detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.detail .label {
  font-weight: bold;
  color: var(--neutral-medium);
}

.detail .value {
  color: var(--primary-dark);
  font-weight: bold;
}

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

.prev-btn,
.next-btn {
  background-color: var(--white);
  color: var(--primary-dark);
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 1rem;
  border: none;
  box-shadow: 
    3px 3px 10px var(--shadow-dark),
    -3px -3px 10px var(--shadow-light);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

/* Webinars секция */
.webinars {
  padding: 6rem 0;
  background-color: var(--white);
}

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

.webinar-item {
  position: relative;
}

.webinar-date {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 10px;
  border-radius: var(--border-radius-sm);
  font-size: var(--text-small);
  font-weight: 700;
  z-index: 1;
}

.webinar-details {
  margin-top: 1.5rem;
  background-color: var(--neutral-bg);
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  margin-bottom: 1.5rem;
}

/* Partners секция */
.partners {
  padding: 6rem 0;
  background-color: var(--neutral-bg);
}

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

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 
    5px 5px 15px var(--shadow-dark),
    -5px -5px 15px var(--shadow-light);
  transition: transform var(--transition-medium);
}

.partner-item:hover {
  transform: translateY(-10px);
}

.partner-item img {
  max-width: 200px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

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

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

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

.resource-links li {
  margin-bottom: 0.5rem;
}

.resource-links a {
  display: block;
  padding: 10px;
  background-color: var(--neutral-bg);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
  text-align: center;
}

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

/* Awards секция */
.awards {
  padding: 6rem 0;
  background-color: var(--neutral-bg);
}

.awards-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.award-item {
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 
    5px 5px 15px var(--shadow-dark),
    -5px -5px 15px var(--shadow-light);
  transition: transform var(--transition-medium);
}

.award-item:hover {
  transform: translateX(10px);
}

.award-image {
  flex: 0 0 150px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.award-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.award-content {
  flex: 1;
  padding: 2rem;
}

.award-presenter {
  font-style: italic;
  color: var(--neutral-medium);
  margin-top: 1rem;
}

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

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

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

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

.contact-form {
  background-color: var(--neutral-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 
    5px 5px 15px var(--shadow-dark),
    -5px -5px 15px var(--shadow-light);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: var(--border-radius-sm);
  background-color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--neutral-dark);
  box-shadow: 
    inset 3px 3px 5px var(--shadow-dark),
    inset -3px -3px 5px var(--shadow-light);
  transition: box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 
    inset 5px 5px 8px var(--shadow-dark),
    inset -5px -5px 8px var(--shadow-light);
}

.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 35px;
  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: 25px;
  width: 25px;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 
    inset 3px 3px 5px var(--shadow-dark),
    inset -3px -3px 5px var(--shadow-light);
}

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

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

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

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

.info-card {
  background-color: var(--neutral-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 
    5px 5px 15px var(--shadow-dark),
    -5px -5px 15px var(--shadow-light);
  margin-bottom: 2rem;
}

.info-card h3 {
  margin-bottom: 1.5rem;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  margin-bottom: 1rem;
}

.info-card strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.map-container {
  margin-top: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 
    5px 5px 15px var(--shadow-dark),
    -5px -5px 15px var(--shadow-light);
}

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

.map-container p {
  padding: 1rem;
  background-color: var(--neutral-bg);
  margin-bottom: 0;
}

/* Footer секция */
.footer {
  background-color: var(--neutral-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

.footer-logo h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-logo p {
  color: var(--neutral-light);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

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

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

.footer ul li a {
  color: var(--neutral-light);
  transition: color var(--transition-fast);
}

.footer ul li a:hover {
  color: var(--primary-light);
}

.footer-newsletter p {
  color: var(--neutral-light);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: var(--border-radius-sm);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-bottom p {
  color: var(--neutral-light);
  margin-bottom: 0.5rem;
}

.footer-bottom a {
  color: var(--primary-light);
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--white);
  padding: 1rem;
  z-index: var(--z-cookie);
}

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

.cookie-content p {
  margin-bottom: 0;
  margin-right: 1rem;
}

.cookie-btn {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 16px;
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

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

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

.success-content {
  text-align: center;
  max-width: 600px;
  padding: 3rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 
    8px 8px var(--shadow-blur) var(--shadow-dark),
    -8px -8px var(--shadow-blur) var(--shadow-light);
}

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

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

.page-content .container {
  max-width: 800px;
}

.page-content h1 {
  margin-bottom: 2rem;
}

.page-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

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

.page-content ul {
  margin-bottom: 2rem;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    margin-bottom: 2rem;
  }
  
  .timeline-content {
    width: calc(50% - 20px);
  }
  
  .award-item {
    flex-direction: column;
  }
  
  .award-image {
    width: 100%;
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  .header-wrapper {
    padding: 0.75rem 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--white);
    overflow: hidden;
    transition: height var(--transition-medium);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .main-nav.open {
    height: auto;
  }
  
  .nav-links {
    flex-direction: column;
    width: 100%;
    padding: 1rem 0;
  }
  
  .nav-links li {
    margin: 0;
    text-align: center;
  }
  
  .nav-links a {
    display: block;
    padding: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    margin-bottom: 1rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-content {
    width: calc(100% - 50px);
    margin-left: 50px !important;
  }
  
  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    right: auto;
  }
  
  .portfolio-filters {
    overflow-x: auto;
    padding-bottom: 1rem;
  }
  
  .award-item {
    flex-direction: column;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-btn {
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .card-image {
    height: 200px;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
  
  .filter-btn {
    font-size: 0.875rem;
    padding: 6px 15px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

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

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

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

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

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

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

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

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

textarea {
  resize: none;
}