:root {
  /* Пастельная цветовая схема */
  --primary-color: #f3a683;
  --primary-dark: #e07a5f;
  --secondary-color: #778beb;
  --secondary-dark: #546de5;
  --accent-color: #e77f67;
  --accent-dark: #d35400;
  --light-color: #f5f5f5;
  --dark-color: #333333;
  --text-color: #4b4b4b;
  --text-light: #777777;
  --text-white: #ffffff;
  --bg-light: #f9f9f9;
  --border-color: #e0e0e0;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  --gradient-dark: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
  
  /* Тени */
  --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.1);
  
  /* Скругления */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Размеры шрифтов */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
}

/* Базовые стили */
body {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light-color);
  padding-top: 0px !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-color);
}

p {
  margin-bottom: 1.25rem;
}

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

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

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

.section-title {
  font-size: var(--font-size-3xl);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

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

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-description {
  font-size: var(--font-size-lg);
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Кнопки */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  transition: all var(--transition-normal);
  border: none;
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  letter-spacing: 0.5px;
}

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

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

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

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

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

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

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

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--font-size-md);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--font-size-xs);
}

/* Карточки */
.card {
  border: none;
  border-radius: var(--border-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(-5px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

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

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

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  margin-bottom: 1rem;
  font-weight: 700;
}

.card-text {
  color: var(--text-color);
  flex: 1;
}

/* Навигация */
.navbar {
  padding: 1rem 0;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: var(--font-size-xl);
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  color: var(--text-color);
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: color var(--transition-normal);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 75vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--text-white);
}

.hero-content h1 {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-white);
  animation: fadeInUp 1s ease;
}

.hero-content p {
  font-size: var(--font-size-lg);
  max-width: 600px;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease;
}

.progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all var(--transition-normal);
}

.progress-dot.active {
  background-color: var(--text-white);
  transform: scale(1.2);
}

/* Services Section */
.services-section {
  padding: 5rem 0;
}

.service-icon {
  fill: var(--primary-color);
  transition: all var(--transition-normal);
}

.card:hover .service-icon {
  fill: var(--primary-dark);
  transform: scale(1.1);
}

.animated-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(243, 166, 131, 0.1);
  margin: 0 auto 1.5rem;
  transition: all var(--transition-normal);
}

.card:hover .animated-icon {
  transform: rotate(10deg);
  background-color: rgba(243, 166, 131, 0.2);
}

/* Mission Section */
.mission-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.image-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.progress-bar-container {
  margin-bottom: 1.5rem;
}

.progress {
  height: 10px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.progress-bar {
  background-color: var(--primary-color);
  border-radius: var(--border-radius-sm);
}

/* Insights Section */
.insights-section {
  padding: 5rem 0;
}

/* Resources Section */
.resources-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.resource-icon {
  fill: var(--secondary-color);
  transition: all var(--transition-normal);
}

.card:hover .resource-icon {
  fill: var(--secondary-dark);
  transform: scale(1.1);
}

/* Events Calendar Section */
.events-section {
  padding: 5rem 0;
}

.event-card {
  position: relative;
}

.event-date {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: var(--border-radius-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.event-date .day {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
}

.event-details {
  font-size: var(--font-size-sm);
  color: var(--text-light);
}

/* Innovation Section */
.innovation-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

/* Media Section */
.media-section {
  padding: 5rem 0;
}

.media-source {
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Portfolio Section */
.portfolio-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.portfolio-item {
  margin-bottom: 2rem;
}

.portfolio-item .image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  height: 300px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.portfolio-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.portfolio-item:hover .overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: var(--text-white);
  padding: 2rem;
}

.overlay-content h3 {
  font-size: var(--font-size-xl);
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.overlay-content p {
  margin-bottom: 1rem;
}

/* Behind the Scenes Section */
.behind-scenes-section {
  padding: 5rem 0;
}

.team-card .card-image {
  width: 100%;
  height: 300px;
  border-radius: 50% 50% 0 0;
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-position {
  color: var(--primary-color);
  font-weight: 600;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  color: var(--text-light);
  transition: color var(--transition-normal);
}

.social-link:hover {
  color: var(--primary-color);
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.pricing-card {
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary-color);
}

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

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-title {
  font-weight: 700;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  margin: 1.5rem 0;
}

.pricing-price .currency {
  font-size: var(--font-size-xl);
  font-weight: 600;
  vertical-align: top;
  margin-right: 0.25rem;
}

.pricing-price .amount {
  font-size: var(--font-size-4xl);
  font-weight: 700;
}

.pricing-price .period {
  font-size: var(--font-size-md);
  color: var(--text-light);
}

.pricing-features {
  margin-bottom: 1.5rem;
}

.pricing-features li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  text-align: left;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
}

.contact-info {
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  background-color: var(--bg-light);
  box-shadow: var(--shadow-md);
}

.info-item {
  margin-bottom: 1.5rem;
}

.contact-icon {
  fill: var(--primary-color);
  margin-right: 0.5rem;
}

.contact-form {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
  padding-top: 5rem;
  background-color: var(--dark-color);
  color: var(--text-white);
}

.footer h4 {
  color: var(--text-white);
  margin-bottom: 1.5rem;
  position: relative;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

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

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

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

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

.footer .social-links {
  justify-content: flex-start;
}

.footer .social-link {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.footer .social-link:hover {
  color: var(--primary-color);
}

.footer .border-top {
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}

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

.success-content {
  max-width: 600px;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  background-color: var(--bg-light);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  fill: var(--primary-color);
}

/* Privacy & Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px;
  padding-bottom: 5rem;
}

.privacy-content, .terms-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

/* Utilities */
.min-vh-75 {
  min-height: 75vh;
}

.z-1 {
  z-index: 1;
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* Responsive */
@media (max-width: 992px) {
  :root {
    --font-size-4xl: 2rem;
    --font-size-3xl: 1.75rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: var(--font-size-2xl);
  }
  
  .section-description {
    font-size: var(--font-size-md);
  }
  
  .hero-content h1 {
    font-size: var(--font-size-3xl);
  }
  
  .hero-content p {
    font-size: var(--font-size-md);
  }
  
  .event-date {
    width: 60px;
    height: 60px;
  }
  
  .event-date .day {
    font-size: var(--font-size-xl);
  }
  
  .event-date .month {
    font-size: var(--font-size-xs);
  }
}

@media (max-width: 576px) {
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .hero-content h1 {
    font-size: var(--font-size-2xl);
  }
  
  .contact-form, .contact-info {
    padding: 1.5rem;
  }
}

html,body{
  overflow-x: hidden;
}