:root {
  /* Аналоговая цветовая схема */
  --primary-color: #3273dc;
  --primary-dark: #2066c5;
  --primary-light: #4a89e8;
  --secondary-color: #32a6dc;
  --secondary-dark: #2689b5;
  --secondary-light: #4ab8e8;
  --accent-color: #3dc268;
  --accent-dark: #2ca353;
  --accent-light: #5ed085;
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #777777;
  --background-light: #f5f8fc;
  --background-dark: #eef2f7;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.15);
  --card-bg: #ffffff;
  --card-border-radius: 15px;
  --card-shadow: 10px 10px 20px rgba(166, 180, 200, 0.2), -10px -10px 20px rgba(255, 255, 255, 0.7);
  --card-shadow-hover: 12px 12px 24px rgba(166, 180, 200, 0.3), -12px -12px 24px rgba(255, 255, 255, 0.8);
  --input-bg: #eef2f7;
  --input-border: transparent;
  --input-shadow: inset 3px 3px 6px rgba(166, 180, 200, 0.2), inset -3px -3px 6px rgba(255, 255, 255, 0.7);
  --transition-time: 0.3s;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Merriweather', serif;
  color: var(--text-dark);
  background-color: var(--background-light);
  line-height: 1.6;
}

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

.title {
  font-family: 'Montserrat', sans-serif;
}

p {
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

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

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

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

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

.section {
  padding: 4rem 0;
}

/* Неоморфный стиль */
.neomorphic-section {
  padding: 4rem 0;
  position: relative;
}

.neomorphic-card {
  background-color: var(--card-bg);
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition-time) ease, transform var(--transition-time) ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.neomorphic-button {
  border-radius: 10px !important;
  box-shadow: 5px 5px 10px rgba(166, 180, 200, 0.2), -5px -5px 10px rgba(255, 255, 255, 0.7) !important;
  transition: all var(--transition-time) ease !important;
  border: none !important;
  position: relative;
  overflow: hidden;
}

.neomorphic-button:hover {
  box-shadow: 7px 7px 14px rgba(166, 180, 200, 0.3), -7px -7px 14px rgba(255, 255, 255, 0.8) !important;
  transform: translateY(-2px);
}

.neomorphic-button:active {
  box-shadow: inset 3px 3px 6px rgba(166, 180, 200, 0.2), inset -3px -3px 6px rgba(255, 255, 255, 0.7) !important;
  transform: translateY(0);
}

.neomorphic-input, .neomorphic-textarea, .neomorphic-select select {
  background-color: var(--input-bg) !important;
  border: var(--input-border) !important;
  box-shadow: var(--input-shadow) !important;
  border-radius: 10px !important;
  padding: 1.2rem 1rem !important;
  transition: all var(--transition-time) ease !important;
}

.neomorphic-input:focus, .neomorphic-textarea:focus, .neomorphic-select select:focus {
  box-shadow: inset 4px 4px 8px rgba(166, 180, 200, 0.3), inset -4px -4px 8px rgba(255, 255, 255, 0.8) !important;
  outline: none !important;
}

.neomorphic-header {
  background-color: var(--background-light);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-time) ease;
}

.neomorphic-footer {
  background-color: var(--background-dark);
  padding: 4rem 0 2rem;
  color: var(--text-dark);
}

/* Header Styles */
.navbar {
  min-height: 80px;
}

.navbar-brand {
  align-items: center;
}

.navbar-item {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--transition-time) ease;
}

.navbar-item:hover {
  color: var(--primary-color);
  background-color: transparent !important;
}

.navbar-burger {
  height: 80px;
  width: 80px;
}

.navbar-burger span {
  height: 2px;
  background-color: var(--text-dark);
}

/* Hero Section */
.hero {
  position: relative;
  margin-top: 80px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  z-index: 2;
}

.hero-content .title,
.hero-content .subtitle,
.hero-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-content .buttons {
  margin-top: 2rem;
}

/* Servicios Section */
.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.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 {
  margin-bottom: 1rem;
}

/* Proceso Section */
.process-step {
  display: flex;
  position: relative;
  padding: 2rem;
  margin-bottom: 2rem;
}

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-right: 1.5rem;
  line-height: 1;
  width: 50px;
  text-align: center;
}

.step-content {
  flex: 1;
}

/* Sustainability Section */
.image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--card-border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Events Calendar Section */
.event-card {
  padding: 2rem;
  height: 100%;
  position: relative;
}

.event-date {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-light);
}

/* Research Section */
.research-topic {
  height: 100%;
}

/* Team Section */
.team-card {
  text-align: center;
}

.team-card .card-image {
  height: 250px;
  width: 250px;
  margin: 2rem auto 1rem;
  border-radius: 50%;
  overflow: hidden;
}

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

.team-card .subtitle {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Success Stories Section */
.custom-slider {
  position: relative;
  padding: 3rem;
}

.slider-container {
  overflow: hidden;
}

.slider-item {
  display: none;
  animation: fadeEffect 1s;
}

.slider-item.active {
  display: block;
}

@keyframes fadeEffect {
  from {opacity: 0.7;}
  to {opacity: 1;}
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.prev-button, .next-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  background-color: var(--card-bg);
}

.slider-dots {
  display: flex;
  margin: 0 1rem;
}

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

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

.client-name {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Webinars Section */
.webinar-card {
  padding: 2rem;
  height: 100%;
  position: relative;
}

.webinar-date {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-light);
}

/* FAQ Section */
.faq-container {
  width: 100%;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1.5rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}

.faq-question h3 {
  margin-bottom: 0;
  flex: 1;
}

.faq-question .icon {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-left: 1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-time) ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  margin-top: 1rem;
}

/* Contact Section */
.contact-info p {
  margin-bottom: 1rem;
}

.map-container {
  height: 300px;
  width: 100%;
  border-radius: var(--card-border-radius);
  overflow: hidden;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer Styles */
.footer ul {
  list-style: none;
  padding: 0;
}

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

.footer ul li a {
  color: var(--text-dark);
  transition: color var(--transition-time) ease;
}

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

.footer .social-links li a {
  display: inline-block;
  position: relative;
  transition: transform var(--transition-time) ease;
}

.footer .social-links li a:hover {
  transform: translateY(-3px);
}

/* Additional Pages */
.page-content {
  padding-top: 120px;
  min-height: calc(100vh - 80px);
}

.success-page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.success-page .icon {
  font-size: 5rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.success-page .title {
  margin-bottom: 1.5rem;
}

.success-page .button {
  margin-top: 2rem;
}

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

.privacy-page h2, .terms-page h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.privacy-page p, .terms-page p {
  margin-bottom: 1.5rem;
}

/* Animation & Transitions */
.animate-on-scroll {
  /*opacity: 0;*/
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Cookie Consent */
#cookieConsent {
  background-color: rgba(40, 44, 52, 0.95) !important;
  color: white !important;
}

#acceptCookies {
  background-color: var(--accent-color) !important;
  transition: background-color var(--transition-time) ease !important;
  border-radius: 5px !important;
}

#acceptCookies:hover {
  background-color: var(--accent-dark) !important;
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    background-color: var(--background-light);
    box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
  }
  
  .navbar-item {
    text-align: center;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .team-card .card-image {
    height: 200px;
    width: 200px;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
  
  .hero-body {
    min-height: 60vh;
  }
  
  .card-image {
    height: 200px;
  }
  
  .custom-slider {
    padding: 1.5rem;
  }
  
  .slider-item .columns {
    flex-direction: column;
  }
  
  .slider-item .column {
    width: 100%;
  }
  
  .slider-item .image-container {
    margin-bottom: 1.5rem;
    height: 200px;
  }
  
  .map-container {
    height: 200px;
  }
  
  .footer {
    text-align: center;
  }
}

/* Адаптивная типографика */
@media screen and (min-width: 1024px) {
  html {
    font-size: 18px;
  }
  
  .title.is-1 {
    font-size: 3.5rem;
  }
  
  .title.is-2 {
    font-size: 2.8rem;
  }
  
  .title.is-3 {
    font-size: 2.2rem;
  }
  
  .title.is-4 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 1023px) {
  html {
    font-size: 16px;
  }
  
  .title.is-1 {
    font-size: 3rem;
  }
  
  .title.is-2 {
    font-size: 2.4rem;
  }
  
  .title.is-3 {
    font-size: 2rem;
  }
  
  .title.is-4 {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .title.is-1 {
    font-size: 2.5rem;
  }
  
  .title.is-2 {
    font-size: 2.2rem;
  }
  
  .title.is-3 {
    font-size: 1.8rem;
  }
  
  .title.is-4 {
    font-size: 1.4rem;
  }
}
.navbar-burger{
  display: none;
}