:root {
  /* Неоморфная цветовая схема - раздельно-дополнительная */
  --primary: #3a6ea5;
  --primary-dark: #2c5a8c;
  --primary-light: #5284bd;
  
  --secondary: #ff7f50;
  --secondary-dark: #e06940;
  --secondary-light: #ff9672;
  
  --accent: #6a9e3f;
  --accent-dark: #568834;
  --accent-light: #7fb55c;
  
  --neutral: #f8f9fa;
  --neutral-dark: #e9ecef;
  --neutral-light: #ffffff;
  
  --text-dark: #333333;
  --text-light: #f8f9fa;
  --text-muted: #6c757d;
  
  /* Неоморфные тени */
  --shadow-small: 3px 3px 6px rgba(0, 0, 0, 0.15), -3px -3px 6px rgba(255, 255, 255, 0.9);
  --shadow-medium: 5px 5px 10px rgba(0, 0, 0, 0.15), -5px -5px 10px rgba(255, 255, 255, 0.9);
  --shadow-large: 10px 10px 20px rgba(0, 0, 0, 0.15), -10px -10px 20px rgba(255, 255, 255, 0.9);
  --shadow-inset: inset 3px 3px 6px rgba(0, 0, 0, 0.1), inset -3px -3px 6px rgba(255, 255, 255, 0.8);
  
  /* Радиусы скругления */
  --border-radius-small: 8px;
  --border-radius-medium: 12px;
  --border-radius-large: 20px;
  
  /* Типография */
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  /* Переходы */
  --transition-short: all 0.3s ease;
  --transition-medium: all 0.5s ease;
  --transition-long: all 0.8s ease;
}

/* Базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--neutral);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  position: relative;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

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

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

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-header h2 {
  display: inline-block;
  margin-bottom: 1rem;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 70%;
  height: 4px;
  margin: 1rem auto 0;
  background: var(--secondary);
  border-radius: var(--border-radius-small);
}

.section-header p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Неоморфные карты */
.card, .service-card, .why-us-card, .news-card, .webinar-card, .success-story-card, .testimonial-card, .accolade-card, .event-card, .methodology-step, .resource-card {
  background-color: var(--neutral);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
  margin-bottom: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover, .service-card:hover, .why-us-card:hover, .news-card:hover, .webinar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.card-image, .webinar-thumbnail, .testimonial-image {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.card-image img, .webinar-thumbnail img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-medium);
  border-top-left-radius: var(--border-radius-medium);
  border-top-right-radius: var(--border-radius-medium);
}

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

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

/* Кнопки */
.btn, button, input[type='submit'] {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--border-radius-small);
  transition: var(--transition-short);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-small);
  outline: none !important;
}

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

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

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--text-light) !important;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-light) !important;
}

.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--text-light) !important;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--text-light) !important;
}

.btn-outline-primary {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary) !important;
}

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

.btn-outline-light {
  background-color: transparent;
  border-color: var(--text-light);
  color: var(--text-light) !important;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--text-light);
  color: var(--text-light) !important;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.read-more {
  font-weight: 500;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  transition: var(--transition-short);
  text-decoration: none;
  font-weight: bold;
}

.read-more:hover {
  color: var(--secondary-dark);
  text-decoration: none;
  transform: translateX(5px);
}

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

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

/* Анимации с AOS */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

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

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--primary);
  font-weight: 700;
}

.navbar-nav {
  display: flex;
  align-items: center;
}

.nav-link {
  color: var(--text-dark);
  margin: 0 0.5rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius-small);
  transition: var(--transition-short);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition-short);
  transform: translateX(-50%);
}

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

.nav-link:hover::after {
  width: 80%;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 7rem 0 5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

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

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.6s forwards;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 1s ease 0.9s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Why Us Section */
.why-us-section {
  padding: 5rem 0;
  background-color: var(--neutral);
}

.why-us-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.why-us-card .card-image {
  height: 250px;
  overflow: hidden;
  border-radius: var(--border-radius-small);
  margin-bottom: 1.5rem;
}

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

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

.why-us-card .card-content {
  flex: 1;
  padding: 1.5rem;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background-color: var(--neutral-light);
}

.service-card {
  height: 100%;
}

.service-card .card-image {
  height: 200px;
}

.service-card .card-content {
  padding: 1.5rem;
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* History Section */
.history-section {
  padding: 5rem 0;
  background-color: var(--neutral);
}

.timeline {
  position: relative;
  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-light), var(--secondary), var(--accent));
  border-radius: 4px;
}

.timeline-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content {
  width: 80%;
  max-width: 800px;
  background-color: var(--neutral-light);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
  padding: 2rem;
  position: relative;
  z-index: 1;
  transition: var(--transition-medium);
}

.timeline-content:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-large);
}

.timeline-content h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--neutral-light);
  border-radius: var(--border-radius-small);
  box-shadow: var(--shadow-small);
}

.timeline-content .image-container {
  margin: 1.5rem 0;
  border-radius: var(--border-radius-small);
  overflow: hidden;
}

.timeline-content .image-container img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-medium);
}

.timeline-content:hover .image-container img {
  transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: var(--neutral-light);
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-small);
  border: none;
}

.accordion-button {
  font-weight: 600;
  padding: 1.5rem;
  border-radius: var(--border-radius-medium) !important;
  background-color: var(--neutral) !important;
  color: var(--primary) !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-light) !important;
  color: var(--text-light) !important;
}

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

/* Research Section */
.research-section {
  padding: 5rem 0;
  background-color: var(--neutral);
}

.research-image {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-medium);
}

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

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

.research-content h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  flex: 1;
  min-width: 100px;
  padding: 1.5rem;
  border-radius: var(--border-radius-small);
  background-color: var(--neutral-light);
  box-shadow: var(--shadow-small);
  text-align: center;
  transition: var(--transition-short);
}

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

.stat-item h4 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.methodology-section {
  margin-top: 4rem;
}

.methodology-steps {
  margin-top: 2rem;
}

.methodology-step {
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.step-number::before {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(58, 110, 165, 0.2);
  z-index: -1;
}

.methodology-step h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

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

.resources-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.resource-card h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--secondary);
}

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

.resource-card ul li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.resource-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-size: 1.2rem;
}

.resource-card ul li a {
  color: var(--text-dark);
  transition: var(--transition-short);
}

.resource-card ul li a:hover {
  color: var(--primary);
}

/* Success Stories */
.success-stories-section {
  padding: 5rem 0;
  background-color: var(--neutral);
}

.success-story-card {
  height: 100%;
  overflow: hidden;
}

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

.success-story-card .card-content {
  padding: 2rem;
}

.success-story-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.success-story-card .industry {
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.success-story-card .results {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.result-item {
  flex: 1;
  min-width: 80px;
  padding: 1rem;
  background-color: var(--primary-light);
  color: var(--text-light);
  border-radius: var(--border-radius-small);
  text-align: center;
  transition: var(--transition-short);
}

.result-item:hover {
  transform: translateY(-5px);
  background-color: var(--primary);
}

.result-number {
  display: block;
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.result-label {
  font-size: 0.875rem;
}

/* Testimonials */
.testimonials-section {
  padding: 5rem 0;
  background-color: var(--neutral-light);
}

.testimonial-card {
  padding: 2rem;
  text-align: center;
  height: 100%;
}

.testimonial-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-medium);
  border: 5px solid var(--neutral-light);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 3rem;
  color: var(--secondary-light);
  position: absolute;
  opacity: 0.3;
}

.testimonial-text::before {
  top: -20px;
  left: -10px;
}

.testimonial-text::after {
  bottom: -40px;
  right: -10px;
}

.testimonial-author h4 {
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  color: var(--text-muted);
}

/* Accolades Section */
.accolades-section {
  padding: 5rem 0;
  background-color: var(--neutral);
}

.accolades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.accolade-card {
  padding: 2rem;
  text-align: center;
}

.accolade-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.accolade-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* Partners Section */
.partners-section {
  padding: 5rem 0;
  background-color: var(--neutral-light);
}

.partners-logos {
  margin-top: 3rem;
}

.partner-logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 2rem;
  transition: var(--transition-short);
  filter: grayscale(100%);
}

.partner-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}



/* News Section */
.news-section {
  padding: 5rem 0;
  background-color: var(--neutral);
}

.news-grid {
  margin-top: 2rem;
}

.news-card {
  height: 100%;
}

.news-card .card-image {
  height: 200px;
  position: relative;
}

.news-date {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--secondary);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-top-left-radius: var(--border-radius-small);
  font-weight: 500;
}

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

/* Events Section */
.events-section {
  padding: 5rem 0;
  background-color: var(--neutral-light);
}

.events-timeline {
  margin-top: 3rem;
}

.event-card {
  display: flex;
  margin-bottom: 2rem;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background-color: var(--neutral);
}

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

.event-date .month {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

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

.event-content h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.event-location {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

/* Webinars Section */
.webinars-section {
  padding: 5rem 0;
  background-color: var(--neutral);
}

.webinar-card {
  height: 100%;
}

.webinar-thumbnail {
  height: 225px;
  position: relative;
}

.webinar-duration {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-top-left-radius: var(--border-radius-small);
}

.webinar-content {
  padding: 2rem;
}

.webinar-content h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: var(--neutral-light);
}

.contact-info {
  margin-bottom: 3rem;
}

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

.info-item h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.contact-map {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

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

.contact-form {
  background-color: var(--neutral);
  padding: 2.5rem;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
}

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

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

.form-control {
  border-radius: var(--border-radius-small);
  padding: 0.75rem;
  border: 1px solid var(--neutral-dark);
  background-color: var(--neutral-light);
  box-shadow: var(--shadow-inset);
  transition: var(--transition-short);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-light);
}

/* Footer */
.footer {
  background-color: #2d3748;
  color: var(--text-light);
  padding: 5rem 0 2rem;
}

.footer h3 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer-about p {
  color: #a0aec0;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  color: var(--neutral-light);
  transition: var(--transition-short);
  position: relative;
  padding-left: 30px;
}

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

.social-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.social-links a[href*="facebook"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.04C6.5 2.04 2 6.53 2 12.06C2 17.06 5.66 21.21 10.44 21.96V14.96H7.9V12.06H10.44V9.85C10.44 7.34 11.93 5.96 14.22 5.96C15.31 5.96 16.45 6.15 16.45 6.15V8.62H15.19C13.95 8.62 13.56 9.39 13.56 10.18V12.06H16.34L15.89 14.96H13.56V21.96C15.9 21.59 18.03 20.37 19.6 18.57C21.17 16.76 22.02 14.49 22 12.06C22 6.53 17.5 2.04 12 2.04Z'/%3E%3C/svg%3E");
}

.social-links a[href*="twitter"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M22.46 6C21.69 6.35 20.86 6.58 20 6.69C20.88 6.16 21.56 5.32 21.88 4.31C21.05 4.81 20.13 5.16 19.16 5.36C18.37 4.5 17.26 4 16 4C13.65 4 11.73 5.92 11.73 8.29C11.73 8.63 11.77 8.96 11.84 9.27C8.28 9.09 5.11 7.38 3 4.79C2.63 5.42 2.42 6.16 2.42 6.94C2.42 8.43 3.17 9.75 4.33 10.5C3.62 10.5 2.96 10.3 2.38 10V10.03C2.38 12.11 3.86 13.85 5.82 14.24C5.19 14.41 4.53 14.44 3.89 14.31C4.16 15.1 4.62 15.83 5.32 16.35C6.01 16.87 6.87 17.17 7.76 17.18C6.3 18.31 4.47 18.92 2.64 18.92C2.3 18.92 1.95 18.89 1.61 18.85C3.44 20.03 5.55 20.68 7.66 20.68C16 20.68 20.33 13.83 20.33 7.92C20.33 7.71 20.33 7.5 20.31 7.31C21.16 6.72 21.88 5.98 22.46 5.13V6Z'/%3E%3C/svg%3E");
}

.social-links a[href*="instagram"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M7.8 2H16.2C19.4 2 22 4.6 22 7.8V16.2C22 19.4 19.4 22 16.2 22H7.8C4.6 22 2 19.4 2 16.2V7.8C2 4.6 4.6 2 7.8 2ZM7.6 4C5.61 4 4 5.61 4 7.6V16.4C4 18.39 5.61 20 7.6 20H16.4C18.39 20 20 18.39 20 16.4V7.6C20 5.61 18.39 4 16.4 4H7.6ZM17.25 5.5C17.66 5.5 18 5.84 18 6.25C18 6.66 17.66 7 17.25 7C16.84 7 16.5 6.66 16.5 6.25C16.5 5.84 16.84 5.5 17.25 5.5ZM12 7C14.76 7 17 9.24 17 12C17 14.76 14.76 17 12 17C9.24 17 7 14.76 7 12C7 9.24 9.24 7 12 7ZM12 9C10.35 9 9 10.35 9 12C9 13.65 10.35 15 12 15C13.65 15 15 13.65 15 12C15 10.35 13.65 9 12 9Z'/%3E%3C/svg%3E");
}

.social-links a[href*="linkedin"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M19 3C20.1 3 21 3.9 21 5V19C21 20.1 20.1 21 19 21H5C3.9 21 3 20.1 3 19V5C3 3.9 3.9 3 5 3H19ZM18.5 18.5V13.2C18.5 11.4 17.9 10 15.9 10C14.9 10 14.2 10.5 13.9 11V10.2H11.5V18.5H13.9V13.6C13.9 12.7 14.1 11.9 15.2 11.9C16.3 11.9 16.3 12.9 16.3 13.7V18.5H18.5ZM6.9 8.4C7.6 8.4 8.1 7.9 8.1 7.2C8.1 6.5 7.6 6 6.9 6C6.2 6 5.7 6.5 5.7 7.2C5.7 7.9 6.2 8.4 6.9 8.4ZM8.1 18.5V10.2H5.7V18.5H8.1Z'/%3E%3C/svg%3E");
}

.footer-links ul, .footer-services ul {
  list-style: none;
  padding: 0;
}

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

.footer-links ul li a, .footer-services ul li a {
  color: #a0aec0;
  transition: var(--transition-short);
}

.footer-links ul li a:hover, .footer-services ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

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

.footer-contact ul li {
  margin-bottom: 1rem;
  color: #a0aec0;
}

.footer-contact ul li i {
  margin-right: 0.5rem;
  color: var(--secondary);
}

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

.footer-bottom p {
  margin-bottom: 0;
  color: #a0aec0;
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}

.footer-legal a {
  color: #a0aec0;
}

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

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

.success-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

.success-content h1 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

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

.privacy-content, .terms-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Media Queries */
@media (max-width: 991px) {
  h1 {
    font-size: 2.75rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-section {
    padding: 7rem 0 4rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-content {
    width: 100%;
    max-width: 100%;
    margin-left: 60px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-section {
    padding: 6rem 0 3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    min-width: 100%;
    padding: 1rem;
  }
  
  .footer-legal {
    justify-content: flex-start;
    margin-top: 1.5rem;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .card-image, .webinar-thumbnail {
    height: 200px;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .stats-container {
    flex-direction: column;
  }
}
