:root {
            --primary-color: hsl(286, 36%, 50%);
            --secondary-color: hsl(286, 36%, 35%);
            --accent-color: hsl(286, 36%, 75%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Raleway', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Raleway', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(134, 78, 134, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(134, 78, 134, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                padding-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
            }
        }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@400;500;600&display=swap');

.about-section {
  font-family: 'Raleway', sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
  overflow: hidden;
}

.about-section h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: hsl(286, 36%, 35%);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-section h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: hsl(286, 36%, 50%);
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.about-section p {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.25rem;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

.about-text {
  flex: 1;
  padding-right: 20px;
}

.about-image {
  flex: 1;
  position: relative;
}

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

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

.highlight-box {
  background: linear-gradient(135deg, hsl(286, 36%, 50%) 0%, hsl(286, 36%, 35%) 100%);
  color: white;
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-box h3 {
  color: white;
  margin-top: 0;
}

.highlight-box p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.value-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid hsl(286, 36%, 50%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: hsl(286, 36%, 35%);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 1rem;
  margin-bottom: 0;
}

.secondary-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 60px;
  flex-direction: row-reverse;
}

@media (max-width: 992px) {
  .about-content,
  .secondary-content {
    flex-direction: column;
  }

  .about-text {
    padding-right: 0;
  }

  .about-section h2 {
    font-size: 2rem;
  }

  .about-section h3 {
    font-size: 1.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }

  .about-section h2 {
    font-size: 1.75rem;
  }

  .about-section p {
    font-size: 1rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@400;500;600&display=swap');

  #portfolio {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(286, 36%, 98%) 0%, hsl(286, 36%, 95%) 100%);
    font-family: 'Raleway', sans-serif;
  }

  #portfolio .section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(286, 36%, 35%);
    text-align: center;
    margin-bottom: 1rem;
  }

  #portfolio .section-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: hsl(286, 36%, 50%);
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .portfolio-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid hsl(286, 36%, 90%);
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(286, 36%, 50%) 0%, hsl(286, 36%, 75%) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .portfolio-card:hover::before {
    transform: scaleX(1);
  }

  .portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(150, 90, 150, 0.2);
    border-color: hsl(286, 36%, 75%);
  }

  .portfolio-category {
    display: inline-block;
    background: hsl(286, 36%, 75%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
  }

  .portfolio-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: hsl(286, 36%, 35%);
    margin-bottom: 15px;
  }

  .portfolio-description {
    font-family: 'Raleway', sans-serif;
    color: hsl(286, 36%, 40%);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
  }

  .portfolio-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid hsl(286, 36%, 90%);
  }

  .portfolio-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: hsl(286, 36%, 50%);
    font-weight: 600;
  }

  .portfolio-tech {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    color: hsl(286, 36%, 60%);
  }

  .modal-content {
    border-radius: 16px;
    border: none;
  }

  .modal-header {
    background: linear-gradient(135deg, hsl(286, 36%, 50%) 0%, hsl(286, 36%, 35%) 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    padding: 25px 30px;
  }

  .modal-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
  }

  .modal-body {
    padding: 35px;
    font-family: 'Raleway', sans-serif;
    color: hsl(286, 36%, 35%);
    line-height: 1.8;
  }

  .modal-body h5 {
    font-family: 'Inter', sans-serif;
    color: hsl(286, 36%, 35%);
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .modal-body ul {
    padding-left: 20px;
  }

  .modal-body li {
    margin-bottom: 10px;
  }

  .btn-close {
    filter: brightness(0) invert(1);
  }

  .project-highlight {
    background: hsl(286, 36%, 97%);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid hsl(286, 36%, 50%);
  }

  @media (max-width: 768px) {
    #portfolio {
      padding: 60px 0;
    }

    #portfolio .section-title {
      font-size: 2rem;
    }

    .portfolio-card {
      margin-bottom: 20px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@400;500;600&display=swap');
  @import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css');

  #advantages {
    font-family: 'Raleway', sans-serif;
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(286, 36%, 98%) 0%, hsl(286, 36%, 95%) 100%);
    position: relative;
    overflow: hidden;
  }

  #advantages h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: hsl(286, 36%, 35%);
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
  }

  #advantages .section-subtitle {
    font-family: 'Raleway', sans-serif;
    color: hsl(286, 36%, 50%);
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, hsl(286, 36%, 75%), hsl(286, 36%, 50%));
    transform: translateX(-50%);
  }

  .advantage-item {
    position: relative;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.6s forwards;
  }

  .advantage-item:nth-child(1) { animation-delay: 0.1s; }
  .advantage-item:nth-child(2) { animation-delay: 0.2s; }
  .advantage-item:nth-child(3) { animation-delay: 0.3s; }
  .advantage-item:nth-child(4) { animation-delay: 0.4s; }
  .advantage-item:nth-child(5) { animation-delay: 0.5s; }
  .advantage-item:nth-child(6) { animation-delay: 0.6s; }
  .advantage-item:nth-child(7) { animation-delay: 0.7s; }

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

  .advantage-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    width: 45%;
  }

  .advantage-item:nth-child(odd) .advantage-content {
    margin-left: 0;
    margin-right: auto;
  }

  .advantage-item:nth-child(even) .advantage-content {
    margin-left: auto;
    margin-right: 0;
  }

  .advantage-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(133, 79, 133, 0.2);
  }

  .advantage-icon {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(286, 36%, 50%), hsl(286, 36%, 35%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(133, 79, 133, 0.3);
    transition: all 0.3s ease;
  }

  .advantage-item:hover .advantage-icon {
    transform: translateX(-50%) scale(1.15) rotate(360deg);
  }

  .advantage-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: hsl(286, 36%, 35%);
    margin-bottom: 15px;
    font-size: 1.4rem;
  }

  .advantage-content p {
    color: hsl(286, 10%, 40%);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
  }

  @media (max-width: 768px) {
    .timeline-line {
      left: 30px;
    }

    .advantage-content {
      width: calc(100% - 80px);
      margin-left: 80px !important;
      margin-right: 0 !important;
    }

    .advantage-icon {
      left: 30px;
    }

    #advantages h2 {
      font-size: 2rem;
    }

    .advantage-content h3 {
      font-size: 1.2rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@400;500;600&display=swap');

  #statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(286, 36%, 98%) 0%, hsl(286, 36%, 95%) 100%);
    font-family: 'Raleway', sans-serif;
  }

  #statistics .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  #statistics .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(286, 36%, 35%);
    margin-bottom: 15px;
  }

  #statistics .section-subtitle {
    font-size: 1.1rem;
    color: hsl(286, 36%, 50%);
    max-width: 700px;
    margin: 0 auto;
  }

  #statistics .stat-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    margin-bottom: 30px;
  }

  #statistics .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: hsl(286, 36%, 75%);
  }

  #statistics .stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(286, 36%, 50%) 0%, hsl(286, 36%, 35%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
  }

  #statistics .stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(286, 36%, 35%);
    margin-bottom: 12px;
    line-height: 1;
  }

  #statistics .stat-label {
    font-size: 1rem;
    color: hsl(286, 36%, 50%);
    font-weight: 500;
    line-height: 1.4;
  }

  @media (max-width: 768px) {
    #statistics {
      padding: 60px 0;
    }

    #statistics .section-title {
      font-size: 2rem;
    }

    #statistics .stat-number {
      font-size: 2.2rem;
    }

    #statistics .stat-card {
      padding: 30px 20px;
      margin-bottom: 20px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@400;500;600&display=swap');

footer {
  background: linear-gradient(135deg, hsl(286, 36%, 35%) 0%, hsl(286, 36%, 25%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Raleway', sans-serif;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: hsl(286, 36%, 75%);
  margin-bottom: 20px;
}

.footer-section p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: hsl(286, 36%, 75%);
  padding-left: 5px;
}

.contact-item {
  display: flex;
  align-items: start;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-item svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  flex-shrink: 0;
  fill: hsl(286, 36%, 75%);
  margin-top: 3px;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: hsl(286, 36%, 75%);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, hsl(286, 36%, 50%) 0%, hsl(286, 36%, 35%) 100%);
  color: #ffffff;
  padding: 25px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
  animation: slideUp 0.5s ease;
}

.cookie-notice.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
  font-family: 'Raleway', sans-serif;
  line-height: 1.6;
}

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn-accept {
  background: #ffffff;
  color: hsl(286, 36%, 35%);
}

.cookie-btn-accept:hover {
  background: hsl(286, 36%, 75%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-learn {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cookie-btn-learn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 140px;
  }
}

.cookies-policy {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    color: #2c3e50;
    line-height: 1.8;
}

.cookies-policy h1 {
    font-size: 2.5em;
    color: #1a472a;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookies-policy .effective-date {
    text-align: center;
    font-style: italic;
    color: #6c757d;
    margin-bottom: 40px;
    font-size: 0.95em;
}

.cookies-policy h2 {
    font-size: 1.8em;
    color: #2d5016;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #7cb342;
    font-weight: 600;
}

.cookies-policy h3 {
    font-size: 1.3em;
    color: #3e7c17;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.cookies-policy p {
    margin-bottom: 18px;
    text-align: justify;
    font-size: 1.05em;
}

.cookies-policy ul {
    margin: 20px 0;
    padding-left: 25px;
}

.cookies-policy li {
    margin-bottom: 12px;
    line-height: 1.7;
    position: relative;
    padding-left: 10px;
}

.cookies-policy li::marker {
    color: #7cb342;
    font-weight: bold;
}

.cookie-type-box {
    background: #e8f5e9;
    border-left: 5px solid #66bb6a;
    padding: 20px;
    margin: 25px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cookie-type-box h4 {
    color: #2e7d32;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.15em;
    font-weight: 600;
}

.intro-box {
    background: #fff8e1;
    border: 2px solid #ffd54f;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 35px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.control-section {
    background: #f1f8e9;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    border: 1px solid #c5e1a5;
}

.important-note {
    background: #fff3cd;
    border-left: 5px solid #ff9800;
    padding: 18px;
    margin: 25px 0;
    border-radius: 4px;
    font-weight: 500;
}

.cookies-policy strong {
    color: #1b5e20;
    font-weight: 600;
}

.privacy-policy {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  }
  
  .privacy-policy h1 {
    font-size: 2.5em;
    color: #1a472a;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 4px solid #27ae60;
    padding-bottom: 15px;
  }
  
  .privacy-policy .last-updated {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 40px;
    font-size: 0.95em;
  }
  
  .privacy-policy h2 {
    font-size: 1.8em;
    color: #27ae60;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 5px solid #1a472a;
  }
  
  .privacy-policy h3 {
    font-size: 1.3em;
    color: #2c5f2d;
    margin-top: 25px;
    margin-bottom: 15px;
  }
  
  .privacy-policy p {
    margin-bottom: 15px;
    text-align: justify;
    font-size: 1.05em;
  }
  
  .privacy-policy ul {
    margin: 15px 0;
    padding-left: 40px;
  }
  
  .privacy-policy li {
    margin-bottom: 12px;
    line-height: 1.7;
  }
  
  .privacy-policy .highlight-box {
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
    padding: 20px;
    margin: 25px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .privacy-policy .data-category {
    background: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  }
  
  .privacy-policy strong {
    color: #1a472a;
    font-weight: 600;
  }
  
  .privacy-policy .intro {
    font-size: 1.1em;
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

.blog-page { padding: 4rem 0; }
        .blog-page h1 { margin-bottom: 3rem; text-align: center; }
        .blog-card { margin-bottom: 2rem; transition: transform 0.3s; }
        .blog-card:hover { transform: translateY(-5px); }
        .blog-card .card-title { font-size: 1.5rem; margin-bottom: 1rem; }
        .blog-meta { font-size: 0.9rem; color: #888; margin-bottom: 1rem; }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@400;500;600&display=swap');

  #contact {
    background: linear-gradient(135deg, hsl(286, 36%, 98%) 0%, hsl(286, 36%, 95%) 100%);
    padding: 80px 0;
    font-family: 'Raleway', sans-serif;
  }

  #contact .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  #contact .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(286, 36%, 35%);
    margin-bottom: 15px;
  }

  #contact .section-subtitle {
    font-size: 1.1rem;
    color: hsl(286, 36%, 45%);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }

  #contact .contact-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  }

  #contact .form-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: hsl(286, 36%, 35%);
    margin-bottom: 8px;
    display: block;
  }

  #contact .form-control,
  #contact .form-select {
    border: 2px solid hsl(286, 36%, 85%);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  #contact .form-control:focus,
  #contact .form-select:focus {
    border-color: hsl(286, 36%, 50%);
    box-shadow: 0 0 0 0.2rem hsla(286, 36%, 50%, 0.15);
    outline: none;
  }

  #contact textarea.form-control {
    min-height: 140px;
    resize: vertical;
  }

  #contact .submit-btn {
    background: hsl(286, 36%, 50%);
    color: white;
    border: none;
    padding: 14px 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
  }

  #contact .submit-btn:hover {
    background: hsl(286, 36%, 40%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(286, 36%, 50%, 0.3);
  }

  #contact .info-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid hsl(286, 36%, 50%);
  }

  #contact .info-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: hsl(286, 36%, 35%);
    margin-bottom: 15px;
  }

  #contact .info-card-text {
    color: hsl(286, 36%, 40%);
    line-height: 1.7;
    margin-bottom: 12px;
  }

  #contact .info-icon {
    width: 50px;
    height: 50px;
    background: hsl(286, 36%, 95%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: hsl(286, 36%, 50%);
    font-size: 1.5rem;
  }

  #contact .hours-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
  }

  #contact .hours-list li {
    padding: 8px 0;
    border-bottom: 1px solid hsl(286, 36%, 90%);
    display: flex;
    justify-content: space-between;
    color: hsl(286, 36%, 40%);
  }

  #contact .hours-list li:last-child {
    border-bottom: none;
  }

  #contact .hours-list .day {
    font-weight: 600;
  }

  #contact .required-mark {
    color: hsl(286, 36%, 50%);
  }

  @media (max-width: 991px) {
    #contact {
      padding: 60px 0;
    }

    #contact .section-title {
      font-size: 2rem;
    }

    #contact .contact-form-wrapper {
      padding: 30px 20px;
      margin-bottom: 30px;
    }

    #contact .info-card {
      margin-bottom: 20px;
    }
  }

  @media (max-width: 575px) {
    #contact .section-title {
      font-size: 1.75rem;
    }

    #contact .contact-form-wrapper {
      padding: 25px 15px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@400;500;600&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css');

:root {
  --primary: hsl(286, 36%, 50%);
  --secondary: hsl(286, 36%, 35%);
  --accent: hsl(286, 36%, 75%);
}

.hero-section {
  font-family: 'Raleway', sans-serif;
  padding: 80px 0;
  background: linear-gradient(135deg, hsl(286, 36%, 98%) 0%, hsl(286, 36%, 95%) 100%);
  overflow: hidden;
}

.hero-section h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.benefits-list li {
  padding: 0.75rem 0;
  font-size: 1.05rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
}

.benefits-list li i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.btn-primary-custom {
  background-color: var(--primary);
  border: none;
  color: white;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.btn-primary-custom:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  color: white;
}

.btn-secondary-custom {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 13px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.btn-secondary-custom:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  height: 100%;
  min-height: 500px;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-image-wrapper {
    margin-top: 3rem;
    min-height: 400px;
  }
}

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section h2 {
    font-size: 1.25rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@400;500;600&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css');

:root {
  --primary: hsl(286, 36%, 50%);
  --secondary: hsl(286, 36%, 35%);
  --accent: hsl(286, 36%, 75%);
}

#testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, hsl(286, 36%, 97%) 0%, hsl(286, 36%, 94%) 100%);
  font-family: 'Raleway', sans-serif;
}

#testimonials h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

#testimonials .subtitle {
  font-family: 'Raleway', sans-serif;
  color: var(--primary);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 35px;
  margin: 15px;
  box-shadow: 0 4px 20px rgba(146, 82, 146, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(146, 82, 146, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: white;
  margin-right: 18px;
  flex-shrink: 0;
}

.testimonial-info {
  flex-grow: 1;
}

.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.testimonial-location {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.testimonial-rating {
  color: #ffa500;
  font-size: 0.95rem;
}

.testimonial-rating i {
  margin-right: 2px;
}

.testimonial-text {
  color: #444;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.testimonial-date {
  color: #999;
  font-size: 0.85rem;
  font-style: italic;
  text-align: right;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
}

.carousel-control-prev {
  left: -70px;
}

.carousel-control-next {
  right: -70px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background-color: var(--secondary);
}

.carousel-indicators {
  margin-bottom: -40px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent);
  border: none;
  margin: 0 6px;
}

.carousel-indicators button.active {
  background-color: var(--primary);
}

@media (max-width: 768px) {
  #testimonials {
    padding: 60px 0;
  }
  
  #testimonials h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 25px;
    min-height: auto;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .carousel-control-prev {
    left: -10px;
  }
  
  .carousel-control-next {
    right: -10px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@400;500;600&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css');

:root {
  --primary: hsl(286, 36%, 50%);
  --secondary: hsl(286, 36%, 35%);
  --accent: hsl(286, 36%, 75%);
}

.services-section {
  background: linear-gradient(135deg, #f8f5fa 0%, #ffffff 100%);
  padding: 80px 0;
  font-family: 'Raleway', sans-serif;
}

.services-section h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.services-section .subtitle {
  font-family: 'Raleway', sans-serif;
  color: var(--primary);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(146, 92, 146, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotate(10deg) scale(1.1);
}

.service-icon i {
  font-size: 32px;
  color: white;
}

.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.4rem;
  margin-top: auto;
}

.service-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #888;
}

@media (max-width: 768px) {
  .services-section h2 {
    font-size: 2rem;
  }
  
  .service-card {
    margin-bottom: 30px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Raleway:wght@400;500;600&display=swap');

.offer-section {
  font-family: 'Raleway', sans-serif;
  background: linear-gradient(135deg, hsl(286, 36%, 50%) 0%, hsl(286, 36%, 35%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.offer-container {
  position: relative;
  z-index: 2;
}

.offer-badge {
  display: inline-block;
  background: hsl(286, 36%, 75%);
  color: hsl(286, 36%, 35%);
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.offer-title {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.offer-description {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.offer-card {
  background: rgba(255,255,255,0.98);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  margin-top: 40px;
}

.date-container {
  background: linear-gradient(135deg, hsl(286, 36%, 75%) 0%, hsl(286, 36%, 50%) 100%);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  text-align: center;
}

.date-label {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(286, 36%, 35%);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.date-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.calendar-icon {
  font-size: 2.5rem;
  color: #ffffff;
}

.date-text {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(186, 132, 186, 0.1) 0%, rgba(186, 132, 186, 0.05) 100%);
  border-radius: 12px;
  border-left: 4px solid hsl(286, 36%, 50%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(186, 132, 186, 0.2);
}

.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: hsl(286, 36%, 50%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}

.benefit-text {
  flex: 1;
  font-size: 1.125rem;
  color: hsl(286, 36%, 35%);
  line-height: 1.6;
  font-weight: 500;
}

.discount-badge {
  display: inline-block;
  background: linear-gradient(135deg, hsl(286, 36%, 50%) 0%, hsl(286, 36%, 35%) 100%);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 30px 0;
  box-shadow: 0 8px 24px rgba(186, 132, 186, 0.3);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, hsl(286, 36%, 50%) 0%, hsl(286, 36%, 35%) 100%);
  color: #ffffff;
  padding: 20px 48px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 32px rgba(186, 132, 186, 0.4);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(186, 132, 186, 0.5);
  color: #ffffff;
}

@media (max-width: 768px) {
  .offer-title {
    font-size: 2rem;
  }
  
  .offer-card {
    padding: 30px 20px;
  }
  
  .date-text {
    font-size: 1.75rem;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@400;500;600&display=swap');

  .newsletter-section {
    background: linear-gradient(135deg, hsl(286, 36%, 50%) 0%, hsl(286, 36%, 35%) 100%);
    padding: 80px 0;
    font-family: 'Raleway', sans-serif;
    position: relative;
    overflow: hidden;
  }

  .newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" x="0" y="0" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
  }

  .newsletter-container {
    position: relative;
    z-index: 1;
  }

  .newsletter-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
  }

  .newsletter-header {
    text-align: center;
    margin-bottom: 35px;
  }

  .newsletter-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(286, 36%, 35%);
    margin-bottom: 15px;
    line-height: 1.2;
  }

  .newsletter-subtitle {
    font-size: 1.1rem;
    color: hsl(286, 36%, 50%);
    font-weight: 500;
    margin-bottom: 25px;
  }

  .newsletter-description {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 35px;
  }

  .benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: hsl(286, 36%, 97%);
    border-radius: 12px;
    transition: transform 0.3s ease;
  }

  .benefit-item:hover {
    transform: translateY(-3px);
  }

  .benefit-icon {
    width: 24px;
    height: 24px;
    background: hsl(286, 36%, 50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
  }

  .benefit-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
  }

  .newsletter-form {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
  }

  .newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 18px 25px;
    border: 2px solid hsl(286, 36%, 85%);
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
    background: white;
  }

  .newsletter-input:focus {
    outline: none;
    border-color: hsl(286, 36%, 50%);
    box-shadow: 0 0 0 4px hsla(286, 36%, 50%, 0.1);
  }

  .newsletter-input::placeholder {
    color: #999;
  }

  .newsletter-button {
    padding: 18px 45px;
    background: hsl(286, 36%, 50%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .newsletter-button:hover {
    background: hsl(286, 36%, 35%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .newsletter-button:active {
    transform: translateY(0);
  }

  .privacy-note {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    margin-top: 20px;
    line-height: 1.5;
  }

  @media (max-width: 768px) {
    .newsletter-section {
      padding: 60px 0;
    }

    .newsletter-card {
      padding: 35px 25px;
    }

    .newsletter-title {
      font-size: 2rem;
    }

    .newsletter-form {
      flex-direction: column;
    }

    .newsletter-input,
    .newsletter-button {
      width: 100%;
      min-width: 100%;
    }

    .benefits-list {
      grid-template-columns: 1fr;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@400;500;600&display=swap');
  @import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css');

  #video {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(135deg, hsl(286, 36%, 98%) 0%, hsl(286, 36%, 95%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  #video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, hsl(286, 36%, 75%), transparent);
  }

  #video .section-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(286, 36%, 35%);
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
  }

  #video .section-description {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(286, 36%, 30%);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
  }

  #video .video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #video .video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
  }

  #video .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: hsl(286, 36%, 20%);
  }

  #video .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  #video .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(146, 91, 146, 0.85), rgba(102, 64, 102, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 10;
  }

  #video .video-overlay:hover {
    background: linear-gradient(135deg, rgba(146, 91, 146, 0.75), rgba(102, 64, 102, 0.75));
  }

  #video .video-overlay:hover .play-button {
    transform: scale(1.15);
  }

  #video .play-button {
    color: white;
    font-size: 6rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  }

  #video .video-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  #video .video-cta h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: hsl(286, 36%, 35%);
    margin-bottom: 1rem;
  }

  #video .video-cta p {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: hsl(286, 36%, 30%);
    margin-bottom: 1.5rem;
  }

  #video .cta-button {
    display: inline-block;
    padding: 14px 36px;
    background: hsl(286, 36%, 50%);
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(146, 91, 146, 0.3);
  }

  #video .cta-button:hover {
    background: hsl(286, 36%, 35%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(146, 91, 146, 0.4);
    color: white;
  }

  @media (max-width: 768px) {
    #video {
      padding: 60px 0;
    }

    #video .section-heading {
      font-size: 2rem;
    }

    #video .section-description {
      font-size: 1rem;
      padding: 0 20px;
    }

    #video .play-button {
      font-size: 4rem;
    }

    #video .video-cta h3 {
      font-size: 1.3rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@400;500;600&display=swap');

  #blog {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(286, 36%, 97%) 0%, hsl(286, 36%, 92%) 100%);
    font-family: 'Raleway', sans-serif;
  }

  #blog .section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(286, 36%, 35%);
    text-align: center;
    margin-bottom: 3rem;
  }

  #blog .blog-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
  }

  #blog .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: hsl(286, 36%, 75%);
  }

  #blog .blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }

  #blog .blog-category {
    background: hsl(286, 36%, 75%);
    color: hsl(286, 36%, 35%);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
  }

  #blog .blog-date {
    color: hsl(286, 36%, 50%);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
  }

  #blog .blog-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: hsl(286, 36%, 35%);
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  #blog .blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  #blog .blog-title a:hover {
    color: hsl(286, 36%, 50%);
  }

  #blog .blog-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  #blog .blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid hsl(286, 36%, 90%);
  }

  #blog .reading-time {
    color: hsl(286, 36%, 50%);
    font-size: 0.9rem;
    font-weight: 500;
  }

  #blog .read-more {
    color: hsl(286, 36%, 50%);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  #blog .read-more:hover {
    color: hsl(286, 36%, 35%);
  }

  #blog .view-all-btn {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 2.5rem;
    background: hsl(286, 36%, 50%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    border: 2px solid hsl(286, 36%, 50%);
  }

  #blog .view-all-btn:hover {
    background: hsl(286, 36%, 35%);
    border-color: hsl(286, 36%, 35%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  #blog .text-center {
    text-align: center;
  }

  @media (max-width: 768px) {
    #blog {
      padding: 60px 0;
    }

    #blog .section-title {
      font-size: 2rem;
    }

    #blog .blog-card {
      margin-bottom: 2rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@400;500;600&display=swap');

  #faq {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(286, 36%, 98%) 0%, hsl(286, 36%, 95%) 100%);
    font-family: 'Raleway', sans-serif;
  }

  #faq .faq-header {
    text-align: center;
    margin-bottom: 60px;
  }

  #faq .faq-header h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(286, 36%, 35%);
    margin-bottom: 16px;
  }

  #faq .faq-header p {
    font-size: 1.125rem;
    color: hsl(286, 36%, 40%);
    max-width: 700px;
    margin: 0 auto;
  }

  #faq .accordion-button {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: hsl(286, 36%, 35%);
    background-color: #ffffff;
    border: 2px solid hsl(286, 36%, 90%);
    padding: 20px 24px;
    transition: all 0.3s ease;
  }

  #faq .accordion-button:not(.collapsed) {
    background-color: hsl(286, 36%, 50%);
    color: #ffffff;
    border-color: hsl(286, 36%, 50%);
    box-shadow: 0 4px 12px rgba(150, 90, 150, 0.2);
  }

  #faq .accordion-button:hover {
    background-color: hsl(286, 36%, 75%);
    border-color: hsl(286, 36%, 75%);
    color: hsl(286, 36%, 35%);
  }

  #faq .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(150, 90, 150, 0.25);
    border-color: hsl(286, 36%, 50%);
  }

  #faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23744a74'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
  }

  #faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }

  #faq .accordion-body {
    padding: 24px;
    background-color: #ffffff;
    border: 2px solid hsl(286, 36%, 90%);
    border-top: none;
    font-size: 1rem;
    line-height: 1.7;
    color: hsl(286, 36%, 30%);
  }

  #faq .accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #faq .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(150, 90, 150, 0.15);
  }

  #faq .accordion-button:not(.collapsed) + .accordion-collapse .accordion-body {
    border-color: hsl(286, 36%, 50%);
  }

  @media (max-width: 991px) {
    #faq {
      padding: 60px 0;
    }

    #faq .faq-header h2 {
      font-size: 2rem;
    }

    #faq .faq-header {
      margin-bottom: 40px;
    }
  }

  @media (max-width: 767px) {
    #faq {
      padding: 50px 0;
    }

    #faq .faq-header h2 {
      font-size: 1.75rem;
    }

    #faq .accordion-button {
      font-size: 0.95rem;
      padding: 16px 18px;
    }

    #faq .accordion-body {
      padding: 20px;
      font-size: 0.95rem;
    }
  }

.disclaimer-section {
  background: linear-gradient(135deg, hsl(286, 36%, 97%) 0%, hsl(286, 36%, 95%) 100%);
  padding: 3rem 0;
  font-family: 'Raleway', sans-serif;
}

.disclaimer-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.disclaimer-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.disclaimer-icon {
  color: hsl(286, 36%, 50%);
  font-size: 1.75rem;
}

.disclaimer-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(286, 36%, 35%);
  margin: 0;
}

.disclaimer-content {
  background: white;
  border-left: 4px solid hsl(286, 36%, 50%);
  padding: 1.75rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.disclaimer-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: hsl(286, 10%, 30%);
  margin: 0;
  text-align: justify;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 2rem 0;
  }
  
  .disclaimer-title {
    font-size: 1.25rem;
  }
  
  .disclaimer-content {
    padding: 1.25rem;
  }
  
  .disclaimer-text {
    font-size: 0.85rem;
    text-align: left;
  }
}

.terms-conditions {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.8;
        color: #2c3e50;
        background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
        padding: 60px 20px;
        margin: 0;
    }

    .terms-container {
        max-width: 900px;
        margin: 0 auto;
        background: #ffffff;
        padding: 50px;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .terms-conditions h1 {
        font-size: 2.8em;
        color: #1a472a;
        text-align: center;
        margin-bottom: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-bottom: 4px solid #27ae60;
        padding-bottom: 20px;
    }

    .last-updated {
        text-align: center;
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 40px;
        font-size: 0.95em;
    }

    .terms-content {
        margin-top: 30px;
    }

    .introduction {
        background: #ecf9f2;
        padding: 25px;
        border-left: 5px solid #27ae60;
        margin-bottom: 35px;
        border-radius: 6px;
        font-size: 1.05em;
        color: #2c3e50;
    }

    .terms-conditions h2 {
        font-size: 1.8em;
        color: #27ae60;
        margin-top: 40px;
        margin-bottom: 20px;
        font-weight: 600;
        padding-bottom: 10px;
        border-bottom: 2px solid #e8f5e9;
    }

    .terms-conditions p {
        margin-bottom: 18px;
        text-align: justify;
        font-size: 1.02em;
        color: #34495e;
    }

    .acceptance {
        background: #fff8e1;
        padding: 25px;
        border-left: 5px solid #f39c12;
        margin-top: 40px;
        border-radius: 6px;
        font-weight: 600;
        color: #2c3e50;
    }

    @media (max-width: 768px) {
        .terms-container {
            padding: 30px 25px;
        }

        .terms-conditions h1 {
            font-size: 2.2em;
        }

        .terms-conditions h2 {
            font-size: 1.5em;
        }

        .terms-conditions {
            padding: 30px 15px;
        }
    }

    @media (max-width: 480px) {
        .terms-container {
            padding: 20px 15px;
        }

        .terms-conditions h1 {
            font-size: 1.8em;
        }

        .terms-conditions h2 {
            font-size: 1.3em;
        }

        .terms-conditions p {
            font-size: 0.95em;
        }
    }