 :root {
   --primary: #6D5B97;
   --secondary: #3A2D52;
   --accent: #FF7E5F;
   --light: #F8F5FF;
   --dark: #2A2438;
   --text: #333;
   --gray: #E2DFE8;
 }

 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Montserrat', sans-serif;
 }

 body {
   color: var(--text);
   line-height: 1.7;
   background-color: var(--light);
   overflow-x: hidden;
 }

 .container {
   width: 100%;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
 }

 /* Header */
 header {
   background-color: white;
   box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
   position: fixed;
   width: 100%;
   top: 0;
   z-index: 1000;
   transition: all 0.4s;
 }

 header.scrolled {
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .header-container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 80px;
 }

 .logo {
   display: flex;
   align-items: center;
   font-size: 24px;
   font-weight: 700;
   color: var(--primary);
 }

 .logo img {
   height: 40px;
   margin-right: 10px;
 }

 nav ul {
   display: flex;
   list-style: none;
 }

 nav ul li {
   margin-left: 30px;
 }

 nav ul li a {
   color: var(--dark);
   text-decoration: none;
   font-weight: 500;
   position: relative;
   padding: 5px 0;
 }

 nav ul li a::after {
   content: '';
   position: absolute;
   width: 0;
   height: 3px;
   background: var(--accent);
   bottom: 0;
   left: 0;
   transition: width 0.3s;
 }

 nav ul li a:hover::after {
   width: 100%;
 }

 .burger {
   display: none;
   cursor: pointer;
 }

 .burger div {
   width: 25px;
   height: 3px;
   background-color: var(--primary);
   margin: 5px;
   transition: all 0.3s;
 }

 /* Hero section */
 .hero {
   height: 100vh;
   display: flex;
   align-items: center;
   background: linear-gradient(135deg, rgba(109, 91, 151, 0.9), rgba(58, 45, 82, 0.9)),
     url('../images/photo-1579621970563-ebec7560ff3e.avif') no-repeat center center/cover;
   color: white;
   text-align: center;
   margin-top: 0;
 }

 .hero-content {
   max-width: 800px;
   margin: 0 auto;
   padding: 0 20px;
 }

 .hero h1 {
   font-size: 48px;
   margin-bottom: 20px;
   line-height: 1.2;
 }

 .hero p {
   font-size: 20px;
   margin-bottom: 30px;
   opacity: 0.9;
 }

 .btn {
   display: inline-block;
   background: var(--accent);
   color: white;
   padding: 12px 30px;
   border-radius: 50px;
   text-decoration: none;
   font-weight: 600;
   transition: all 0.3s;
   border: none;
   cursor: pointer;
   box-shadow: 0 5px 15px rgba(255, 126, 95, 0.3);
 }

 .btn:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 25px rgba(255, 126, 95, 0.4);
   background: #FF6B4D;
 }

 /* Sections */
 section {
   padding: 60px 0;
 }

 .section-title {
   text-align: center;
   margin-bottom: 60px;
 }

 .section-title h2 {
   font-size: 36px;
   color: var(--primary);
   position: relative;
   display: inline-block;
   padding-bottom: 15px;
 }

 .section-title h2::after {
   content: '';
   position: absolute;
   width: 80px;
   height: 4px;
   background: var(--accent);
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
   border-radius: 2px;
 }

 /* About section */
 .about-content {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 40px;
 }

 .about-text {
   flex: 1;
   min-width: 300px;
 }

 .about-text p {
   margin-bottom: 20px;
 }

 .about-image {
   flex: 1;
   min-width: 300px;
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 .about-image img {
   width: 100%;
   height: auto;
   display: block;
   transition: transform 0.5s;
 }

 .about-image:hover img {
   transform: scale(1.05);
 }

 /* Features section */
 .features-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
 }

 .feature-card {
   background: white;
   padding: 30px;
   border-radius: 10px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
   transition: transform 0.3s, box-shadow 0.3s;
   text-align: center;
 }

 .feature-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
 }

 .feature-icon {
   width: 80px;
   height: 80px;
   background: var(--light);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 20px;
   color: var(--primary);
   font-size: 30px;
 }

 .feature-card h3 {
   margin-bottom: 15px;
   color: var(--secondary);
 }

 /* Gallery section */
 .gallery-container {
   position: relative;
 }

 .swiper-container {
   width: 100%;
   height: 500px;
   border-radius: 10px;
   overflow: hidden;
 }

 .swiper-slide {
   position: relative;
 }

 .swiper-slide img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 .slide-caption {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
   color: white;
   padding: 30px;
   opacity: 0;
   transition: opacity 0.3s;
 }

 .swiper-slide:hover .slide-caption {
   opacity: 1;
 }

 /* Testimonials */
 .testimonials-container {
   max-width: 800px;
   margin: 0 auto;
 }

 .testimonial {
   background: white;
   padding: 40px;
   border-radius: 10px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
   margin-bottom: 30px;
   position: relative;
 }

 .testimonial::before {
   content: '"';
   font-size: 120px;
   color: rgba(109, 91, 151, 0.05);
   position: absolute;
   top: 20px;
   left: 20px;
   line-height: 1;
   font-family: serif;
 }

 .testimonial-content {
   margin-bottom: 20px;
   position: relative;
   z-index: 1;
   font-style: italic;
 }

 .testimonial-author {
   display: flex;
   align-items: center;
 }

 .testimonial-author img {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   object-fit: cover;
   margin-right: 15px;
   border: 3px solid var(--gray);
 }

 .author-info h4 {
   color: var(--primary);
   margin-bottom: 5px;
 }

 .author-info p {
   color: #777;
   font-size: 14px;
 }

 /* FAQ */
 .faq-container {
   max-width: 800px;
   margin: 0 auto;
 }

 .faq-item {
   margin-bottom: 15px;
   border-radius: 8px;
   overflow: hidden;
   background: white;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 }

 .faq-question {
   padding: 20px;
   cursor: pointer;
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-weight: 600;
   transition: background 0.3s;
 }

 .faq-question:hover {
   background: var(--light);
 }

 .faq-question::after {
   content: '+';
   font-size: 24px;
   color: var(--primary);
   transition: transform 0.3s;
 }

 .faq-item.active .faq-question::after {
   content: '-';
 }

 .faq-answer ul,
 .faq-answer ol {
   padding-left: 30px;
   margin: 10px 0;
 }

 .faq-answer {
   padding: 0 20px;
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease-out, padding 0.3s ease;
 }

 .faq-item.active .faq-answer {
   padding: 0 20px 20px;
   max-height: 500px;
 }

 /* Download section */
 .download-section {
   background: linear-gradient(135deg, var(--primary), var(--secondary));
   color: white;
   padding: 50px 10px;
   border-radius: 10px;
   text-align: center;
 }

 .download-content {
   max-width: 700px;
   margin: 0 auto;
 }

 .download-section h2 {
   margin-bottom: 20px;
 }

 .download-section p {
   margin-bottom: 30px;
   opacity: 0.9;
 }

 .download-form {
   max-width: 500px;
   margin: 0 auto;
 }

 .form-group {
   margin-bottom: 20px;
   text-align: left;
 }

 .form-group label {
   display: block;
   margin-bottom: 8px;
   font-weight: 500;
 }

 .form-group input {
   width: 100%;
   padding: 12px 15px;
   border: none;
   border-radius: 5px;
   font-size: 16px;
   background: rgba(255, 255, 255, 0.9);
 }

 /* Contact */
 .contact-container {
   display: flex;
   flex-wrap: wrap;
   gap: 40px;
 }

 .contact-info {
   min-width: 300px;
   margin: 0 auto;
 }

 .contact-info h3 {
   margin-bottom: 20px;
   color: var(--primary);
 }

 .contact-details {
   margin-bottom: 30px;
 }

 .contact-item {
   display: flex;
   align-items: flex-start;
   margin-bottom: 20px;
 }

 .contact-icon {
   width: 40px;
   height: 40px;
   background: var(--light);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-right: 15px;
   color: var(--primary);
 }

 .contact-text h4 {
   margin-bottom: 5px;
 }

 .contact-form {
   flex: 1;
   min-width: 300px;
   background: white;
   padding: 30px;
   border-radius: 10px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
 }

 .contact-form h3 {
   margin-bottom: 20px;
   color: var(--primary);
 }

 .contact-form textarea {
   width: 100%;
   padding: 12px 15px;
   border: 1px solid var(--gray);
   border-radius: 5px;
   min-height: 150px;
   resize: vertical;
   font-size: 16px;
 }

 /* Footer */
 footer {
   background: var(--dark);
   color: white;
   padding: 80px 0 30px;
 }

 .footer-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 60px;
   margin-bottom: 50px;
 }

 .footer-col h3 {
   margin-bottom: 20px;
   position: relative;
   padding-bottom: 10px;
 }

 .footer-col h3::after {
   content: '';
   position: absolute;
   width: 50px;
   height: 3px;
   background: var(--accent);
   bottom: 0;
   left: 0;
 }

 .footer-col p {
   margin-bottom: 15px;
   opacity: 0.8;
 }

 .footer-links {
   list-style: none;
 }

 .footer-links li {
   margin-bottom: 10px;
 }

 .footer-links a {
   color: white;
   opacity: 0.8;
   text-decoration: none;
   transition: all 0.3s;
 }

 .footer-links a:hover {
   opacity: 1;
   color: var(--accent);
   padding-left: 5px;
 }

 .social-links {
   display: flex;
   gap: 15px;
 }

 .social-links a {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 40px;
   height: 40px;
   background: rgba(255, 255, 255, 0.1);
   border-radius: 50%;
   color: white;
   transition: all 0.3s;
 }

 .social-links a:hover {
   background: var(--accent);
   transform: translateY(-3px);
 }

 .footer-bottom {
   text-align: center;
   padding-top: 30px;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   font-size: 14px;
   opacity: 0.7;
 }

 /* Cookie banner */
 .cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: var(--dark);
   color: white;
   padding: 20px;
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
   z-index: 1000;
   transform: translateY(100%);
   transition: transform 0.3s;
 }

 .cookie-banner.show {
   transform: translateY(0);
 }

 .cookie-text {
   flex: 1;
   min-width: 300px;
   margin-bottom: 15px;
 }

 .cookie-text a {
   color: var(--accent);
 }

 .cookie-buttons {
   display: flex;
   gap: 10px;
 }

 .cookie-btn {
   padding: 8px 20px;
   border-radius: 5px;
   cursor: pointer;
   font-weight: 500;
   transition: all 0.3s;
 }

 .cookie-accept {
   background: var(--accent);
   color: white;
   border: none;
 }

 .cookie-decline {
   background: transparent;
   color: white;
   border: 1px solid white;
 }

 /* Animations */
 @keyframes fadeIn {
   from {
     opacity: 0;
   }

   to {
     opacity: 1;
   }
 }

 @keyframes slideUp {
   from {
     opacity: 0;
     transform: translateY(30px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 /* Responsive styles */
 @media (max-width: 992px) {
   .hero h1 {
     font-size: 40px;
   }

   .hero p {
     font-size: 18px;
   }

   .section-title h2 {
     font-size: 32px;
   }
 }

 @media (max-width: 768px) {
   nav ul {
     position: fixed;
     top: 80px;
     left: -100%;
     width: 100%;
     height: calc(100vh - 80px);
     background: white;
     flex-direction: column;
     align-items: center;
     justify-content: flex-start;
     padding-top: 40px;
     transition: left 0.5s;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
   }

   nav ul.active {
     left: 0;
   }

   nav ul li {
     margin: 15px 0;
   }

   .burger {
     display: block;
   }

   .burger.active div:nth-child(1) {
     transform: rotate(-45deg) translate(-5px, 6px);
   }

   .burger.active div:nth-child(2) {
     opacity: 0;
   }

   .burger.active div:nth-child(3) {
     transform: rotate(45deg) translate(-5px, -6px);
   }

   .hero h1 {
     font-size: 36px;
   }

   .swiper-container {
     height: 400px;
   }

   .testimonial {
     padding: 30px 20px;
   }
 }

 @media (max-width: 576px) {
   .hero h1 {
     font-size: 32px;
   }

   .hero p {
     font-size: 16px;
   }

   .btn {
     padding: 10px 25px;
   }

   .section-title h2 {
     font-size: 28px;
   }

   .section {
     padding: 70px 0;
   }

   .swiper-container {
     height: 300px;
   }

   .cookie-buttons {
     width: 100%;
     flex-direction: column;
   }

   .cookie-btn {
     width: 100%;
   }
 }