/* Base Styles */
:root {
    /* Fonts */
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
    min-width: 320px;
}

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

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

a:hover {
    color: var(--accent);
}

ul, ol {
    list-style: none;
}

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

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    background: none;
}

input, textarea {
    font-family: var(--font-body);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Styles */
section, footer {
    padding: 3rem 0;
}

.section-description {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.btn-highlight {
    background-color: var(--highlight);
    color: var(--highlight-foreground);
}

.btn-highlight:hover {
    background-color: var(--highlight);
    filter: brightness(1.1);
    color: var(--highlight-foreground);
}

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

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--background);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo svg {
    margin-right: 0.5rem;
    color: var(--primary);
}

.desktop-nav {
    display: none;
}

.desktop-nav ul {
    display: flex;
    gap: 1.5rem;
}

.desktop-nav a {
    color: var(--foreground);
    font-weight: 500;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

.desktop-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    transition: background-color 0.3s ease;
}

.theme-toggle:hover {
    background-color: var(--muted);
}

.theme-toggle .moon-icon {
    display: none;
}

.dark .theme-toggle .sun-icon {
    display: none;
}

.dark .theme-toggle .moon-icon {
    display: block;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--foreground);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--background);
    padding: 2rem 1rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav a {
    display: block;
    font-size: 1.25rem;
    color: var(--foreground);
    font-weight: 500;
    padding: 0.5rem 0;
}

.mobile-nav .mobile-cta {
    margin-top: 1rem;
    text-align: center;
}

/* Hero Section */
.hero-section {
    padding-top: 7rem;
    padding-bottom: 3rem;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a98467' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: -1;
}

.hero-section .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--muted-foreground);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--card);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.feature svg {
    color: var(--primary);
}

.hero-image {
    margin: 0 auto;
    max-width: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Advantages Section */
.advantages-section {
    background-color: var(--card);
    padding: 4rem 0;
    text-align: center;
}

.advantages-grid {
    margin-top: 3rem;
}

.advantage-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--background);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.advantage-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.advantage-content p {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
}

/* Program Section */
/* .program-section {
    padding: 4rem 0;
    background-color: var(--background);
    text-align: center;
}

.timeline {
    position: relative;
    margin-top: 3rem;
    padding: 2rem 0;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 0;
    background-color: var(--primary);
    transition: height 0.5s ease;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-weight: 700;
    z-index: 2;
}

.timeline-marker::before {
    content: attr(data-day);
    font-size: 0.875rem;
}

.timeline-content {
    background-color: var(--card);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-left: 1rem;
    margin-right: 1rem;
    text-align: left;
}

.timeline-content h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}
.timeline-content h3::after {
  content: "→ Детальніше";
  font-size: 0.875rem;
  color: var(--primary);
  margin-left: 10px;
  opacity: 0.7;
}
.timeline-details {
    display: none;
}

.timeline-details.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.timeline-details p {
    margin-bottom: 1rem;
}

.timeline-details ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-details li {
    margin-bottom: 0.5rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
} */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.accordion-item {
  border-radius: 8px;
  background-color: var(--card);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background-color: transparent;
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}
.accordion-body {
  display: none;
  padding: 1rem 1.5rem 1.5rem;
  text-align: left;
  animation: fadeIn 0.3s ease;
}
.accordion-body.active {
  display: block;
}
.accordion-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 0.75rem;
}
.accordion-body li {
  margin-bottom: 0.5rem;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Instructors Section */
.instructors-section {
    background-color: var(--card);
    padding: 4rem 0;
    text-align: center;
}

.instructors-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.instructors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.instructor-card {
    background-color: var(--background);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.instructor-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.instructor-info {
    padding: 1.5rem;
    text-align: left;
}

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

.instructor-bio {
    margin-bottom: 1rem;
}

.instructor-specialization {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.instructor-specialization span {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    border-radius: 20px;
    font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background-color: var(--background);
    text-align: center;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: start;
  box-sizing: border-box;
  padding-left: 100px;}

.testimonial-content {
    max-width: 620px;
    width: 100%;
    background-color: var(--card);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;

}

.testimonial-rating span {
    display: none;
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: var(--highlight);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;

}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0;
}

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

.carousel-prev, .carousel-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carousel-prev:hover, .carousel-next:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--secondary);
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* Footer */
footer {
    background-color: var(--card);
    padding-top: 4rem;
    color: var(--card-foreground);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info h2 {
    margin-bottom: 1rem;
}

.footer-description {
    margin-bottom: 2rem;
    max-width: 600px;
}

.steps-to-join {
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.25rem;
}

.step-content p {
    color: var(--muted-foreground);
}

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

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-info ul {
    margin-bottom: 1.5rem;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.contact-info svg {
    color: var(--primary);
    flex-shrink: 0;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.footer-form h3 {
    margin-bottom: 1rem;
}

.contact-form {
    background-color: var(--background);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background-color: var(--input);
    color: var(--foreground);
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.footer-map {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.copyright {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

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

/* Media Queries */
@media (min-width: 576px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .advantage-card {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
    
    .desktop-nav {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-section .container {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-content {
        flex: 1;
        text-align: left;
    }
    
    .hero-image {
        flex: 1;
    }
    
    .hero-features {
        justify-content: flex-start;
    }
    
    .timeline-item {
        display: flex;
        justify-content: center;
    }
    
    .timeline-content {
        width: 80%;
        max-width: 600px;
    }
    
    .instructors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 4rem;
    }
    
    .advantage-card {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .instructors-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Utility Classes */
.animate-fadeInUp {
    animation: fadeInUp 0.5s ease forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

.animate-delay-5 {
    animation-delay: 0.5s;
}

/* Dark Mode Adjustments */
.dark {
    color-scheme: dark;
}
.course-target-section {
  padding: 4rem 1rem;
  background-color: var(--background);
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.target-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.target-card {
  background-color: var(--card);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.target-card:hover {
  transform: translateY(-4px);
}

.target-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 2px rgba(128,90,213,0.4));
}

.target-card p {
  font-size: 1rem;
  color: var(--text);
}

@media (max-width: 820px) {
.testimonial-card{
    padding-left: 50px;
     
}
}
@media (max-width: 620px) {
.testimonial-card{
    padding-left: 40px;
     
}
}
@media (max-width:500px) {
.testimonial-card{
    padding-left: 25px;
     
}
}
@media (max-width: 720px) {
  .testimonial-content {
    padding-left: 5vw;
    border-radius: 6px;
    font-size: 0.95rem;
    max-width: 80vw;
  }

  .testimonial-rating svg {
    width: 16px;
    height: 16px;
  }

  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
  }

  .carousel-controls {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }
}


.course-price-section {
  padding: 4rem 1rem;
  background-color: var(--background);
  text-align: center;
}

.price-header .section-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.countdown-timer {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent, #9f7aea);
  background-color: rgba(159, 122, 234, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 2rem;
}

.price-package {
  background-color: var(--card);
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: left;
}

.package-name {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.package-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.package-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.package-benefits li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.price-info {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.old-price {
  font-size: 1.2rem;
  color: #aaa;
  text-decoration: line-through;
}

.new-price {
  font-size: 2rem;
  color: var(--primary);
  font-weight: bold;
}

.availability {
  font-size: 1rem;
  color: var(--warning, #facc15);
  margin-bottom: 1.5rem;
}
.availability {
  font-size: 1rem;
  color: var(--warning, #facc15);
  margin-bottom: 1.5rem;
  text-align: center; /* Центрує текст */
}

.price-package .btn-primary {
  display: block;
  margin: 0 auto; /* Центрує кнопку */
}
.btn-primary {
  background-color: var(--primary);
  color: #fff;
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #7c3aed;
}


.faq-section {
  padding: 4rem 1rem;
  background-color: var(--background);
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: color 0.5s;
}

.faq-question:hover {
  color: #b794f4;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.5s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg); /* + → × */
}

.faq-answer {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}
