/********** Template CSS **********/
:root {
    --primary: #83c21a;
    --light: #f1f8ff;
    --dark: #2d2a3a;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark {
    background-color: var(--dark) !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 15px 0;
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-brand p {
    color: #ffffff;
    transition: all 0.3s ease;
}

.navbar-brand:hover p {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-dark {
        padding: 0.5rem 0;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}

/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

@media (max-width: 700px) {
    .cookie-wrapper {
        width: 100%;
    }
}

.cookie-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 380px;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999;
    border: 1px solid rgba(69, 169, 178, 0.2);
}

.cookie-wrapper.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-wrapper i {
    display: block;
    text-align: center;
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.cookie-wrapper h2 {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.cookie-wrapper .data {
    margin-bottom: 20px;
}

.cookie-wrapper .data p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.cookie-wrapper .data p a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.cookie-wrapper .data p a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.cookie-wrapper .data p a:hover::after {
    width: 100%;
}

.cookie-wrapper .buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.cookie-wrapper .cookie-button {
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-wrapper #acceptBtn {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(69, 169, 178, 0.3);
}

.cookie-wrapper #acceptBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(69, 169, 178, 0.4);
}

.cookie-wrapper #declineBtn {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.cookie-wrapper #declineBtn:hover {
    background-color: var(--dark);
    color: white;
    transform: translateY(-2px);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 600px) {
    .cookie-wrapper {
        width: 90%;
        right: 5%;
        bottom: 20px;
        padding: 20px;
    }

    .cookie-wrapper .buttons {
        flex-direction: column;
    }

    .cookie-wrapper .cookie-button {
        width: 100%;
    }
}

.hidden {
    display: none;
}

header i {
    color: #83c21a;
    font-size: 32px;
    text-align: center;
}

header h2 {
    color: #83c21a;
    font-weight: 500;
    text-align: center;
}

.data {
    text-align: center;
}

.data p a {
    color: #83c21a;
    text-decoration: none;
    text-align: center !important;
}

.data p a:hover {
    text-decoration: underline;
}

.buttons {
    padding: 20px 0px;
    text-align: center;
}

.buttons .cookie-button {
    border: 2px solid #83c21a;
    color: #fff;
    padding: 8px 0;
    background: #83c21a;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.5s ease;
    max-width: 150px;
    border-radius: 0;
}

.buttons #acceptBtn:hover {
    background-color: transparent;
    color: #83c21a;
}

#declineBtn {
    background-color: #fff;
    color: #83c21a;
}

#declineBtn:hover {
    background-color: #83c21a;
    color: #fff;
}

/* Footer Style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    color: white;
    padding: 1rem;
}

.logo {
    font-size: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 21px;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
}

@media (max-width: 578px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #333;
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }

    .burger {
        display: flex;
    }

    .nav-active {
        display: flex;
    }
}

.history {}

.history_item {
    background-color: #efdbf8;
    padding: 20px;
    margin-bottom: 20px;
    border-right: 5px solid #fff;
}

.history_item:hover {
    background-color: #f5fffd;
}




/* Анімація появи тексту */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section h1,
.hero-section p,
.hero-section .btn {
    animation: fadeInUp 1s ease-out both;
}

.hero-section h1 {
    animation-delay: 0.3s;
}

.hero-section p {
    animation-delay: 0.5s;
}

.hero-section .btn {
    animation-delay: 0.7s;
}

.bg-light-gray {
    background-color: #F5F6F7;
}


.text-secondary {
    color: #1E3A5F;
}

.section {
    background-color: #edfcea;
}


.text-secondary {
    color: #1E3A5F;
}

.bg-light-gray {
    background-color: #F5F6F7;
}


.approach-step-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #83c21a;
    margin-right: .5rem;
}

.text-secondary {
    color: #1E3A5F;
}

ul {
    margin-left: 1rem;
}

.section {
    background-color: #edfcea;
}


.case-card {
    background: #fff;
    padding: 1rem;
    border: 1px solid #ddd;
    transition: transform .3s ease, box-shadow .3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.case-card img {
    object-fit: cover;
    height: 380px;
    width: 100%;
}

.text-primary-blue {
    color: #83c21a;
}

.bg-light-gray {
    background-color: #F5F6F7;
}


.text-primary-blue {
    color: #83c21a;
}

.btn-primary-custom {
    background-color: #1E3A5F;
    border: none;
    border-radius: 0;
    position: relative;
    color: #fff;
    padding: 0.75rem 1.5rem;
}

.btn-primary-custom::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background-color: #edfcea;
    transition: width .3s ease;
}

.btn-primary-custom:hover::after {
    width: 100%;
}

.section {
    background-color: #edfcea;
}

.text-secondary {
    color: #1e3a5f;
}

.ratio iframe {
    width: 100%;
    height: 400px
}

.bg-light-gray {
    background-color: #F5F6F7;
}


/* Обертка для hero на странице контактов */
#contact-hero .contact-hero-wrapper {
    background-color: #333333;
    color: #edfcea;
    min-height: 50vh;
    position: relative;
}

/* Оверлей, если нужен легкий градиент */
#contact-hero .contact-hero-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(62, 62, 62, 0.7);
    z-index: 1;
}

/* Контент поверх оверлея */
#contact-hero .contact-hero-content {
    position: relative;
    z-index: 2;
}

/* Заголовок и подзаголовок */
#contact-hero h1,
#contact-hero h2 {
    color: #edfcea;
}

/* Темный акцент для подзаголовка */
.text-primary-blue-dark {
    color: #83c21a;
}

/* new styles  */
:root {
  --bg-color: #f6f6f6;
  --text-color: #666565;
  --accent-color: #83c21a;
  --accent-dark: #313128;
  --code-bg: #171c22;
  --code-green: #60be87;
  --code-line: rgba(98, 199, 140, 0.1);
  --footer-bg: #171c22;
  --footer-text: #e0e0e0;
  --footer-link: #a0a0a0;
  --footer-link-hover: #ffffff;
}
 /* Футер */
 .footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--accent-color), var(--code-green));
  z-index: 1;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: 
      linear-gradient(var(--code-green) 1px, transparent 1px),
      linear-gradient(90deg, var(--code-green) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
}

.footer-brand {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-brand a {
  text-decoration: none;
}

.footer-brand p {
  font-size: 2rem;
  font-weight: 700;
  color: var(--footer-text);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.footer-brand p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--code-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.footer-brand:hover p::after {
  transform: scaleX(1);
}

.footer-links {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-link {
  color: var(--footer-link);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
  position: relative;
}

.footer-link::before {
  content: ">";
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateX(-5px);
}

.footer-link:hover {
  color: var(--footer-link-hover);
  transform: translateX(10px);
}

.footer-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--footer-link);
}

.footer-contact-item i {
  margin-right: 0.5rem;
  color: var(--code-green);
}

.footer-legal {
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-legal p {
  margin-bottom: 0.5rem;
}

.footer-code-decoration {
  position: absolute;
  font-family: monospace;
  color: var(--footer-text);
  opacity: 0.05;
  z-index: 0;
  font-size: 0.8rem;
}

.footer-code-decoration.bottom-right {
  bottom: 2rem;
  right: 2rem;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  color: var(--footer-link);
  font-size: 0.9rem;
}

.copyright a {
  color: var(--code-green);
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .footer-brand, .footer-links, .footer-contact {
      text-align: center;
  }
  
  .footer-links {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
  }
  
  .footer-link {
      margin: 0 0.5rem;
  }
  
  .footer-contact-item {
      justify-content: center;
  }
  
  .footer-legal {
      text-align: center;
  }
  
  .footer-code-decoration {
      display: none;
  }
}

/* new styles  */

/* Загальні стилі проекту */
:root {
    --bg-primary: #1b1b1b;
    --text-primary: #fff;
    --accent-green: #83c21a;
    --text-secondary: #b0b0b0;
    --card-bg: #2a2a2a;
    --border-color: #333;
  }
  
  /* Стилі для Hero блоку */
  .hero-section {
    height: 100vh;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #252525 100%);
    position: relative;
    overflow: hidden;
  }
  
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(131, 194, 26, 0.1) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero-title {
    font-size: 3.1rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  .hero-title .accent {
    color: var(--accent-green);
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-green);
    margin-bottom: 2rem;
    font-weight: 600;
  }
  
  .hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
  }
  
  .hero-buttons .btn {
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 20px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  
  .btn-primary {
    background-color: var(--accent-green);
    color: var(--bg-primary);
    border: 2px solid var(--accent-green);
  }
  
  .btn-primary:hover {
    background-color: transparent;
    color: var(--accent-green);
    transform: translateY(-2px);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
  }
  
  .btn-outline:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
    transform: translateY(-2px);
  }
  
  .hero-visual {
    position: relative;
  }
  
  .hero-card {
    background: linear-gradient(145deg, var(--card-bg), #353535);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
  }
  
  .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .ai-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green), #a0d636);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 1.5rem;
  }
  
  .card-title {
    color: var(--accent-green);
    font-size: 1.3rem;
    font-weight: 600;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 10px 0;
  }
  
  .feature-icon {
    color: var(--accent-green);
    font-size: 1.2rem;
  }
  
  .floating-element {
    position: absolute;
    background: var(--accent-green);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
  }
  
  .floating-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
  }
  
  .floating-2 {
    width: 15px;
    height: 15px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
  }
  
  .floating-3 {
    width: 25px;
    height: 25px;
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
  }
  
  /* Адаптивність */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-subtitle {
      font-size: 1.3rem;
    }
    
    .hero-description {
      font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
      width: 100%;
      text-align: center;
      margin-right: 0;
      justify-content: center;
    }
    
    .hero-card {
      padding: 20px;
      margin-top: 40px;
    }
  }

  /* Стилі для блоку "Что вы узнаете" */
.course-content-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #222 100%);
    position: relative;
  }
  
  .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
  }
  
  .section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    line-height: 1.7;
  }
  
  .course-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
  }
  
  .course-image:hover {
    transform: translateY(-10px);
  }
  
  .topic-item {
    background: linear-gradient(145deg, var(--card-bg), #353535);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .topic-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--accent-green);
    transform: scaleY(0);
    transition: transform 0.3s ease;
  }
  
  .topic-item:hover {
    transform: translateX(10px);
    border-color: var(--accent-green);
  }
  
  .topic-item:hover::before {
    transform: scaleY(1);
  }
  
  .topic-icon {
    color: var(--accent-green);
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 30px;
  }
  
  .topic-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
  }
  
  /* Стилі для блоку "Для кого курс" */
  .target-audience-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
  }
  
  .target-audience-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 70% 30%, rgba(131, 194, 26, 0.05) 0%, transparent 60%);
    pointer-events: none;
  }
  
  .audience-card {
    background: linear-gradient(145deg, var(--card-bg), #303030);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .audience-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(131, 194, 26, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
  }
  
  .audience-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green);
    box-shadow: 0 25px 50px rgba(131, 194, 26, 0.1);
  }
  
  .audience-card:hover::after {
    animation: shine 0.6s ease-in-out;
    opacity: 1;
  }
  
  .audience-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green), #a0d636);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .audience-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 15px;
  }
  
  .audience-description {
    color: var(--text-secondary);
    line-height: 1.6;
  }
  
  @keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  }
  
  /* Адаптивність */
  @media (max-width: 768px) {
    .section-title {
      font-size: 2.2rem;
    }
    
    .section-description {
      font-size: 1.1rem;
      padding: 0 20px;
    }
    
    .topic-item {
      padding: 20px;
    }
    
    .audience-card {
      padding: 25px;
      margin-bottom: 20px;
    }
  }
  /* Стилі для блоку "Про команду" */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #262626 100%);
    position: relative;
  }
  
  .about-content {
    background: linear-gradient(145deg, var(--card-bg), #353535);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
  }
  
  .about-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(131, 194, 26, 0.05) 0%, transparent 70%);
    pointer-events: none;
  }
  
  .about-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
  }
  
  .about-image:hover {
    transform: scale(1.05);
  }
  
  .about-text {
    position: relative;
    z-index: 2;
  }
  
  .about-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
  }
  
  .highlight-text {
    color: var(--accent-green);
    font-weight: 600;
  }
  
  /* Стилі для блоку "Експерти" */
  .experts-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
  }
  
  .expert-card {
    background: linear-gradient(145deg, var(--card-bg), #303030);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .expert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), #a0d636);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .expert-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green);
    box-shadow: 0 25px 50px rgba(131, 194, 26, 0.15);
  }
  
  .expert-card:hover::before {
    transform: scaleX(1);
  }
  
  .expert-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-green);
    margin-bottom: 20px;
  }
  
  .expert-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 10px;
  }
  
  .expert-title {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-style: italic;
  }
  
  .expert-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
  }
  
  /* Стилі для блоку "Програма курсу" */
  .program-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #1f1f1f 100%);
    position: relative;
  }
  
  .program-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 75%, rgba(131, 194, 26, 0.08) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .module-timeline {
    position: relative;
    padding-left: 30px;
  }
  
  .module-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-green), #a0d636);
  }
  
  .module-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
  }
  
  .module-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 10px;
    width: 16px;
    height: 16px;
    background: var(--accent-green);
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
    z-index: 2;
  }
  
  .module-card {
    background: linear-gradient(145deg, var(--card-bg), #353535);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
  }
  
  .module-card:hover {
    transform: translateX(10px);
    border-color: var(--accent-green);
    box-shadow: 0 15px 30px rgba(131, 194, 26, 0.1);
  }
  
  .module-number {
    display: inline-block;
    background: var(--accent-green);
    color: var(--bg-primary);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .module-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
  }
  
  .module-description {
    color: var(--text-secondary);
    line-height: 1.6;
  }
  
  /* Адаптивність */
  @media (max-width: 768px) {
    .about-content {
      padding: 30px 20px;
    }
    
    .about-text p {
      font-size: 1rem;
    }
    
    .expert-card {
      padding: 25px;
      margin-bottom: 20px;
    }
    
    .module-timeline {
      padding-left: 20px;
    }
    
    .module-item {
      padding-left: 30px;
    }
    
    .module-card {
      padding: 20px;
    }
  }

  /* Стилі для блоку "Відгуки" */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
  }
  
  .testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(131, 194, 26, 0.03) 0%, transparent 70%);
    pointer-events: none;
  }
  
  .testimonial-card {
    background: linear-gradient(145deg, var(--card-bg), #2f2f2f);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 4rem;
    color: var(--accent-green);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
  }
  
  .testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-green);
    box-shadow: 0 20px 40px rgba(131, 194, 26, 0.15);
  }
  
  .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 25px;
    padding-top: 20px;
    position: relative;
    z-index: 2;
    font-style: italic;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
  }
  
  .author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green), #a0d636);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 1.2rem;
  }
  
  .author-info {
    flex: 1;
  }
  
  .author-name {
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 3px;
  }
  
  .author-location {
    color: var(--text-secondary);
    font-size: 0.9rem;
  }
  
  /* Стилі для блоку "Чому зараз" */
  .cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #1f1f1f 100%);
    position: relative;
  }
  
  .cta-content {
    background: linear-gradient(145deg, var(--card-bg), #353535);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
  }
  
  .cta-content::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(131, 194, 26, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  
  .cta-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
  }
  
  .cta-image:hover {
    transform: scale(1.02);
  }
  
  .reason-item {
    background: linear-gradient(145deg, #2a2a2a, #363636);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-green);
    transition: all 0.3s ease;
    position: relative;
  }
  
  .reason-item:hover {
    transform: translateX(8px);
    background: linear-gradient(145deg, #303030, #3a3a3a);
  }
  
  .reason-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 10px;
  }
  
  .reason-text {
    color: var(--text-secondary);
    line-height: 1.6;
  }
  
  .cta-button {
    background: linear-gradient(135deg, var(--accent-green), #a0d636);
    color: var(--bg-primary);
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(131, 194, 26, 0.3);
    margin-top: 30px;
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(131, 194, 26, 0.4);
    color: var(--bg-primary);
    text-decoration: none;
  }
  
  .cta-button .material-icons {
    font-size: 1.3rem;
  }
  
  /* Пульсуючий ефект для кнопки */
  @keyframes pulse {
    0% {
      box-shadow: 0 8px 20px rgba(131, 194, 26, 0.3);
    }
    50% {
      box-shadow: 0 8px 25px rgba(131, 194, 26, 0.5);
    }
    100% {
      box-shadow: 0 8px 20px rgba(131, 194, 26, 0.3);
    }
  }
  
  .cta-button {
    animation: pulse 2s infinite;
  }
  
  /* Адаптивність */
  @media (max-width: 768px) {
    .testimonial-card {
      padding: 25px;
      margin-bottom: 20px;
    }
    
    .testimonial-card::before {
      font-size: 3rem;
      top: 10px;
      left: 20px;
    }
    
    .testimonial-text {
      font-size: 1rem;
      padding-top: 15px;
    }
    
    .cta-content {
      padding: 30px 20px;
    }
    
    .reason-item {
      padding: 20px;
    }
    
    .cta-button {
      width: 100%;
      justify-content: center;
      padding: 15px 30px;
    }
  }
  /* Стилі для блоку "Контакти та форма" */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #252525 100%);
    position: relative;
  }
  
  .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(131, 194, 26, 0.05) 0%, transparent 60%);
    pointer-events: none;
  }
  
  .contact-form-container {
    background: linear-gradient(145deg, var(--card-bg), #353535);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
  }
  
  .contact-form-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(131, 194, 26, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  
  /* Стилізація форми */
  #contactForm .form-floating {
    margin-bottom: 20px;
    position: relative;
  }
  
  #contactForm .form-control {
    background-color: #2a2a2a;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    padding: 15px 20px;
    height: auto;
    transition: all 0.3s ease;
  }
  
  #contactForm .form-control:focus {
    background-color: #303030;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 0.2rem rgba(131, 194, 26, 0.15);
    color: var(--text-primary);
  }
  
  #contactForm .form-control::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
  }
  
  #contactForm .form-floating label {
    color: var(--text-secondary);
    padding-left: 20px;
    transition: all 0.3s ease;
  }
  
  #contactForm .form-floating:focus-within label {
    color: var(--accent-green);
  }
  
  #contactForm .btn-primary {
    background: linear-gradient(135deg, var(--accent-green), #a0d636);
    border: none;
    border-radius: 12px;
    color: var(--bg-primary);
    font-weight: 600;
    padding: 15px 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(131, 194, 26, 0.3);
  }
  
  #contactForm .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(131, 194, 26, 0.4);
    background: linear-gradient(135deg, #a0d636, var(--accent-green));
  }
  
  /* Стилі для контактної інформації */
  .contact-info-container {
    background: linear-gradient(145deg, var(--card-bg), #303030);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    height: 100%;
    position: relative;
    z-index: 2;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(145deg, #2a2a2a, #363636);
    border-radius: 15px;
    border-left: 4px solid var(--accent-green);
    transition: all 0.3s ease;
  }
  
  .contact-item:hover {
    transform: translateX(8px);
    background: linear-gradient(145deg, #303030, #3a3a3a);
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green), #a0d636);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 1.3rem;
    flex-shrink: 0;
  }
  
  .contact-details h4 {
    color: var(--accent-green);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .contact-details p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
  }
  
  .contact-details a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .contact-details a:hover {
    color: var(--accent-green);
  }
  
  /* Стилі для карти */
  .map-container {
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
  }
  
  .map-container:hover {
    border-color: var(--accent-green);
    box-shadow: 0 20px 40px rgba(131, 194, 26, 0.2);
  }
  
  .map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    transition: all 0.3s ease;
  }
  
  /* Спеціальні стилі для заголовків */
  .contact-section .section-title {
    margin-bottom: 1rem;
  }
  
  .contact-section .section-description {
    margin-bottom: 3rem;
  }
  
  /* Адаптивність */
  @media (max-width: 768px) {
    .contact-form-container,
    .contact-info-container {
      padding: 25px 20px;
      margin-bottom: 30px;
    }
    
    .contact-item {
      padding: 15px;
      margin-bottom: 20px;
    }
    
    .contact-icon {
      width: 45px;
      height: 45px;
      font-size: 1.2rem;
    }
    
    .map-container iframe {
      height: 250px;
    }
    
    #contactForm .form-control {
      padding: 12px 15px;
    }
    
    #contactForm .form-floating label {
      padding-left: 15px;
    }
  }
  
  /* Анімації для форми */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .contact-form-container,
  .contact-info-container {
    animation: fadeInUp 0.6s ease-out;
  }
  
  .contact-form-container {
    animation-delay: 0.1s;
  }
  
  .contact-info-container {
    animation-delay: 0.2s;
  }

  /* Стилі для блоків AI трейдингу */
.ai-trading-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #1f1f1f 100%);
    position: relative;
  }
  
  .ai-trading-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(131, 194, 26, 0.06) 0%, transparent 60%);
    pointer-events: none;
  }
  
  .ai-explanation-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
  }
  
  .ai-content-card {
    background: linear-gradient(145deg, var(--card-bg), #353535);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
  }
  
  .ai-content-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(131, 194, 26, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  
  .ai-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
  }
  
  .ai-image:hover {
    transform: scale(1.03);
  }
  
  /* Стилі для переваг AI */
  .advantage-item {
    background: linear-gradient(145deg, #2a2a2a, #363636);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid var(--accent-green);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .advantage-item:hover {
    transform: translateX(8px);
    background: linear-gradient(145deg, #303030, #3a3a3a);
    border-left-width: 6px;
  }
  
  .advantage-icon {
    color: var(--accent-green);
    font-size: 1.4rem;
    min-width: 30px;
  }
  
  .advantage-text {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
  }
  
  /* Стилі для навчальних елементів */
  .learning-item {
    background: linear-gradient(145deg, var(--card-bg), #303030);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
  }
  
  .learning-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), #a0d636);
    border-radius: 15px 15px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .learning-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 15px 30px rgba(131, 194, 26, 0.15);
  }
  
  .learning-item:hover::before {
    transform: scaleX(1);
  }
  
  .learning-item ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
  }
  
  .learning-item li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
  }
  
  .learning-item li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
  }
  
  /* Стилі для інструментів */
  .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-top: 25px;
  }
  
  .tool-badge {
    background: linear-gradient(135deg, var(--accent-green), #a0d636);
    color: var(--bg-primary);
    padding: 12px 20px;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(131, 194, 26, 0.3);
  }
  
  .tool-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(131, 194, 26, 0.4);
  }
  
  /* Заголовки секцій */
  .learning-section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
  }
  
  .learning-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-green);
  }
  
  /* Кнопка для переходу до форми */
  .learn-more-btn {
    background: linear-gradient(135deg, var(--accent-green), #a0d636);
    color: var(--bg-primary);
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(131, 194, 26, 0.3);
    margin-top: 30px;
  }
  
  .learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(131, 194, 26, 0.4);
    color: var(--bg-primary);
    text-decoration: none;
  }
  
  /* Адаптивність */
  @media (max-width: 768px) {
    .ai-content-card {
      padding: 25px 20px;
    }
    
    .advantage-item,
    .learning-item {
      padding: 15px;
    }
    
    .tools-grid {
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 10px;
    }
    
    .tool-badge {
      padding: 10px 15px;
      font-size: 0.9rem;
    }
    
    .learn-more-btn {
      width: 100%;
      justify-content: center;
      padding: 15px 25px;
    }
  }

  /* Стилі для блоку "Формат інтенсиву" */
.intensive-format-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #1a1a1a 100%);
    position: relative;
  }
  
  .intensive-format-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(131, 194, 26, 0.04) 0%, transparent 60%);
    pointer-events: none;
  }
  
  /* День програми */
  .day-timeline {
    position: relative;
    padding-left: 40px;
  }
  
  .day-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-green), #a0d636, var(--accent-green));
  }
  
  .day-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 50px;
  }
  
  .day-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 15px;
    width: 20px;
    height: 20px;
    background: var(--accent-green);
    border-radius: 50%;
    border: 4px solid var(--bg-primary);
    z-index: 2;
  }
  
  .day-card {
    background: linear-gradient(145deg, var(--card-bg), #353535);
    border-radius: 18px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .day-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), #a0d636);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .day-card:hover {
    transform: translateX(15px);
    border-color: var(--accent-green);
    box-shadow: 0 20px 40px rgba(131, 194, 26, 0.15);
  }
  
  .day-card:hover::before {
    transform: scaleX(1);
  }
  
  .day-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-green), #a0d636);
    color: var(--bg-primary);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .day-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
  }
  
  .day-title .day-topic {
    color: var(--accent-green);
  }
  
  .day-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.05rem;
  }
  
  /* Стилі для блоку "Результати" */
  .results-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
  }

  .result-card {
    background: linear-gradient(145deg, var(--card-bg), #303030);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .result-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(131, 194, 26, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
  }
  
  .result-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-green);
    box-shadow: 0 25px 50px rgba(131, 194, 26, 0.15);
  }
  
  .result-card:hover::after {
    animation: shine 0.6s ease-in-out;
    opacity: 1;
  }
  
  .result-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green), #a0d636);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 1.6rem;
    margin-bottom: 20px;
    flex-shrink: 0;
  }
  
  .result-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
  }
  
  .result-description {
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
  }
  
  /* Спеціальні стилі для фото результатів */
  .results-images {
    margin-top: 50px;
  }
  
  .result-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
  }
  
  .result-image:hover {
    transform: scale(1.02);
  }
  
  /* Бонусні елементи */
  .bonus-highlight {
    background: linear-gradient(135deg, rgba(131, 194, 26, 0.1), rgba(160, 214, 54, 0.1));
    border: 2px solid var(--accent-green);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    position: relative;
  }
  
  .bonus-highlight::before {
    content: '🎁';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-primary);
    padding: 0 15px;
    font-size: 1.5rem;
  }
  
  .bonus-text {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
  }
  
  /* Адаптивність */
  @media (max-width: 768px) {
    .day-timeline {
      padding-left: 25px;
    }
    
    .day-timeline::before {
      left: 12px;
    }
    
    .day-item {
      padding-left: 35px;
      margin-bottom: 30px;
    }
    
    .day-item::before {
      left: -8px;
      width: 16px;
      height: 16px;
    }
    
    .day-card {
      padding: 20px;
    }
    
    .day-number {
      width: 40px;
      height: 40px;
      font-size: 1.1rem;
    }
    
    .results-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .result-card {
      padding: 25px;
    }
    
    .result-icon {
      width: 50px;
      height: 50px;
      font-size: 1.4rem;
    }
  }
  /* Стилі для блоку "Блог/Статті" */
.blog-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #1f1f1f 100%);
    position: relative;
  }
  
  .blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(131, 194, 26, 0.04) 0%, transparent 60%);
    pointer-events: none;
  }
  
  .article-card {
    background: linear-gradient(145deg, var(--card-bg), #353535);
    border-radius: 25px;
    padding: 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 50px;
  }
  
  .article-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-green);
    box-shadow: 0 35px 70px rgba(131, 194, 26, 0.15);
  }
  
  .article-image-container {
    position: relative;
    overflow: hidden;
    height: 350px;
  }
  
  .article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .article-card:hover .article-image {
    transform: scale(1.05);
  }
  
  .article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(131, 194, 26, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .article-card:hover .article-overlay {
    opacity: 1;
  }
  
  .article-content {
    padding: 40px;
  }
  
  .article-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
  }
  
  .author-info {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-green), #a0d636);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 1.1rem;
  }
  
  .author-details h4 {
    color: var(--accent-green);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
  }
  
  .author-location {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .article-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
  }
  
  .article-text p {
    margin-bottom: 1.5rem;
  }
  
  .article-text p:last-child {
    margin-bottom: 0;
  }
  
  /* Стилі для FAQ секції */
  .faq-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
  }
  
  .faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 70%, rgba(131, 194, 26, 0.05) 0%, transparent 60%);
    pointer-events: none;
  }
  
  .faq-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .faq-item {
    background: linear-gradient(145deg, var(--card-bg), #303030);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--accent-green), #a0d636);
    transform: scaleY(0);
    transition: transform 0.3s ease;
  }
  
  .faq-item:hover {
    transform: translateX(10px);
    border-color: var(--accent-green);
    box-shadow: 0 20px 40px rgba(131, 194, 26, 0.15);
  }
  
  .faq-item:hover::before {
    transform: scaleY(1);
  }
  
  .faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .faq-icon {
    color: var(--accent-green);
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
  }
  
  .faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    padding-left: 45px;
  }
  
  /* Спеціальні стилі для виділення */
  .highlight-free {
    color: var(--accent-green);
    font-weight: 600;
  }
  
  /* Адаптивність */
  @media (max-width: 768px) {
    .article-image-container {
      height: 250px;
    }
    
    .article-content {
      padding: 25px 20px;
    }
    
    .article-title {
      font-size: 1.5rem;
    }
    
    .article-meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
    
    .author-avatar {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
    
    .faq-item {
      padding: 20px;
    }
    
    .faq-question {
      font-size: 1.2rem;
    }
    
    .faq-answer {
      padding-left: 35px;
      font-size: 1rem;
    }
  }
  
  /* Анімації */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .article-card,
  .faq-item {
    animation: fadeInUp 0.6s ease-out;
  }
  
  .article-card:nth-child(even) {
    animation-delay: 0.1s;
  }
  
  .faq-item:nth-child(odd) {
    animation-delay: 0.05s;
  }