:root {
  /* Основная цветовая палитра */
  --primary-color: #4169E1;
  --primary-dark: #3457c0;
  --primary-light: #6285e8;
  --secondary-color: #5D3FD3;
  --secondary-dark: #4e33b2;
  --secondary-light: #7a61e0;
  --accent-color: #00BFFF;
  --accent-dark: #0099cc;
  --accent-light: #33ccff;
  
  /* Нейтральные цвета */
  --dark-color: #222222;
  --dark-gray: #444444;
  --medium-gray: #777777;
  --light-gray: #CCCCCC;
  --light-color: #F8F9FA;
  --white: #FFFFFF;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  --gradient-dark: linear-gradient(135deg, rgba(33, 37, 41, 0.95), rgba(66, 70, 73, 0.95));
  --gradient-overlay: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  
  /* Тени */
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.15);
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Скругления */
  --border-radius-sm: 5px;
  --border-radius-md: 10px;
  --border-radius-lg: 20px;
  --border-radius-xl: 30px;
}

/* Базовые стили */
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

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

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

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

/* Кнопки */
.btn, 
button, 
input[type="submit"] {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.btn:hover, 
button:hover, 
input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn:active, 
button:active, 
input[type="submit"]:active {
  transform: translateY(1px);
}

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

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

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

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

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

.btn-outline-primary:hover {
  background: rgba(65, 105, 225, 0.1);
  color: var(--primary-dark);
}

/* Header и навигация */
header {
  transition: background-color var(--transition-normal);
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
  transition: all var(--transition-normal);
}

.navbar-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white) !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color var(--transition-normal);
}

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

.navbar-dark .navbar-toggler {
  border: none;
}

.bg-gradient {
  background: var(--gradient-primary);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  overflow: hidden;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

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

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

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--medium-gray);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.bg-light {
  background-color: #f8f9fa !important;
}

/* Card Styles */
.card {
  border: none;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  margin-bottom: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

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

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

.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-body {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

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

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

/* Success Stories */
.success-card {
  box-shadow: var(--shadow-md);
}

.success-card .card-image {
  height: 250px;
}

.success-card .card-title {
  color: var(--primary-color);
}

/* History Section */
.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.accordion-button {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  background: var(--light-color);
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: var(--gradient-primary);
  color: var(--white);
}

.accordion-button::after {
  background-size: 1.2rem;
}

.accordion-body {
  background-color: var(--white);
  padding: 1.5rem;
}

/* Behind the Scenes */
.behind-scenes-card .card-image {
  height: 300px;
}

.behind-scenes-card .card-image img {
  height: 100%;
}

.behind-scenes-card .card-title {
  color: var(--secondary-color);
}

/* Testimonials */
.testimonial-card {
  padding: 2rem;
  text-align: center;
}

.rating {
  color: gold;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
}

.client-image {
  margin-right: 15px;
}

.client-image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.client-details h5 {
  margin-bottom: 0.2rem;
}

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

/* Events Calendar */
.event-card {
  position: relative;
}

.event-card .card-image {
  height: 300px;
}

.event-date {
  background: var(--primary-color);
  color: var(--white);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 15px;
  border-radius: var(--border-radius-sm);
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

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

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

/* Resources Section */
.resource-card {
  background-color: var(--light-color);
  border-left: 5px solid var(--primary-color);
  transition: all var(--transition-normal);
}

.resource-card:hover {
  border-left-color: var(--secondary-color);
}

.resource-card .card-title {
  color: var(--primary-color);
}

/* Contact Section */
.contact-info, .contact-form {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-info h3, .contact-form h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-info ul {
  padding: 0;
}

.contact-info ul li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.contact-info ul li i {
  margin-right: 10px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.form-control, .form-select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-normal);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(65, 105, 225, 0.25);
}

.form-label {
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Footer */
.footer {
  background: var(--gradient-dark);
  color: var(--white);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

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

.footer a {
  color: var(--white);
  transition: color var(--transition-normal);
  text-decoration: none;
}

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

/* Social Media Links */
.social-links a {
  color: var(--white);
  margin-right: 1.5rem;
  font-size: 1.2rem;
  transition: color var(--transition-normal);
  text-decoration: none;
}

.social-links a:hover {
  color: var(--accent-color);
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--gradient-dark);
  color: var(--white);
  z-index: 9999;
  padding: 15px;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0 15px 0 0;
  flex: 1;
}

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

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

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

.success-icon {
  font-size: 5rem;
  color: #28a745;
  margin-bottom: 2rem;
}

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

.page-title {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

/* Animations and Scroll Effects */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* Read More Links */
.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding-right: 25px;
  transition: all var(--transition-normal);
}

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

.read-more:hover {
  color: var(--primary-dark);
  padding-right: 30px;
}

.read-more:hover::after {
  right: -5px;
}

.fixed-top{
  background: #121212;
}
/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem;
    border-radius: var(--border-radius-md);
  }
  
  .hero-section {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-section {
    height: auto;
    padding: 120px 0 80px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-content p {
    margin: 0 0 15px 0;
  }
  
  .card-image {
    height: 200px;
  }
  
  .contact-info, .contact-form {
    margin-bottom: 2rem;
  }
  
  .event-date {
    top: 10px;
    right: 10px;
    padding: 5px 10px;
  }
  
  .event-date .day {
    font-size: 1.2rem;
  }
  
  .client-info {
    flex-direction: column;
    text-align: center;
  }
  
  .client-image {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 576px) {
  .btn, button, input[type="submit"] {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
  }
  
  .hero-section h1 {
    font-size: 1.75rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
}
.color-black{
  color: #121212!important;
}