:root {
            --primary-color: hsl(308, 58%, 41%);
            --secondary-color: hsl(308, 58%, 26%);
            --accent-color: hsl(308, 58%, 66%);
        }
        
        body {
            font-family: 'Playfair Display', serif;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6, .navbar-brand {
            font-family: 'Ubuntu', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
            font-family: 'Ubuntu', sans-serif;
        }
        
        .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(168, 45, 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(168, 45, 134, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

  #about {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    color: #333;
  }

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

  #about .section-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(308, 58%, 41%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  #about .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(308, 58%, 66%);
    border-radius: 2px;
  }

  #about .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.8;
  }

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

  #about .text-content {
    flex: 1;
    min-width: 300px;
  }

  #about .image-content {
    flex: 1;
    min-width: 300px;
  }

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

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

  #about .content-block {
    margin-bottom: 35px;
  }

  #about .content-block h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(308, 58%, 26%);
    margin-bottom: 18px;
  }

  #about .content-block p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 15px;
  }

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

  #about .value-card {
    background: #ffffff;
    padding: 35px 28px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid hsl(308, 58%, 66%);
  }

  #about .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-left-color: hsl(308, 58%, 41%);
  }

  #about .value-card h4 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(308, 58%, 41%);
    margin-bottom: 15px;
  }

  #about .value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
  }

  #about .stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, hsl(308, 58%, 41%) 0%, hsl(308, 58%, 26%) 100%);
    border-radius: 15px;
  }

  #about .stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
  }

  #about .stat-item:last-child {
    border-right: none;
  }

  #about .stat-number {
    font-family: 'Ubuntu', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
  }

  #about .stat-label {
    font-size: 1.1rem;
    color: #f8f9fa;
    font-weight: 500;
  }

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

    #about .section-title {
      font-size: 2.2rem;
    }

    #about .content-wrapper {
      gap: 30px;
    }

    #about .content-block h3 {
      font-size: 1.5rem;
    }

    #about .stat-item {
      border-right: none;
      border-bottom: 2px solid rgba(255, 255, 255, 0.2);
      padding-bottom: 20px;
    }

    #about .stat-item:last-child {
      border-bottom: none;
      padding-bottom: 20px;
    }

    #about .stats-row {
      padding: 30px 20px;
    }
  }

.portfolio-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Playfair Display', serif;
  }

  .portfolio-section h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
  }

  .portfolio-section .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
  }

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

  .filter-btn {
    font-family: 'Ubuntu', sans-serif;
    padding: 10px 28px;
    border: 2px solid hsl(308, 58%, 41%);
    background: transparent;
    color: hsl(308, 58%, 41%);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(308, 58%, 41%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(169, 45, 137, 0.3);
  }

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

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

  .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(169, 45, 137, 0.25);
  }

  .portfolio-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
  }

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-category {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.85rem;
    color: hsl(308, 58%, 41%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .portfolio-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    color: #222;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .portfolio-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .view-details {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(308, 58%, 41%);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
  }

  .view-details:hover {
    gap: 12px;
    color: hsl(308, 58%, 26%);
  }

  .modal-content {
    border-radius: 15px;
    border: none;
    font-family: 'Playfair Display', serif;
  }

  .modal-header {
    background: linear-gradient(135deg, hsl(308, 58%, 41%) 0%, hsl(308, 58%, 26%) 100%);
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
    border: none;
  }

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

  .modal-body {
    padding: 30px;
  }

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

  .modal-category {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(308, 58%, 41%);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  .modal-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .project-details-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
  }

  .project-details-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
  }

  .project-details-list li strong {
    font-family: 'Ubuntu', sans-serif;
    color: #222;
    font-weight: 600;
  }

  .project-details-list li span {
    color: #666;
  }

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

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

    .portfolio-section h2 {
      font-size: 2.2rem;
    }

    .portfolio-grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .filter-buttons {
      gap: 10px;
    }

    .filter-btn {
      padding: 8px 20px;
      font-size: 0.85rem;
    }

    .modal-title {
      font-size: 1.5rem;
    }
  }

#advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  #advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(308, 58%, 41%, 0.05);
    border-radius: 50%;
    z-index: 0;
  }

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

  #advantages .section-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 1rem;
  }

  #advantages .section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

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

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

  .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(158, 42, 128, 0.2);
    border-color: hsl(308, 58%, 66%);
  }

  .advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(308, 58%, 41%) 0%, hsl(308, 58%, 66%) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
  }

  .advantage-card:hover .advantage-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 24px rgba(158, 42, 128, 0.3);
  }

  .advantage-icon i {
    font-size: 2rem;
    color: #ffffff;
  }

  .advantage-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    transition: color 0.3s ease;
  }

  .advantage-card:hover .advantage-title {
    color: hsl(308, 58%, 41%);
  }

  .advantage-description {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
  }

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

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

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

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

    #advantages .section-title {
      font-size: 1.75rem;
    }

    #advantages .section-subtitle {
      font-size: 1rem;
      margin-bottom: 40px;
    }

    .advantage-icon {
      width: 70px;
      height: 70px;
    }

    .advantage-icon i {
      font-size: 1.75rem;
    }

    .advantage-title {
      font-size: 1.25rem;
    }
  }

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

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(308, 58%, 41%) 0%, hsl(308, 58%, 66%) 100%);
}

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

.statistics-section .section-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.statistics-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(308, 58%, 41%);
}

.statistics-section .section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
}

.stat-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: hsl(308, 58%, 66%);
}

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

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, hsl(308, 58%, 41%), hsl(308, 58%, 66%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

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

.stat-icon i {
    font-size: 2.2rem;
    color: #ffffff;
}

.stat-number {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(308, 58%, 41%);
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    line-height: 1.5;
}

.stat-context {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: #888;
    margin-top: 8px;
    font-style: italic;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .statistics-section .section-title {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
    }
    
    .stat-icon i {
        font-size: 1.8rem;
    }
}

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

footer {
  background: linear-gradient(135deg, hsl(308, 58%, 26%) 0%, hsl(308, 58%, 41%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Playfair Display', serif;
  margin-top: 80px;
}

footer h3, footer h4, footer h5 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

footer p, footer a, footer li {
  color: #f8f9fa;
  font-size: 15px;
  line-height: 1.7;
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: hsl(308, 58%, 66%);
}

.footer-description {
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.8;
}

.footer-contact-item {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact-item i {
  margin-right: 12px;
  color: hsl(308, 58%, 66%);
  font-size: 18px;
  margin-top: 3px;
}

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

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

.footer-links a {
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.footer-links a:before {
  content: "→";
  position: absolute;
  left: 0;
  transition: transform 0.3s ease;
}

.footer-links a:hover:before {
  transform: translateX(5px);
}

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

.footer-policy-links {
  margin-top: 15px;
}

.footer-policy-links a {
  margin: 0 12px;
  font-size: 14px;
}

#cookieNotice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  padding: 30px;
  border: 2px solid hsl(308, 58%, 66%);
  animation: slideUp 0.5s ease;
}

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

#cookieNotice h4 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(308, 58%, 26%);
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
}

#cookieNotice p {
  font-family: 'Playfair Display', serif;
  color: #333333;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.cookie-category {
  margin-bottom: 12px;
  font-size: 13px;
  color: #333333;
  font-family: 'Playfair Display', serif;
}

.cookie-category strong {
  color: hsl(308, 58%, 26%);
  font-weight: 600;
}

.cookie-category-required {
  color: #666666;
  font-size: 11px;
  font-style: italic;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.cookie-btn {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: block;
}

.cookie-btn-accept {
  background: #28a745;
  color: #ffffff;
}

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

.cookie-btn-reject {
  background: #6c757d;
  color: #ffffff;
}

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

.cookie-btn-manage {
  background: transparent;
  color: hsl(308, 58%, 41%);
  border: 2px solid hsl(308, 58%, 41%);
}

.cookie-btn-manage:hover {
  background: hsl(308, 58%, 41%);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  #cookieNotice {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 20px;
  }
  
  .footer-policy-links a {
    display: block;
    margin: 8px 0;
  }
}

.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: Playfair Display, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(308, 58%, 41%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Ubuntu, sans-serif; color: hsl(308, 58%, 26%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(308, 58%, 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(308, 58%, 26%); font-family: Ubuntu, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(308, 58%, 26%); font-family: Ubuntu, sans-serif; }
.blog-article a { color: hsl(308, 58%, 41%); }
.blog-article a:hover { color: hsl(308, 58%, 66%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(308, 58%, 41%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

  .contact-section h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
  }

  .contact-section .lead-text {
    font-size: 1.15rem;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
  }

  .contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    border-left: 4px solid hsl(308, 58%, 41%);
  }

  .contact-info-item {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
  }

  .contact-info-item:last-child {
    margin-bottom: 0;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(308, 58%, 41%) 0%, hsl(308, 58%, 66%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1.25rem;
  }

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

  .contact-info-content h4 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.5rem;
  }

  .contact-info-content p {
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
  }

  .contact-info-content a {
    color: hsl(308, 58%, 41%);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
  }

  .contact-info-content a:hover {
    color: hsl(308, 58%, 26%);
    text-decoration: underline;
  }

  .contact-form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }

  .contact-form-card h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1.5rem;
  }

  .form-label {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
  }

  .form-control, .form-select {
    font-family: 'Playfair Display', serif;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
  }

  .form-control:focus, .form-select:focus {
    border-color: hsl(308, 58%, 41%);
    box-shadow: 0 0 0 0.2rem rgba(168, 56, 138, 0.15);
    outline: none;
  }

  .form-control::placeholder {
    color: #999;
  }

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

  .submit-btn {
    font-family: 'Ubuntu', sans-serif;
    background: linear-gradient(135deg, hsl(308, 58%, 41%) 0%, hsl(308, 58%, 26%) 100%);
    color: #ffffff;
    border: none;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
  }

  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 56, 138, 0.3);
  }

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

  .working-hours-list li {
    padding: 0.4rem 0;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
  }

  .working-hours-list li strong {
    color: #333;
    font-weight: 600;
  }

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

    .contact-section h2 {
      font-size: 2.2rem;
    }

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

  @media (max-width: 576px) {
    .contact-section h2 {
      font-size: 1.9rem;
    }

    .contact-form-card, .contact-info-card {
      padding: 1.75rem;
    }

    .contact-icon {
      width: 45px;
      height: 45px;
    }

    .contact-icon svg {
      width: 20px;
      height: 20px;
    }
  }

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

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

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

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

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

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

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

  .policy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
    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: 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: 700;
  }

  .last-updated {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
  }

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

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

  .contact-section h2 {
    color: white;
    border-left: 5px solid white;
  }

  .contact-section a {
    color: white;
    border-bottom: 2px solid white;
  }

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

  .cookie-category {
    background-color: white;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
  }

  .cookie-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  }

  .cookie-category h3 {
    margin-top: 0;
    color: var(--primary-color);
  }

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

  .faq-section h2 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(308, 58%, 26%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

  .faq-accordion .accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }

  .faq-accordion .accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }

  .faq-accordion .accordion-button {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    background-color: #ffffff;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
  }

  .faq-accordion .accordion-button:not(.collapsed) {
    background-color: hsl(308, 58%, 41%);
    color: #ffffff;
    box-shadow: none;
  }

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

  .faq-accordion .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");
    transition: transform 0.3s ease;
  }

  .faq-accordion .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 .accordion-body {
    padding: 1.5rem;
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    background-color: #fafafa;
  }

  .faq-accordion .accordion-body p {
    margin-bottom: 0.75rem;
  }

  .faq-accordion .accordion-body p:last-child {
    margin-bottom: 0;
  }

  .faq-accordion .accordion-body ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
  }

  .faq-accordion .accordion-body li {
    margin-bottom: 0.5rem;
    color: #444;
  }

  .faq-contact-box {
    background: linear-gradient(135deg, hsl(308, 58%, 41%) 0%, hsl(308, 58%, 26%) 100%);
    color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-contact-box h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .faq-contact-box p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
  }

  .faq-contact-box .btn-light {
    background-color: #ffffff;
    color: hsl(308, 58%, 41%);
    border: none;
    padding: 0.75rem 2rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .faq-contact-box .btn-light:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

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

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

    .faq-accordion .accordion-button {
      font-size: 1rem;
      padding: 1rem;
    }

    .faq-accordion .accordion-body {
      padding: 1rem;
      font-size: 0.95rem;
    }

    .faq-contact-box {
      padding: 1.5rem;
    }

    .faq-contact-box h3 {
      font-size: 1.25rem;
    }
  }

.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(308, 58%, 41%) 0%, hsl(308, 58%, 26%) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.newsletter-description {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #f8f9fa;
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter-email-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    transition: all 0.3s ease;
}

.newsletter-email-input:focus {
    outline: none;
    border-color: #ffffff;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

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

.newsletter-submit-btn {
    padding: 16px 40px;
    background: #ffffff;
    color: hsl(308, 58%, 41%);
    border: none;
    border-radius: 50px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit-btn:hover {
    background: hsl(308, 58%, 66%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.newsletter-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
}

.newsletter-benefit-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-benefit-icon::before {
    content: '✓';
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
}

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

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

    .newsletter-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .newsletter-input-group {
        flex-direction: column;
        gap: 15px;
    }

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

    .newsletter-submit-btn {
        width: 100%;
    }

    .newsletter-benefits {
        gap: 20px;
        margin-top: 30px;
    }

    .newsletter-benefit-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .newsletter-heading {
        font-size: 1.75rem;
    }

    .newsletter-benefits {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

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

  .hero-section h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: hsl(308, 58%, 41%);
    margin-bottom: 2rem;
  }

  .hero-section .description {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

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

  .hero-advantages li {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #333;
    padding: 0.8rem 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
  }

  .hero-advantages li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: hsl(308, 58%, 41%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-advantages li i {
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 0.9rem;
  }

  .hero-image-wrapper {
    position: relative;
    z-index: 2;
  }

  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(158, 33, 117, 0.2);
    transform: translateX(20px);
  }

  .hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
  }

  .hero-btn-primary {
    font-family: 'Ubuntu', sans-serif;
    background-color: hsl(308, 58%, 41%);
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(158, 33, 117, 0.3);
  }

  .hero-btn-primary:hover {
    background-color: hsl(308, 58%, 26%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(158, 33, 117, 0.4);
    color: #fff;
  }

  .hero-btn-secondary {
    font-family: 'Ubuntu', sans-serif;
    background-color: transparent;
    color: hsl(308, 58%, 41%);
    padding: 16px 40px;
    border: 2px solid hsl(308, 58%, 41%);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
  }

  .hero-btn-secondary:hover {
    background-color: hsl(308, 58%, 41%);
    color: #fff;
    transform: translateY(-2px);
  }

  .hero-content-wrapper {
    position: relative;
    z-index: 3;
  }

  .hero-decorative-element {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, hsl(308, 58%, 66%) 0%, hsl(308, 58%, 41%) 100%);
    border-radius: 50%;
    opacity: 0.1;
    top: -50px;
    right: -100px;
    z-index: 1;
  }

  @media (max-width: 991px) {
    .hero-section h1 {
      font-size: 2.5rem;
    }

    .hero-section h2 {
      font-size: 1.5rem;
    }

    .hero-image-wrapper img {
      transform: translateX(0);
      margin-top: 3rem;
    }

    .hero-cta-buttons {
      justify-content: center;
    }
  }

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

    .hero-section h1 {
      font-size: 2rem;
    }

    .hero-section h2 {
      font-size: 1.3rem;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
      width: 100%;
      justify-content: center;
      padding: 14px 30px;
    }

    .hero-cta-buttons {
      flex-direction: column;
      gap: 1rem;
    }
  }

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

  #credentials {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Playfair Display', serif;
  }

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

  #credentials .credential-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

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

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

  #credentials .credential-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
  }

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

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

    #credentials .credential-card {
      padding: 20px 15px;
      margin-bottom: 15px;
    }

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

    #credentials .credential-title {
      font-size: 0.95rem;
    }
  }

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

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

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

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

  #blog .section-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  #blog .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(308, 58%, 41%), hsl(308, 58%, 66%));
    border-radius: 2px;
  }

  #blog .section-subtitle {
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
  }

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

  #blog .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(178, 45, 137, 0.15);
  }

  #blog .blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 260px;
  }

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

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

  #blog .blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: hsl(308, 58%, 41%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

  #blog .blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
    font-size: 0.9rem;
    color: #777;
    font-family: 'Ubuntu', sans-serif;
  }

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

  #blog .blog-meta-icon {
    color: hsl(308, 58%, 41%);
    font-size: 1rem;
  }

  #blog .blog-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
    line-height: 1.4;
    transition: color 0.3s ease;
  }

  #blog .blog-card:hover .blog-title {
    color: hsl(308, 58%, 41%);
  }

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

  #blog .blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(308, 58%, 41%);
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  #blog .blog-link:hover {
    color: hsl(308, 58%, 26%);
    gap: 12px;
  }

  #blog .blog-link-arrow {
    transition: transform 0.3s ease;
  }

  #blog .blog-link:hover .blog-link-arrow {
    transform: translateX(4px);
  }

  #blog .view-all-wrapper {
    text-align: center;
    margin-top: 60px;
  }

  #blog .btn-view-all {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, hsl(308, 58%, 41%), hsl(308, 58%, 26%));
    color: #ffffff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(178, 45, 137, 0.3);
    border: none;
  }

  #blog .btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(178, 45, 137, 0.4);
    background: linear-gradient(135deg, hsl(308, 58%, 46%), hsl(308, 58%, 31%));
  }

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

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

    #blog .section-subtitle {
      font-size: 1rem;
    }

    #blog .blog-image-wrapper {
      height: 220px;
    }

    #blog .blog-content {
      padding: 24px;
    }

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

    #blog .view-all-wrapper {
      margin-top: 40px;
    }
  }

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

.testimonials-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(308, 58%, 26%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

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

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-left: 4px solid hsl(308, 58%, 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(308, 58%, 41%) 0%, hsl(308, 58%, 26%) 100%);
  color: #ffffff;
  border-left: 4px solid #ffffff;
}

.testimonial-card.featured .customer-name,
.testimonial-card.featured .customer-location {
  color: #ffffff;
}

.testimonial-card.featured .stars i {
  color: #ffd700;
}

.stars {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.stars i {
  color: #ffc107;
  margin-right: 3px;
}

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

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

.testimonial-card.featured .testimonial-text {
  color: #ffffff;
}

.customer-info {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.testimonial-card.featured .customer-info {
  border-top: 1px solid rgba(255,255,255,0.3);
}

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: hsl(308, 58%, 66%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-right: 15px;
  flex-shrink: 0;
}

.testimonial-card.featured .customer-avatar {
  background: #ffffff;
  color: hsl(308, 58%, 41%);
}

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

.customer-name {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 3px;
}

.customer-location {
  color: #666;
  font-size: 0.95rem;
}

.testimonial-compact {
  background: #f8f9fa;
  border-left: 4px solid hsl(308, 58%, 41%);
}

.testimonial-detailed {
  background: #ffffff;
  border-left: 4px solid hsl(308, 58%, 66%);
  padding: 35px;
}

.quote-icon {
  font-size: 3rem;
  color: hsl(308, 58%, 66%);
  opacity: 0.3;
  margin-bottom: 10px;
  line-height: 1;
}

.testimonial-card.featured .quote-icon {
  color: #ffffff;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .customer-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

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

  .services-section h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
  }

  .services-section .lead-text {
    font-size: 1.15rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
  }

  .nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }

  .nav-tabs .nav-link {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 12px 28px;
    margin: 0 8px 10px;
    transition: all 0.3s ease;
  }

  .nav-tabs .nav-link:hover {
    color: hsl(308, 58%, 41%);
    border-color: hsl(308, 58%, 41%);
    background: #ffffff;
    transform: translateY(-2px);
  }

  .nav-tabs .nav-link.active {
    color: #ffffff;
    background: hsl(308, 58%, 41%);
    border-color: hsl(308, 58%, 41%);
  }

  .service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(163, 44, 130, 0.15);
    border-color: hsl(308, 58%, 66%);
  }

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(308, 58%, 41%) 0%, hsl(308, 58%, 26%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
  }

  .service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(308, 58%, 26%) 0%, hsl(308, 58%, 41%) 100%);
  }

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

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

  .service-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
  }

  .service-price {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(308, 58%, 41%);
    margin-bottom: 15px;
  }

  .service-terms {
    font-size: 0.9rem;
    color: #777;
    padding-top: 15px;
    border-top: 1px solid #e8e8e8;
  }

  .service-terms i {
    color: hsl(308, 58%, 41%);
    margin-right: 8px;
  }

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

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

    .nav-tabs .nav-link {
      font-size: 0.9rem;
      padding: 10px 20px;
      margin: 0 5px 8px;
    }

    .service-card {
      padding: 25px;
    }

    .service-card h3 {
      font-size: 1.3rem;
    }
  }

.offer-section {
  background: linear-gradient(135deg, hsl(308, 58%, 41%) 0%, hsl(308, 58%, 26%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(308, 58%, 66%);
  border-radius: 50%;
  opacity: 0.1;
}

.offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(308, 58%, 66%);
  border-radius: 50%;
  opacity: 0.1;
}

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

.offer-badge {
  display: inline-block;
  background: hsl(308, 58%, 66%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 30px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.offer-heading {
  font-family: 'Ubuntu', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.offer-description {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.offer-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}

.deadline-label {
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.deadline-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.calendar-icon {
  width: 60px;
  height: 60px;
  background: hsl(308, 58%, 41%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}

.date-text {
  font-family: 'Ubuntu', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: hsl(308, 58%, 41%);
  line-height: 1;
}

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

.offer-benefits li {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #333;
  padding: 16px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 15px;
}

.offer-benefits li:last-child {
  border-bottom: none;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: hsl(308, 58%, 95%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(308, 58%, 41%);
  font-size: 18px;
  flex-shrink: 0;
}

.discount-highlight {
  background: hsl(308, 58%, 95%);
  border-left: 4px solid hsl(308, 58%, 41%);
  padding: 20px 30px;
  border-radius: 8px;
  margin: 30px 0;
}

.discount-text {
  font-family: 'Ubuntu', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: hsl(308, 58%, 41%);
  margin: 0;
}

.offer-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-offer {
  font-family: 'Ubuntu', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: hsl(308, 58%, 41%);
  border: none;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(158, 44, 126, 0.3);
}

.btn-offer:hover {
  background: hsl(308, 58%, 26%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(158, 44, 126, 0.4);
  color: #fff;
}

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

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

  .offer-description {
    font-size: 16px;
  }

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

  .date-text {
    font-size: 32px;
  }

  .calendar-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .offer-benefits li {
    font-size: 16px;
  }

  .discount-text {
    font-size: 20px;
  }

  .btn-offer {
    font-size: 16px;
    padding: 15px 40px;
  }
}

.disclaimer-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
  font-family: 'Playfair Display', serif;
}

.disclaimer-section .container {
  max-width: 900px;
}

.disclaimer-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
  text-align: center;
}

.disclaimer-icon-wrapper {
  text-align: center;
  margin-bottom: 35px;
}

.disclaimer-icon {
  font-size: 4rem;
  color: hsl(308, 58%, 41%);
  opacity: 0.9;
}

.disclaimer-content {
  background: #ffffff;
  border-left: 4px solid hsl(308, 58%, 41%);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.disclaimer-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin: 0;
  text-align: justify;
}

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

  .disclaimer-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .disclaimer-icon {
    font-size: 3rem;
  }

  .disclaimer-content {
    padding: 30px 25px;
  }

  .disclaimer-text {
    font-size: 1rem;
    text-align: left;
  }
}

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

  .disclaimer-content {
    padding: 25px 20px;
    border-left-width: 3px;
  }

  .disclaimer-text {
    font-size: 0.95rem;
  }
}

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

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

  body {
    font-family: 'Playfair Display', serif;
  }

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

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

  .policy-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
  }

  .policy-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }

  .policy-content p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #333;
  }

  .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 ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }

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

  .policy-intro {
    background: linear-gradient(135deg, rgba(179, 44, 140, 0.05) 0%, rgba(179, 44, 140, 0.02) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
  }

  .contact-box {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border: 2px solid var(--accent-color);
  }

  .effective-date {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
  }

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

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

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

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

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

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

  .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;
    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: 5px;
    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: 1rem;
    font-size: 1.05rem;
  }

  .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 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;
  }

  .effective-date {
    background-color: hsl(308, 58%, 95%);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
  }

  .contact-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

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

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

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

  .success-icon-wrapper {
    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 {
    width: 50px;
    height: 50px;
    stroke: white;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: checkmark 0.6s 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: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    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 strong {
    color: var(--secondary);
    font-weight: 600;
  }

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

  .info-card {
    background: hsl(308, 58%, 97%);
    border-left: 4px solid var(--accent);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    text-align: left;
  }

  .info-card-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 0.75rem;
    vertical-align: middle;
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
  }

  .info-card-text {
    display: inline-block;
    vertical-align: middle;
    font-size: 1rem;
    color: #666;
    max-width: calc(100% - 40px);
  }

  .btn-home {
    font-family: 'Ubuntu', sans-serif;
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.875rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 1rem;
    animation: fadeInUp 0.6s ease-out 1s both;
  }

  .btn-home:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 39, 128, 0.3);
    color: white;
  }

  @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;
    }

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

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

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