:root {
  /* Основная цветовая палитра */
  --primary-color: #ff6b6b;
  --primary-dark: #e05555;
  --secondary-color: #4ecdc4;
  --secondary-dark: #3dbbb3;
  --accent-color: #ffd166;
  --accent-dark: #e6bd5c;
  --dark-color: #2a2d34;
  --light-color: #f7f9fc;
  --gray-color: #75787e;
  --white-color: #ffffff;
  --black-color: #111111;
  
  /* Градиенты */
  --primary-gradient: linear-gradient(135deg, var(--primary-color), #ff8e8e);
  --secondary-gradient: linear-gradient(135deg, var(--secondary-color), #65e0d9);
  --accent-gradient: linear-gradient(135deg, var(--accent-color), #ffe07d);
  --dark-gradient: linear-gradient(135deg, var(--dark-color), #3d4148);
  
  /* Тени */
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  --hover-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  
  /* Скругления */
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-center {
  text-align: center;
}

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

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

/* Кнопки */
.btn,
button,
input[type="submit"] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  border-radius: var(--border-radius);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--box-shadow);
}

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

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

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

.btn-secondary {
  background: var(--secondary-gradient);
  color: var(--white-color);
}

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

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

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Навигационная панель */
.navbar {
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar-brand h1 {
  font-size: 1.8rem;
  margin: 0;
  color: var(--primary-color);
}

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

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

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: none;
  background-color: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero секция */
.hero-section {
  position: relative;
  padding: 8rem 0;
  background-color: var(--dark-color);
  overflow: hidden;
}

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

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

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

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

.hero-content p {
  color: var(--white-color);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Behind the Scenes Section */
#detras-escenas {
  background-color: var(--white-color);
  padding: 5rem 0;
}

.card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

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

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

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Statistics Section */
#estadisticas {
  background-color: var(--light-color);
  padding: 5rem 0;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  height: 100%;
}

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

.stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.stat-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.stat-description {
  color: var(--gray-color);
}

/* Success Stories Section */
#historias-exito {
  background-color: var(--white-color);
  padding: 5rem 0;
}

.success-story {
  overflow: hidden;
}

.success-story .card-image img {
  height: 350px;
}

/* External Resources Section */
#recursos-externos {
  background-color: var(--light-color);
  padding: 5rem 0;
}

.resource-card {
  height: 100%;
  transition: var(--transition);
}

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

.resource-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

/* Resources Section */
#recursos {
  background-color: var(--white-color);
  padding: 5rem 0;
}

/* Press Section */
#prensa {
  background-color: var(--light-color);
  padding: 5rem 0;
}

.press-card {
  height: 100%;
}

.press-source {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Accolades Section */
#reconocimientos {
  background-color: var(--white-color);
  padding: 5rem 0;
}

.accolade-card {
  height: 100%;
}

/* Careers Section */
#carreras {
  background-color: var(--light-color);
  padding: 5rem 0;
}

.career-overview,
.career-area,
.job-opening,
.career-cta {
  height: 100%;
}

.career-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.career-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.career-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.job-location {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Webinars Section */
#webinars {
  background-color: var(--white-color);
  padding: 5rem 0;
}

.webinar-card {
  height: 100%;
}

.webinar-date {
  color: var(--primary-color);
  font-weight: 600;
}

.webinar-details .badge {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Section */
#contacto {
  background-color: var(--light-color);
  padding: 5rem 0;
}

.contact-info,
.contact-form {
  height: 100%;
}

.contact-list {
  list-style-type: none;
  padding-left: 0;
}

.contact-list li {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-list li i {
  width: 24px;
  margin-right: 1rem;
  color: var(--primary-color);
}

.contact-list li div {
  flex: 1;
}

.contact-list li strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--dark-color);
}

.form-control {
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  padding: 0.75rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

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

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

.footer-title {
  color: var(--white-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer p {
  color: #b4b7bd;
}

.social-links a {
  color: var(--light-color);
  margin-right: 1.5rem;
  transition: var(--transition);
}

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

.footer-links {
  list-style-type: none;
  padding-left: 0;
}

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

.footer-links a {
  color: #b4b7bd;
  transition: var(--transition);
}

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

.footer-subscribe .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white-color);
}

.footer-subscribe .form-control::placeholder {
  color: #b4b7bd;
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
#cookieConsent {
  background: rgba(0, 0, 0, 0.85);
  color: var(--white-color);
  padding: 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  text-align: center;
}

#cookieConsent a {
  color: var(--white-color);
  text-decoration: underline;
}

#cookieConsent button {
  margin-top: 10px;
}

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

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

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-radius: 50%;
  font-size: 3rem;
}

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

.page-title {
  margin-bottom: 3rem;
  text-align: center;
}

/* Animations */
@keyframes morphing {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
}

.morph-element {
  animation: morphing 8s ease-in-out infinite;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 6rem 0;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .card-image img {
    height: 250px;
  }
  
  .footer {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 4rem 0;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .hero-content h2 {
    font-size: 1.75rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}
.navbar-toggler{
  display: none;
}