
/* General Styles */
:root {
  --primary-color: #1a3b2c;
  --secondary-color: #18b337;
  --accent-color: #6bff26;
  --light-bg: #f8f9fa;
  --dark-bg: #1a3b2c;
  --gradient-primary: linear-gradient(135deg, #1a3b2c 0%, #2d613c 100%);
  --gradient-accent: linear-gradient(135deg, #18b337 0%,#6bff26 100%);
  --text-light: #ffffff;
  --text-dark: #333333;
  --card-shadow: 0 10px 30px rgba(26, 27, 59, 0.1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.section-padding {
  padding: 80px 0;
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.animate-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

.feature-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.learning-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.learning-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Header Styles */
.navbar {
  transition: all 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 20px rgba(26, 27, 59, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color) !important;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem !important;
}

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

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

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color) !important;
}

/* Hero Section */
.hero-section {
  background: var(--gradient-primary);
  min-height: 110vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}


.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInLeft 1s ease-out;
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-features {
  margin-bottom: 2rem;
}

.feature-item {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }

.feature-item i {
  margin-right: 10px;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.hero-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-trial {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
  font-weight: 600;
  animation: fadeInUp 1s ease-out 1s both;
}

.btn-primary-custom {
  background: var(--gradient-accent);
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  color: var(--text-light);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
  animation: fadeInUp 1s ease-out 1.2s both;
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary-custom:hover::before {
  left: 100%;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  color: var(--text-light);
}

.hero-image {
  position: relative;
  z-index: 2;
  animation: fadeInRight 1s ease-out 0.5s both;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.02);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

/* Footer */
.footer-section {
  background: var(--dark-bg);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.footer-section > * {
  position: relative;
  z-index: 2;
}

.footer-section h5 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-section h5::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.contact-info p {
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.contact-info p:hover {
  transform: translateX(5px);
}

.contact-info i {
  color: var(--accent-color);
  margin-right: 10px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-primary);
  padding: 20px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -5px 20px rgba(26, 27, 59, 0.3);
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content p {
  color: var(--text-light);
  margin: 0;
}

.cookie-content a {
  color: var(--accent-color);
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

/* Content Styles for Legal Pages */
.content h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--light-bg);
}

.content h3 {
  color: var(--secondary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
}

.content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content ul {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.content li {
  margin-bottom: 0.5rem;
}

.content a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
}

.content a:hover {
  text-decoration: underline;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }

  .hero-features {
    margin-bottom: 1.5rem;
  }
  .hero-price {
    font-size: 2rem;
  }
  
  .hero-trial {
    font-size: 1.2rem;
  }
  
  .btn-primary-custom {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .cookie-popup {
    padding: 15px 0;
  }
  
  .hero-image {
    margin-top: 2rem;
    max-height: 200px;
  }
}


/* new styles  */
/* Загальні стилі */
:root {
  --primary-color: #1a3b2c;
  --secondary-color: #18b337;
  --accent-color: #6bff26;
  --light-bg: #f8f9fa;
  --dark-bg: #1a3b2c;
  --gradient-primary: linear-gradient(135deg, #1a3b2c 0%, #2d613c 100%);
  --gradient-accent: linear-gradient(135deg, #18b337 0%, #6bff26 100%);
  --text-light: #ffffff;
  --text-dark: #333333;
  --card-shadow: 0 10px 30px rgba(26, 27, 59, 0.1);
}

body {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Стилі для головного екрану */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(26, 59, 44, 0.85) 30%, rgba(26, 59, 44, 0.6) 50%, rgba(26, 59, 44, 0.7) 100%);
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 5%;
  padding-right: 5%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  text-transform: uppercase;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* Стилі для блоків 2-4 */
.section-title {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 4px;
  width: 60px;
  background: var(--accent-color);
}

.card {
  border: none;
  transition: transform 0.3s;
  background-color: var(--light-bg);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-weight: 600;
  color: var(--primary-color);
}

.carousel-control-prev, 
.carousel-control-next {
  width: 5%;
}

.news-date {
  font-size: 0.85rem;
  color: var(--secondary-color);
  font-weight: 500;
}

.highlight-card {
  height: 100%;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-text {
  font-size: 1rem;
  color: var(--text-dark);
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
}

.analytics-text {
  line-height: 1.8;
}
/* Стилі для блоків 5-7 */
.info-block {
  padding: 2rem;
  background-color: var(--light-bg);
  margin-bottom: 1.5rem;
}

.calendar-item {
  border-left: 4px solid var(--secondary-color);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  background-color: var(--light-bg);
}

.event-date {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.event-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.img-container {
  height: 250px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

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

.info-section-text {
  line-height: 1.8;
}