/* Base Styles & Variables */
:root {
  /* Триадная цветовая схема */
  --primary-color: #0070c0; /* Основной синий */
  --primary-light: #3f96d9;
  --primary-dark: #00518a;
  --secondary-color: #d13f00; /* Комплементарный оранжевый */
  --secondary-light: #ff6d3b;
  --secondary-dark: #a72f00;
  --tertiary-color: #4caf50; /* Третий в триаде - зеленый */
  --tertiary-light: #7fd982;
  --tertiary-dark: #388e3c;
  
  /* Нейтральные цвета */
  --light: #ffffff;
  --dark: #222222;
  --gray-light: #f5f5f5;
  --gray-medium: #e0e0e0;
  --gray-dark: #666666;
  
  /* Гласморфизм */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  
  /* Типография */
  --heading-font: 'Raleway', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  
  /* Размеры */
  --container-width: 1200px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* Переходы */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
}

/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--dark);
  background-color: var(--gray-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* Контейнеры */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

/* Типография */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 20px;
}

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

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 20px;
  color: var(--gray-dark);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  font-weight: 700;
}

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

/* Гласморфизм */
.glassmorphism {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  border-radius: var(--border-radius-md);
}

/* Кнопки */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary-color);
  color: var(--light) !important;
  border: none;
  border-radius: var(--border-radius-md);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 112, 192, 0.2);
}

.btn:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 112, 192, 0.3);
}

.btn.secondary {
  background-color: var(--secondary-color);
  box-shadow: 0 4px 12px rgba(209, 63, 0, 0.2);
}

.btn.secondary:hover {
  background-color: var(--secondary-light);
  box-shadow: 0 6px 15px rgba(209, 63, 0, 0.3);
}

.btn.tertiary {
  background-color: var(--tertiary-color);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.btn.tertiary:hover {
  background-color: var(--tertiary-light);
  box-shadow: 0 6px 15px rgba(76, 175, 80, 0.3);
}

/* Формы */
input, select, textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid var(--gray-medium);
  border-radius: var(--border-radius-md);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: border var(--transition-fast);
  background-color: rgba(255, 255, 255, 0.9);
}

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

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
}

form .btn {
  margin-top: 10px;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: background-color var(--transition-medium);
}

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

.logo {
  max-width: 120px;
}

.desktop-nav ul {
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  color: var(--light);
  font-family: var(--heading-font);
  font-weight: 600;
  position: relative;
  padding: 5px 0;
}

.desktop-nav a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--light);
  transition: width var(--transition-fast);
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 30px;
  height: 3px;
  background-color: var(--light);
  margin: 3px 0;
  transition: all var(--transition-fast);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: var(--dark);
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav a {
  color: var(--light);
  font-size: 1.1rem;
  display: block;
  padding: 8px 0;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light);
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0;
  padding-top: 80px;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

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

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

.hero p {
  color: var(--light);
  font-size: 1.3rem;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* About Section */
.about-section {
  background-color: var(--light);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

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

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  padding: 30px;
  text-align: center;
  transition: transform var(--transition-medium);
}

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

.feature-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  object-fit: cover;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* Process Section */
.process-section {
  background-color: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.process-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('image/process-bg-pattern.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.process-steps {
  position: relative;
  z-index: 1;
}

.process-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
  padding: 30px;
  position: relative;
}

.process-card:nth-child(even) {
  flex-direction: row-reverse;
}

.process-number {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.5rem;
  z-index: 2;
}

.process-card:nth-child(even) .process-number {
  left: auto;
  right: 30px;
}

.process-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

/* Portfolio Section */
.portfolio-section {
  background-color: var(--light);
}

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

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-slide {
  display: none;
  width: 100%;
}

.carousel-slide.active {
  display: block;
}

.portfolio-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding: 40px;
}

.portfolio-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  text-align: center;
}

.portfolio-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  transition: transform var(--transition-medium);
}

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

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

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 2;
}

.prev-btn, .next-btn {
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--light);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
}

.prev-btn:hover, .next-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

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

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

/* Statistics Section */
.statistics-section {
  background-color: var(--primary-dark);
  color: var(--light);
  background-image: url('image/stats-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.statistics-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 81, 138, 0.85);
}

.statistics-section .section-title {
  color: var(--light);
}

.statistics-section .section-title:after {
  background-color: var(--light);
}

.statistics-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.statistic-card {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  backdrop-filter: blur(5px);
  transition: transform var(--transition-medium);
}

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

.statistic-number {
  font-size: 3rem;
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--light);
  margin-bottom: 10px;
}

.statistic-label {
  font-size: 1.1rem;
  color: var(--light);
  margin-bottom: 20px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: var(--tertiary-color);
  width: 0;
  transition: width 2s ease;
}

.statistics-info {
  max-width: 800px;
  margin: 50px auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.statistics-info p {
  color: var(--light);
}

/* Case Studies Section */
.case-studies-section {
  background-color: var(--gray-light);
}

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

.case-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition-medium);
}

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

.case-image {
  height: 250px;
  overflow: hidden;
  border-top-left-radius: var(--border-radius-md);
  border-top-right-radius: var(--border-radius-md);
}

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

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

.case-content {
  padding: 25px;
  flex-grow: 1;
  background-color: var(--light);
  border-bottom-left-radius: var(--border-radius-md);
  border-bottom-right-radius: var(--border-radius-md);
}

.case-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

/* Clientele Section */
.clientele-section {
  background-color: var(--light);
  position: relative;
}

.clientele-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 1.1rem;
}

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

.client-card {
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  text-align: center;
  padding: 20px;
  background-color: var(--light);
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.client-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.client-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
}

.client-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

/* Resources Section */
.resources-section {
  background-color: var(--gray-light);
  position: relative;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px;
}

.resource-card {
  flex: 1;
  min-width: 300px;
}

.resource-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

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

.resource-links li {
  margin-bottom: 15px;
}

.resource-links a {
  color: var(--primary-color);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.resource-links a:hover {
  color: var(--secondary-color);
}

/* News Section */
.news-section {
  background-color: var(--light);
}

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

.news-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition-medium);
}

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

.news-image {
  height: 200px;
  overflow: hidden;
  border-top-left-radius: var(--border-radius-md);
  border-top-right-radius: var(--border-radius-md);
}

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

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

.news-content {
  padding: 25px;
  flex-grow: 1;
  background-color: var(--light);
  border-bottom-left-radius: var(--border-radius-md);
  border-bottom-right-radius: var(--border-radius-md);
}

.news-date {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-dark);
  margin-bottom: 10px;
}

.news-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--secondary-color);
  font-weight: 600;
  position: relative;
}

.read-more:after {
  content: "→";
  margin-left: 5px;
  transition: margin-left var(--transition-fast);
}

.read-more:hover:after {
  margin-left: 10px;
}

/* Events Section */
.events-section {
  background-color: var(--gray-light);
  position: relative;
}

.events-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  margin-bottom: 30px;
  background-color: var(--light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-medium);
}

.event-card:hover {
  transform: translateX(10px);
}

.event-date {
  min-width: 100px;
  background-color: var(--primary-color);
  color: var(--light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.event-day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.event-month {
  font-size: 1.2rem;
  text-transform: uppercase;
}

.event-content {
  padding: 25px;
  flex-grow: 1;
}

.event-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.event-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

.event-details span {
  display: flex;
  align-items: center;
  color: var(--gray-dark);
}

.event-details i {
  margin-right: 8px;
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  background-color: var(--light);
  position: relative;
}

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

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

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.contact-details {
  margin: 30px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item i {
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  padding: 8px 15px;
  background-color: var(--primary-color);
  color: var(--light);
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  transition: background-color var(--transition-fast);
}

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

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

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

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

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

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

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

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

.footer-logo p {
  color: var(--gray-medium);
}

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

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

.footer-column h3 {
  font-size: 1.2rem;
  color: var(--light);
  margin-bottom: 20px;
  position: relative;
}

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

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

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

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

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

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

.footer-bottom p {
  color: var(--gray-medium);
  margin-bottom: 0;
}

.footer-apps {
  display: flex;
  gap: 15px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1100;
  align-items: center;
  justify-content: center;
}

.modal-content {
  width: 90%;
  max-width: 800px;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: var(--gray-dark);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--secondary-color);
}

.modal h2 {
  margin-bottom: 30px;
  text-align: center;
}

.modal-body {
  margin-top: 20px;
}

.location-search {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.location-search input {
  flex: 1;
  margin-bottom: 0;
}

.location-map {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(34, 34, 34, 0.95);
  color: var(--light);
  z-index: 9999;
  padding: 15px 0;
}

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

.cookie-content p {
  color: var(--light);
  margin-bottom: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-content a {
  color: var(--tertiary-light);
}

.cookie-btn {
  background-color: var(--tertiary-color);
  min-width: 120px;
  margin: 0;
}

.cookie-btn:hover {
  background-color: var(--tertiary-light);
}

/* Styles for success.html */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
}

.success-container {
  max-width: 600px;
  padding: 40px;
}

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

.success-container h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.success-container p {
  margin-bottom: 30px;
}

/* Styles for about.html, privacy.html, terms.html */
.page-content {
  padding-top: 100px; /* Space for fixed header */
  min-height: calc(100vh - 200px); /* Subtract header and part of footer */
}

.page-content .container {
  max-width: 900px;
  padding: 40px;
}

.page-content h1 {
  margin-bottom: 30px;
}

.page-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.page-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-content ul li {
  list-style-type: disc;
  margin-bottom: 10px;
}

/* Parallax Effect */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Animation for Drawn Elements */
@keyframes draw {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.draw-animation {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 2s ease forwards;
}

/* Animation for Progress Bars */
@keyframes fillBar {
  from { width: 0; }
  to { width: 100%; }
}

/* Animation for Fading Elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in-up.visible {
  animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  section {
    padding: 60px 0;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .process-card, .process-card:nth-child(even) {
    flex-direction: column;
  }
  
  .process-number {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .process-card:nth-child(even) .process-number {
    left: 50%;
    right: auto;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .feature-card, .statistic-card, .case-card, .client-card, .news-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
  }
  
  .about-content, .portfolio-item {
    flex-direction: column;
  }
  
  .about-image, .portfolio-image {
    order: -1;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 10px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}