:root{
--primary: hsl(278, 59%, 41%);
--secondary: hsl(278, 59%, 26%);
--accent: hsl(278, 59%, 66%);
}
*{
  margin:0;
padding:0;
box-sizing:border-box;
}
body{
font-family: 'Raleway', sans-serif;
  color: #333;
  line-height: 1.7;
}
h1, h2, h3, h4, h5, h6{
font-family:'Inter', sans-serif;
font-weight:700;
}
.navbar{
background:#fff;
box-shadow:0 2px 12px rgba(0,0,0,0.08);
padding:1rem 0;
}
.navbar-brand{
display:flex;
align-items:center;
  gap:12px;
font-weight:600;
color:#222;
font-size:1.25rem;
}
.navbar-brand:hover{
color:var(--primary);
}
.nav-link{
color:#444;
font-weight:500;
padding:0.5rem 1rem;
transition:color 0.3s;
}
.nav-link:hover{
color:var(--primary);
}
.navbar-toggler{
border:none;
}
.navbar-toggler:focus{
box-shadow:none;
}

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

#about {
  padding: 80px 0;
  background: #ffffff;
  font-family: 'Raleway', sans-serif;
}

#about .section-title {
font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
    font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

#about .section-subtitle {
  font-size: 1.1rem;
    color: #666;
  margin-bottom: 50px;
}

#about .about-content {
background: #f8f9fa;
  padding: 50px;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

#about .about-image {
  border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    margin-bottom: 30px;
}

#about .about-image img {
  width: 100%;
height: auto;
    display: block;
  transition: transform 0.4s ease;
}

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

#about .about-text {
  color: #333;
    line-height: 1.8;
}

#about .about-text h3 {
font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  color: hsl(278, 59%, 41%);
    margin-bottom: 20px;
  font-weight: 600;
}

#about .about-text p {
  margin-bottom: 20px;
    font-size: 1rem;
}

#about .values-list {
  list-style: none;
    padding: 0;
  margin: 25px 0;
}

#about .values-list li {
padding: 12px 0;
  padding-left: 35px;
    position: relative;
  color: #444;
    font-size: 1rem;
}

#about .values-list li:before {
  content: "✓";
    position: absolute;
  left: 0;
    color: hsl(278, 59%, 41%);
  font-weight: bold;
    font-size: 1.3rem;
}

#about .stats-box {
background: #ffffff;
    padding: 30px;
  border-radius: 8px;
    margin-top: 30px;
  border-left: 4px solid hsl(278, 59%, 41%);
}

#about .stats-box h4 {
  font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
  color: #222;
    margin-bottom: 15px;
}

#about .stats-box p {
  color: #555;
    margin-bottom: 10px;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  #about {
    padding: 50px 0;
  }
  
  #about .section-title {
      font-size: 2rem;
  }
  
  #about .about-content {
      padding: 30px 20px;
  }
}

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

.portfolio-section {
  padding: 80px 0;
  background: #ffffff;
  font-family: 'Raleway', sans-serif;
}

.portfolio-section h2 {
font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #222;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.portfolio-intro {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.filter-btn {
  padding: 10px 24px;
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  color: #333;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.filter-btn:hover {
  background: hsl(278, 59%, 66%);
  border-color: hsl(278, 59%, 66%);
  color: #fff;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: hsl(278, 59%, 41%);
  border-color: hsl(278, 59%, 41%);
  color: #fff;
}

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

.portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #fff;
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.portfolio-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-category {
  color: hsl(278, 59%, 66%);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.portfolio-title {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.portfolio-content {
  padding: 25px;
  background: #fff;
}

.portfolio-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 600;
}

.portfolio-content .category-badge {
  display: inline-block;
  padding: 5px 14px;
  background: hsl(278, 59%, 95%);
  color: hsl(278, 59%, 41%);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.portfolio-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

.modal-header {
  background: hsl(278, 59%, 41%);
  color: #fff;
  border-radius: 15px 15px 0 0;
  padding: 25px 30px;
  border: none;
}

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

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

.modal-body {
  padding: 35px;
}

.modal-body img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 25px;
}

.modal-body h5 {
  font-family: 'Inter', sans-serif;
  color: #222;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.modal-body p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.modal-body ul {
  color: #555;
  line-height: 1.8;
  padding-left: 20px;
}

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

.project-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin: 25px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: hsl(278, 59%, 41%);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: #666;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .portfolio-section {
    padding: 60px 0;
  }
  
  .portfolio-section h2 {
    font-size: 2rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .filter-buttons {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
  
  .modal-body {
    padding: 25px 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.3/font/bootstrap-icons.min.css');

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

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

#advantages .section-header h2 {
font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
    font-weight: 700;
  color: #222;
    margin-bottom: 15px;
}

#advantages .section-header p {
font-size: 1.1rem;
  color: #555;
    max-width: 700px;
  margin: 0 auto;
}

#advantages .advantage-card {
background: #fff;
    border-radius: 12px;
  padding: 35px 25px;
    height: 100%;
box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
    border: 2px solid transparent;
}

#advantages .advantage-card:hover {
  transform: translateY(-8px);
box-shadow: 0 8px 30px rgba(123, 52, 138, 0.15);
    border-color: hsl(278, 59%, 66%);
}

#advantages .icon-wrapper {
    width: 70px;
  height: 70px;
    background: linear-gradient(135deg, hsl(278, 59%, 41%) 0%, hsl(278, 59%, 26%) 100%);
border-radius: 50%;
  display: flex;
    align-items: center;
  justify-content: center;
    margin-bottom: 25px;
  transition: transform 0.3s ease;
}

#advantages .advantage-card:hover .icon-wrapper {
transform: rotate(360deg);
}

#advantages .icon-wrapper i {
    font-size: 32px;
  color: #fff;
}

#advantages .advantage-card h3 {
font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
  font-weight: 600;
    color: #222;
  margin-bottom: 15px;
}

#advantages .advantage-card p {
  color: #666;
    font-size: 0.95rem;
line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  #advantages {
    padding: 50px 0;
  }
  
#advantages .section-header h2 {
    font-size: 2rem;
}
  
  #advantages .advantage-card {
margin-bottom: 25px;
  }
}

@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, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  #statistics::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(278, 59%, 66%);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
  }

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

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

  .stats-header h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
  }

  .stats-header p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
  }

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

  .stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(278, 59%, 41%) 0%, hsl(278, 59%, 66%) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

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

  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, hsl(278, 59%, 41%) 0%, hsl(278, 59%, 66%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    transition: transform 0.3s ease;
  }

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

  .stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(278, 59%, 41%);
    margin-bottom: 10px;
    line-height: 1;
  }

  .stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 8px;
  }

  .stat-context {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
  }

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

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

    .stats-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

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

    .stat-number {
      font-size: 2.3rem;
    }
  }

  @media (max-width: 576px) {
    .stats-header h2 {
      font-size: 1.75rem;
    }

    .stat-icon {
      width: 60px;
      height: 60px;
      font-size: 28px;
    }
  }

footer {
  background: linear-gradient(135deg, hsl(278, 59%, 26%) 0%, hsl(278, 59%, 41%) 100%);
    color: #fff;
  padding: 60px 0 20px;
    font-family: 'Raleway', sans-serif;
}

footer h5 {
font-family: 'Inter', sans-serif;
  font-weight: 700;
    font-size: 1.1rem;
  margin-bottom: 20px;
    color: #fff;
}

footer p, footer a {
  font-size: 0.95rem;
    line-height: 1.7;
}

footer a {
    color: hsl(278, 59%, 85%);
  text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
    text-decoration: underline;
}

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

footer .footer-links li {
    margin-bottom: 10px;
}

footer .contact-info p {
  margin-bottom: 8px;
    display: flex;
    align-items: center;
  gap: 8px;
}

footer .contact-info i {
  color: hsl(278, 59%, 66%);
    font-size: 1rem;
}

footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

footer .policy-links {
    display: flex;
  justify-content: center;
    gap: 20px;
  margin-top: 15px;
    flex-wrap: wrap;
}

#cookieNotice {
  position: fixed;
    bottom: 0;
  left: 0;
    width: 100%;
  background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
    padding: 25px 0;
  border-top: 3px solid hsl(278, 59%, 41%);
}

#cookieNotice h5 {
    font-family: 'Inter', sans-serif;
  color: hsl(278, 59%, 26%);
    font-weight: 700;
  margin-bottom: 12px;
}

#cookieNotice p {
    color: #333;
  font-size: 0.95rem;
    margin-bottom: 15px;
}

#cookieNotice .cookie-categories {
  background: #f8f9fa;
    padding: 15px;
  border-radius: 8px;
    margin: 15px 0;
}

#cookieNotice .cookie-category {
    margin-bottom: 10px;
  padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

#cookieNotice .cookie-category:last-child {
  border-bottom: none;
    margin-bottom: 0;
  padding-bottom: 0;
}

#cookieNotice .cookie-category strong {
    color: hsl(278, 59%, 26%);
  font-size: 0.9rem;
    display: block;
  margin-bottom: 3px;
}

#cookieNotice .cookie-category span {
  font-size: 0.85rem;
    color: #666;
}

#cookieNotice .cookie-category .badge {
    font-size: 0.7rem;
  margin-left: 8px;
    padding: 3px 8px;
}

#cookieNotice .btn-accept-all {
  background: #28a745;
    border: none;
  color: #fff;
    padding: 10px 25px;
  border-radius: 5px;
    font-weight: 600;
  transition: all 0.3s ease;
}

#cookieNotice .btn-accept-all:hover {
    background: #218838;
  transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40,167,69,0.3);
}

#cookieNotice .btn-reject {
    background: #6c757d;
  border: none;
    color: #fff;
  padding: 10px 25px;
    border-radius: 5px;
  font-weight: 600;
    transition: all 0.3s ease;
}

#cookieNotice .btn-reject:hover {
  background: #5a6268;
    transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108,117,125,0.3);
}

#cookieNotice .btn-manage {
    background: transparent;
  border: 2px solid hsl(278, 59%, 41%);
    color: hsl(278, 59%, 41%);
  padding: 10px 25px;
    border-radius: 5px;
  font-weight: 600;
    transition: all 0.3s ease;
}

#cookieNotice .btn-manage:hover {
    background: hsl(278, 59%, 41%);
  color: #fff;
    transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(120,40,140,0.3);
}

@media (max-width: 768px) {
  footer {
      padding: 40px 0 20px;
  }
  
    #cookieNotice {
    padding: 20px 0;
  }
  
    #cookieNotice .btn-accept-all,
  #cookieNotice .btn-reject,
    #cookieNotice .btn-manage {
    width: 100%;
      margin-bottom: 10px;
  }
}

.blog-page { padding: 4rem 0; }
.blog-page h1 { margin-bottom: 3rem; text-align: center; }
.blog-card { margin-bottom: 2rem; transition: transform 0.3s; overflow: hidden; }
.blog-card:hover { transform: translateY(-5px); }
.blog-card .card-img-top { height: 200px; object-fit: cover; }
.blog-meta { font-size: 0.9rem; color: #888; margin-bottom: 1rem; }

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Raleway, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(278, 59%, 41%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Inter, sans-serif; color: hsl(278, 59%, 26%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(278, 59%, 41%); }
.article-hero-img { width: 100%; height: auto; border-radius: 12px; margin-bottom: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.blog-article h2 { color: hsl(278, 59%, 26%); font-family: Inter, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(278, 59%, 26%); font-family: Inter, sans-serif; }
.blog-article a { color: hsl(278, 59%, 41%); }
.blog-article a:hover { color: hsl(278, 59%, 66%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(278, 59%, 41%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

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

  #contact .section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
    text-align: center;
  }

  #contact .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  #contact .contact-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease;
  }

  #contact .contact-card:hover {
    transform: translateY(-5px);
  }

  #contact .form-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
  }

  #contact .form-control,
  #contact .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
  }

  #contact .form-control:focus,
  #contact .form-select:focus {
    border-color: hsl(278, 59%, 41%);
    box-shadow: 0 0 0 0.2rem rgba(128, 42, 126, 0.15);
    background: #ffffff;
  }

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

  #contact .btn-submit {
    background: hsl(278, 59%, 41%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.05rem;
  }

  #contact .btn-submit:hover {
    background: hsl(278, 59%, 26%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(128, 42, 126, 0.3);
  }

  #contact .info-card {
    background: linear-gradient(135deg, hsl(278, 59%, 41%) 0%, hsl(278, 59%, 26%) 100%);
    border-radius: 15px;
    padding: 40px;
    color: #ffffff;
    height: 100%;
  }

  #contact .info-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #ffffff;
  }

  #contact .info-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
  }

  #contact .info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
  }

  #contact .info-icon svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
  }

  #contact .info-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 6px;
    color: #ffffff;
  }

  #contact .info-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
  }

  #contact .info-content a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  #contact .info-content a:hover {
    opacity: 0.8;
    text-decoration: underline;
  }

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

  #contact .hours-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 0.95rem;
  }

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

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

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

    #contact .contact-card,
    #contact .info-card {
      padding: 30px;
      margin-bottom: 30px;
    }

    #contact .info-title {
      font-size: 1.5rem;
    }
  }

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

    #contact .contact-card,
    #contact .info-card {
      padding: 25px;
    }
  }

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

  :root {
    --primary-color: hsl(278, 59%, 41%);
    --secondary-color: hsl(278, 59%, 26%);
    --accent-color: hsl(278, 59%, 66%);
  }

  .policy-content {
    font-family: 'Raleway', sans-serif;
    color: #333;
    line-height: 1.8;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
  }

  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
  }

  .policy-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }

  .policy-content p {
    margin-bottom: 1rem;
    font-weight: 400;
  }

  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }

  .policy-content li {
    margin-bottom: 0.75rem;
  }

  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }

  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

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

  .info-box a {
    color: white;
    text-decoration: underline;
  }

  .info-box a:hover {
    color: #f0f0f0;
  }

  .last-updated {
    background-color: #f8f9fa;
    padding: 1rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
    font-style: italic;
  }

  .cookie-table {
    margin: 1.5rem 0;
  }

  .cookie-table th {
    background-color: var(--primary-color);
    color: white;
    font-family: 'Inter', sans-serif;
  }

  .cookie-table td {
    vertical-align: middle;
  }

  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 3rem 0;
    border: none;
  }

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }

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

  .faq-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
  }

  .faq-header p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
  }

  .faq-accordion {
    max-width: 900px;
    margin: 0 auto;
  }

  .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }

  .accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
  }

  .accordion-button {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    background-color: #fff;
    padding: 24px 28px;
    border: none;
    transition: all 0.3s ease;
  }

  .accordion-button:not(.collapsed) {
    background-color: hsl(278, 59%, 41%);
    color: #fff;
    box-shadow: none;
  }

  .accordion-button:focus {
    box-shadow: none;
    border: none;
  }

  .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23222'%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");
    width: 1.5rem;
    height: 1.5rem;
  }

  .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='%23fff'%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");
  }

  .accordion-body {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    padding: 28px;
    background-color: #fff;
  }

  .accordion-body ul {
    margin: 15px 0;
    padding-left: 20px;
  }

  .accordion-body li {
    margin-bottom: 8px;
    color: #444;
  }

  .accordion-body strong {
    color: hsl(278, 59%, 41%);
    font-weight: 600;
  }

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

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

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

    .accordion-button {
      font-size: 1rem;
      padding: 18px 20px;
    }

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

    .accordion-item {
      margin-bottom: 15px;
    }
  }

  @media (max-width: 480px) {
    .faq-header h2 {
      font-size: 1.75rem;
    }

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(278, 59%, 41%) 0%, hsl(278, 59%, 26%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(278, 59%, 66%);
    opacity: 0.1;
    border-radius: 50%;
  }
  
  .newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(278, 59%, 66%);
    opacity: 0.08;
    border-radius: 50%;
  }
  
  .newsletter-container {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .newsletter-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    backdrop-filter: blur(10px);
  }
  
  .newsletter-icon svg {
    width: 35px;
    height: 35px;
    fill: #fff;
  }
  
  .newsletter-heading {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 18px;
    line-height: 1.2;
  }
  
  .newsletter-description {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 35px;
    line-height: 1.6;
  }
  
  .newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  
  .benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
  }
  
  .benefit-item svg {
    width: 20px;
    height: 20px;
    fill: hsl(278, 59%, 66%);
    flex-shrink: 0;
  }
  
  .newsletter-form {
    background: rgba(255,255,255,0.12);
    padding: 45px 40px;
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
  }
  
  .form-group-newsletter {
    margin-bottom: 20px;
  }
  
  .newsletter-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    background: rgba(255,255,255,0.95);
    color: #333;
    transition: all 0.3s ease;
  }
  
  .newsletter-input:focus {
    outline: none;
    border-color: hsl(278, 59%, 66%);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(189, 123, 204, 0.2);
  }
  
  .newsletter-input::placeholder {
    color: #999;
  }
  
  .newsletter-submit {
    width: 100%;
    padding: 16px 30px;
    background: #fff;
    color: hsl(278, 59%, 41%);
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .newsletter-submit:hover {
    background: hsl(278, 59%, 66%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  
  .newsletter-submit:active {
    transform: translateY(0);
  }
  
  .newsletter-privacy {
    text-align: center;
    margin-top: 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
  }
  
  .newsletter-privacy a {
    color: hsl(278, 59%, 66%);
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .newsletter-section {
      padding: 60px 0;
    }
    
    .newsletter-heading {
      font-size: 2rem;
    }
    
    .newsletter-description {
      font-size: 1rem;
    }
    
    .newsletter-benefits {
      gap: 15px;
    }
    
    .benefit-item {
      font-size: 0.9rem;
    }
    
    .newsletter-form {
      padding: 30px 25px;
    }
    
    .newsletter-input,
    .newsletter-submit {
      padding: 14px 18px;
    }
  }
  
  @media (max-width: 480px) {
    .newsletter-heading {
      font-size: 1.75rem;
    }
    
    .newsletter-benefits {
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
    
    .newsletter-form {
      padding: 25px 20px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Raleway:wght@300;400;500;600&display=swap');
  
  .hero-asymmetric {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }
  
  .hero-asymmetric::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: hsl(278, 59%, 66%, 0.08);
    border-radius: 50%;
    z-index: 0;
  }
  
  .hero-content-wrapper {
    position: relative;
    z-index: 2;
  }
  
  .hero-text-block {
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 3;
  }
  
  .hero-h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: hsl(278, 59%, 26%);
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .hero-h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: hsl(278, 59%, 41%);
    margin-bottom: 24px;
  }
  
  .hero-description {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 30px;
  }
  
  .hero-advantages-list {
    list-style: none;
    padding: 0;
    margin: 35px 0;
  }
  
  .hero-advantages-list li {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: #222222;
    padding: 12px 0 12px 40px;
    position: relative;
    line-height: 1.6;
  }
  
  .hero-advantages-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 24px;
    height: 24px;
    background: hsl(278, 59%, 41%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-advantages-list li::after {
    content: '✓';
    position: absolute;
    left: 7px;
    top: 14px;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
  }
  
  .hero-cta-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 35px;
  }
  
  .hero-btn-primary {
    font-family: 'Inter', sans-serif;
    padding: 16px 38px;
    background: hsl(278, 59%, 41%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(126, 52, 143, 0.3);
  }
  
  .hero-btn-primary:hover {
    background: hsl(278, 59%, 26%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(126, 52, 143, 0.4);
    color: #ffffff;
  }
  
  .hero-btn-secondary {
    font-family: 'Inter', sans-serif;
    padding: 16px 38px;
    background: transparent;
    color: hsl(278, 59%, 41%);
    border: 2px solid hsl(278, 59%, 41%);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .hero-btn-secondary:hover {
    background: hsl(278, 59%, 41%);
    color: #ffffff;
    transform: translateY(-2px);
  }
  
  .hero-image-block {
    position: relative;
    z-index: 2;
    margin-top: -60px;
  }
  
  .hero-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: rotate(-2deg);
  }
  
  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
  }
  
  .hero-accent-shape {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: hsl(278, 59%, 66%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.15;
  }
  
  @media (max-width: 991px) {
    .hero-h1 {
      font-size: 2.2rem;
    }
    
    .hero-h2 {
      font-size: 1.3rem;
    }
    
    .hero-image-block {
      margin-top: 50px;
    }
    
    .hero-image-wrapper {
      transform: rotate(0deg);
    }
  }
  
  @media (max-width: 767px) {
    .hero-asymmetric {
      padding: 60px 0 80px;
    }
    
    .hero-h1 {
      font-size: 1.8rem;
    }
    
    .hero-text-block {
      padding: 30px 25px;
    }
    
    .hero-cta-buttons {
      flex-direction: column;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
      width: 100%;
      text-align: center;
    }
  }

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

  .promo-offer-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  .promo-offer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsl(278, 59%, 66%) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
  }

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

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

  .offer-badge {
    background: linear-gradient(135deg, hsl(278, 59%, 41%) 0%, hsl(278, 59%, 26%) 100%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(139, 54, 169, 0.3);
  }

  .offer-main-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
  }

  .offer-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, hsl(278, 59%, 41%) 0%, hsl(278, 59%, 66%) 100%);
  }

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

  .offer-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    font-weight: 500;
  }

  .offer-description {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .deadline-box {
    background: linear-gradient(135deg, hsl(278, 59%, 66%) 0%, hsl(278, 59%, 41%) 100%);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(139, 54, 169, 0.25);
    transform: translateY(0);
    transition: transform 0.3s ease;
  }

  .deadline-box:hover {
    transform: translateY(-5px);
  }

  .deadline-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 600;
  }

  .deadline-date {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    color: #ffffff;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
  }

  .calendar-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    opacity: 0.95;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 40px 0;
  }

  .benefit-item {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid hsl(278, 59%, 41%);
    transition: all 0.3s ease;
  }

  .benefit-item:hover {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateX(5px);
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, hsl(278, 59%, 41%) 0%, hsl(278, 59%, 66%) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .benefit-icon i {
    color: #fff;
    font-size: 20px;
  }

  .benefit-text {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
  }

  .discount-badge {
    background: #ff4757;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 28px;
    display: inline-block;
    margin: 20px 0;
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }

  .cta-button {
    background: linear-gradient(135deg, hsl(278, 59%, 41%) 0%, hsl(278, 59%, 26%) 100%);
    color: #fff;
    padding: 18px 48px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 54, 169, 0.35);
    border: none;
    cursor: pointer;
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 54, 169, 0.45);
    color: #fff;
  }

  .cta-button:active {
    transform: translateY(-1px);
  }

  .offer-note {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #666;
    margin-top: 24px;
    font-style: italic;
  }

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

    .offer-main-card {
      padding: 32px 24px;
    }

    .offer-title {
      font-size: 36px;
    }

    .offer-subtitle {
      font-size: 18px;
    }

    .deadline-date {
      font-size: 42px;
    }

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

    .discount-badge {
      font-size: 24px;
      padding: 10px 24px;
    }

    .cta-button {
      padding: 16px 36px;
      font-size: 16px;
    }
  }

  .float-animation {
    animation: float 3s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }

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

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

.testimonials-section h2 {
font-family: 'Inter', sans-serif;
  color: #222;
  font-weight: 700;
  margin-bottom: 15px;
}

.testimonials-section .section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid hsl(278, 59%, 66%);
}

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(278, 59%, 41%) 0%, hsl(278, 59%, 26%) 100%);
  color: #fff;
  border-left: none;
}

.testimonial-card.featured .customer-name,
.testimonial-card.featured .customer-location,
.testimonial-card.featured .review-text {
  color: #fff;
}

.testimonial-card.featured .stars i {
  color: hsl(278, 59%, 66%);
}

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

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: hsl(278, 59%, 66%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

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

.customer-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 4px;
}

.customer-location {
  color: #777;
  font-size: 0.9rem;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 15px;
}

.stars i {
  color: hsl(278, 59%, 41%);
  font-size: 1.1rem;
}

.stars i.empty {
  color: #ddd;
}

.review-text {
  color: #444;
  line-height: 1.7;
  font-size: 1rem;
}

.review-text.short {
  font-size: 1.1rem;
  font-weight: 500;
}

.review-text.long {
  font-size: 0.95rem;
}

.review-date {
  color: #999;
  font-size: 0.85rem;
  margin-top: 15px;
  font-style: italic;
}

.testimonial-card.compact {
  padding: 20px;
}

.testimonial-card.compact .testimonial-header {
  margin-bottom: 12px;
}

.testimonial-card.compact .customer-avatar {
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 25px;
  }
}

.rating-badge {
  display: inline-block;
  background: hsl(278, 59%, 41%);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: auto;
}

.testimonial-card.featured .rating-badge {
  background: #fff;
  color: hsl(278, 59%, 41%);
}

@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.3/font/bootstrap-icons.css');

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

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

#services .section-header h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 15px;
}

#services .section-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  border: 1px solid #e9ecef;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(123, 49, 128, 0.15);
  border-color: hsl(278, 59%, 66%);
}

.service-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(278, 59%, 41%) 0%, hsl(278, 59%, 26%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ffffff;
  transition: transform 0.3s ease;
}

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

.service-content {
  flex: 1;
}

.service-content h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 12px;
}

.service-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: hsl(278, 59%, 41%);
}

.service-duration {
  color: #666;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-duration i {
  color: hsl(278, 59%, 66%);
}

@media (max-width: 768px) {
  #services {
    padding: 50px 0;
  }
  
  #services .section-header h2 {
    font-size: 2rem;
  }
  
  .service-card {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
  
  .service-icon {
    margin: 0 auto;
  }
  
  .service-meta {
    justify-content: center;
  }
}

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

#credentials {
    padding: 50px 0;
      background: #ffffff;
  font-family: 'Raleway', sans-serif;
}

#credentials .section-title {
font-family: 'Inter', sans-serif;
  font-size: 2rem;
    font-weight: 700;
  color: #222;
      text-align: center;
    margin-bottom: 35px;
}

  .credential-card {
background: #f8f9fa;
    border: 1px solid #e0e0e0;
  border-radius: 8px;
      padding: 20px 15px;
text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
      display: flex;
    flex-direction: column;
align-items: center;
    justify-content: center;
  }

.credential-card:hover {
  transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

  .credential-icon {
    font-size: 2.5rem;
color: #28a745;
      margin-bottom: 12px;
  }

.credential-text {
  font-size: 0.95rem;
    font-weight: 600;
      color: #333;
  margin: 0;
    font-family: 'Inter', sans-serif;
}

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

    #credentials .section-title {
  font-size: 1.6rem;
        margin-bottom: 25px;
    }

.credential-card {
        padding: 18px 12px;
  }

      .credential-icon {
font-size: 2rem;
    }

  .credential-text {
      font-size: 0.9rem;
}
  }

@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, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Raleway', sans-serif;
  }

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

  .blog-header h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
  }

  .blog-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
  }

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

  .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(123, 44, 191, 0.15);
  }

  .blog-card-img {
    position: relative;
    overflow: hidden;
    height: 240px;
  }

  .blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .blog-card:hover .blog-card-img img {
    transform: scale(1.08);
  }

  .blog-card-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: #666;
  }

  .blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .blog-meta i {
    color: hsl(278, 59%, 41%);
  }

  .blog-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 14px;
    line-height: 1.4;
  }

  .blog-card h3 a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .blog-card h3 a:hover {
    color: hsl(278, 59%, 41%);
  }

  .blog-excerpt {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(278, 59%, 41%);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
  }

  .blog-read-more:hover {
    gap: 12px;
    color: hsl(278, 59%, 26%);
  }

  .blog-cta {
    text-align: center;
    margin-top: 50px;
  }

  .btn-view-all {
    display: inline-block;
    padding: 16px 40px;
    background: hsl(278, 59%, 41%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(123, 44, 191, 0.2);
  }

  .btn-view-all:hover {
    background: hsl(278, 59%, 26%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(123, 44, 191, 0.3);
    color: #ffffff;
  }

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

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

    .blog-card {
      margin-bottom: 30px;
    }

    .blog-card-img {
      height: 200px;
    }
  }

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

.disclaimer-section {
  background: #f8f9fa;
    padding: 60px 0;
  font-family: 'Raleway', sans-serif;
}

.disclaimer-container {
  max-width: 900px;
    margin: 0 auto;
background: #ffffff;
  padding: 45px 40px;
  border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.disclaimer-icon {
  font-size: 42px;
  color: hsl(278, 59%, 41%);
    margin-bottom: 20px;
  display: inline-block;
}

.disclaimer-title {
font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
    color: #222;
  margin-bottom: 25px;
}

.disclaimer-text {
  font-size: 16px;
    line-height: 1.7;
  color: #444;
    margin-bottom: 0;
}

@media (max-width: 768px) {
  .disclaimer-section {
      padding: 40px 0;
  }
  
  .disclaimer-container {
    padding: 30px 20px;
  }
  
    .disclaimer-title {
    font-size: 26px;
  }
  
  .disclaimer-icon {
      font-size: 36px;
  }
  
  .disclaimer-text {
      font-size: 15px;
  }
}

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

  :root {
    --primary-color: hsl(278, 59%, 41%);
    --secondary-color: hsl(278, 59%, 26%);
    --accent-color: hsl(278, 59%, 66%);
  }

  body {
    font-family: 'Raleway', sans-serif;
    color: #333;
    line-height: 1.8;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }

  .policy-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
    color: var(--primary-color);
  }

  .policy-content h2 {
    font-size: 1.85rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }

  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }

  .policy-content p {
    margin-bottom: 1.25rem;
    font-weight: 400;
    font-size: 1.05rem;
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }

  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
  }

  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }

  .policy-content li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
  }

  .policy-intro {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .policy-intro p {
    margin-bottom: 0;
    font-size: 1.15rem;
    font-weight: 500;
  }

  .info-box {
    background-color: #f8f9fa;
    border-left: 5px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }

  .contact-details {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }

  .contact-details h3 {
    color: white;
    margin-top: 0;
  }

  .contact-details p {
    margin-bottom: 0.5rem;
  }

  .policy-section {
    margin-bottom: 2.5rem;
  }

  .last-updated {
    font-style: italic;
    color: #6c757d;
    font-size: 0.95rem;
    margin-top: 1rem;
  }

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

  :root {
    --primary-color: hsl(278, 59%, 41%);
    --secondary-color: hsl(278, 59%, 26%);
    --accent-color: hsl(278, 59%, 66%);
  }

  body {
    font-family: 'Raleway', sans-serif;
    color: #333;
    line-height: 1.7;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }

  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
    color: var(--primary-color);
  }

  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 20px;
  }

  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 70%;
    background-color: var(--accent-color);
    border-radius: 3px;
  }

  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }

  .policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    font-weight: 400;
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }

  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
  }

  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }

  .policy-content li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
  }

  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }

  .contact-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .contact-box h3 {
    color: white !important;
    margin-top: 0;
  }

  .contact-box p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
  }

  .contact-box a {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .contact-box a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
  }

  .highlight-box {
    background-color: rgba(169, 60, 179, 0.08);
    border-left: 5px solid var(--accent-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
  }

  .last-updated {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-top: 1rem;
  }

  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    margin: 3rem 0;
    border: none;
  }

:root {
    --primary: hsl(278, 59%, 41%);
    --secondary: hsl(278, 59%, 26%);
    --accent: hsl(278, 59%, 66%);
  }

  .thank-you-section {
    font-family: 'Raleway', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(278, 59%, 96%) 0%, hsl(278, 59%, 98%) 100%);
    padding: 2rem 1rem;
  }

  .thank-you-container {
    max-width: 600px;
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    text-align: center;
  }

  .success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
  }

  .success-icon svg {
    width: 50px;
    height: 50px;
    stroke: #ffffff;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: checkmark 0.8s ease-out 0.3s forwards;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }

  @keyframes scaleIn {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes checkmark {
    to {
      stroke-dashoffset: 0;
    }
  }

  .thank-you-heading {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
  }

  .thank-you-message {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.6s both;
  }

  .thank-you-message p {
    margin-bottom: 1rem;
  }

  .thank-you-message strong {
    color: var(--primary);
    font-weight: 600;
  }

  .info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.8s both;
  }

  .info-card {
    background: hsl(278, 59%, 97%);
    border-radius: 12px;
    padding: 1.25rem;
    border: 2px solid hsl(278, 59%, 90%);
  }

  .info-card-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .info-card-text {
    font-size: 0.875rem;
    color: var(--secondary);
    font-weight: 500;
  }

  .btn-home {
    background: var(--primary);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out 1s both;
    box-shadow: 0 4px 15px rgba(141, 51, 149, 0.3);
  }

  .btn-home:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(141, 51, 149, 0.4);
    color: #ffffff;
  }

  .btn-home:active {
    transform: translateY(0);
  }

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

  @media (max-width: 576px) {
    .thank-you-container {
      padding: 2rem 1.5rem;
    }

    .thank-you-heading {
      font-size: 2rem;
    }

    .thank-you-message {
      font-size: 1rem;
    }

    .info-cards {
      grid-template-columns: 1fr;
    }

    .btn-home {
      font-size: 1rem;
      padding: 0.75rem 2rem;
    }

    .success-icon {
      width: 80px;
      height: 80px;
    }

    .success-icon svg {
      width: 40px;
      height: 40px;
    }
  }