:root {
            --primary-color: hsl(301, 53%, 34%);
            --secondary-color: hsl(301, 53%, 19%);
            --accent-color: hsl(301, 53%, 59%);
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Roboto', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(142, 51, 116, 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(142, 51, 116, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

.about-section h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(301, 53%, 34%);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 15px;
}

.about-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: hsl(301, 53%, 59%);
}

.about-section h3 {
  font-family: 'Roboto', sans-serif;
  color: hsl(301, 53%, 19%);
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}

.about-section p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

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

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

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

.value-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid hsl(301, 53%, 59%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h4 {
  font-family: 'Roboto', sans-serif;
  color: hsl(301, 53%, 34%);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.value-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.stats-row {
  background: hsl(301, 53%, 34%);
  color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
  padding: 15px;
}

.stat-number {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #f8f9fa;
  font-weight: 400;
}

.mission-box {
  background: linear-gradient(135deg, hsl(301, 53%, 59%) 0%, hsl(301, 53%, 34%) 100%);
  color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  margin: 2rem 0;
}

.mission-box h3 {
  color: #ffffff;
  margin-top: 0;
}

.mission-box p {
  color: #f8f9fa;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-section h2 {
    font-size: 2.2rem;
  }
  
  .about-section h3 {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}

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

  .portfolio-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(301, 53%, 59%, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
  }

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

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

  .portfolio-header h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(301, 53%, 34%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  .portfolio-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(301, 53%, 59%);
    border-radius: 2px;
  }

  .portfolio-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
  }

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

  .filter-btn {
    font-family: 'Open Sans', sans-serif;
    padding: 12px 28px;
    border: 2px solid hsl(301, 53%, 34%);
    background: transparent;
    color: hsl(301, 53%, 34%);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(301, 53%, 34%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(142, 58, 124, 0.3);
  }

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

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

  .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(142, 58, 124, 0.2);
  }

  .portfolio-image {
    position: relative;
    overflow: hidden;
    height: 280px;
  }

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

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

  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(142, 58, 124, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
  }

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

  .portfolio-overlay-text {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-category {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: hsl(301, 53%, 59%);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding: 5px 15px;
    background: hsla(301, 53%, 59%, 0.1);
    border-radius: 20px;
  }

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

  .portfolio-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .portfolio-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: hsl(301, 53%, 34%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  .portfolio-link:hover {
    color: hsl(301, 53%, 59%);
    gap: 12px;
  }

  .portfolio-link::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }

  .portfolio-link:hover::after {
    transform: translateX(5px);
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(301, 53%, 34%) 0%, hsl(301, 53%, 19%) 100%);
    color: #fff;
    border: none;
    padding: 25px 30px;
  }

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

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

  .btn-close:hover {
    opacity: 1;
  }

  .modal-body {
    padding: 35px;
  }

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

  .modal-category {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: hsl(301, 53%, 59%);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 6px 18px;
    background: hsla(301, 53%, 59%, 0.1);
    border-radius: 20px;
  }

  .modal-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
  }

  .modal-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
  }

  .modal-details h5 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: hsl(301, 53%, 34%);
    margin-bottom: 20px;
  }

  .modal-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .modal-details li {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #555;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .modal-details li:last-child {
    border-bottom: none;
  }

  .modal-details li::before {
    content: '✓';
    color: hsl(301, 53%, 59%);
    font-weight: 700;
    font-size: 1.2rem;
  }

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

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

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

    .portfolio-filters {
      gap: 10px;
    }

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

    .portfolio-image {
      height: 220px;
    }

    .modal-body {
      padding: 25px;
    }
  }

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

    .portfolio-header p {
      font-size: 1rem;
    }

    .portfolio-title {
      font-size: 1.2rem;
    }
  }

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

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(301, 53%, 34%), hsl(301, 53%, 59%));
}

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

.advantages-section .section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(301, 53%, 34%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.advantages-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(301, 53%, 59%);
}

.advantages-section .section-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.6;
}

.advantage-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    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(301, 53%, 34%), hsl(301, 53%, 59%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(151, 71, 125, 0.2);
    border-color: hsl(301, 53%, 59%);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(301, 53%, 34%), hsl(301, 53%, 59%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(301, 53%, 59%), hsl(301, 53%, 34%));
}

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

.advantage-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    text-align: center;
}

.advantage-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
}

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

.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(301, 53%, 34%), hsl(301, 53%, 59%));
}

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

.statistics-section .section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(301, 53%, 34%);
    margin-bottom: 20px;
}

.statistics-section .section-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    border: 2px solid transparent;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(155, 46, 133, 0.15);
    border-color: hsl(301, 53%, 59%);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, hsl(301, 53%, 34%), hsl(301, 53%, 59%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    transition: all 0.4s ease;
}

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

.stat-number {
    font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(301, 53%, 34%);
    margin-bottom: 10px;
    line-height: 1.2;
}

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

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

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

@media (max-width: 576px) {
    .statistics-section .section-title {
        font-size: 1.75rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

footer {
  background: linear-gradient(135deg, hsl(301, 53%, 19%) 0%, hsl(301, 53%, 34%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Open Sans', sans-serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer p, footer li, footer a {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

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

footer a:hover {
  color: hsl(301, 53%, 59%);
  padding-left: 5px;
}

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

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

.footer-description {
  max-width: 400px;
  margin-bottom: 25px;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.footer-contact-item i {
  margin-right: 12px;
  color: hsl(301, 53%, 59%);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 50px;
  padding-top: 25px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-logo {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  display: block;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 30px 0;
  border-top: 4px solid hsl(301, 53%, 34%);
  animation: slideUp 0.5s ease-out;
}

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

#cookieNotice h4 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: hsl(301, 53%, 19%);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

#cookieNotice p {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.cookie-category {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

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

.cookie-category-title {
  font-weight: 600;
  color: hsl(301, 53%, 34%);
  font-size: 1rem;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category-desc {
  font-size: 0.85rem;
  color: #666666;
  margin: 0;
}

.cookie-required-badge {
  background: hsl(301, 53%, 34%);
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.cookie-optional-badge {
  background: #6c757d;
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

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

.btn-cookie-accept {
  background: #28a745;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

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

.btn-cookie-reject {
  background: #6c757d;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

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

.btn-cookie-settings {
  background: transparent;
  color: hsl(301, 53%, 34%);
  border: 2px solid hsl(301, 53%, 34%);
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.btn-cookie-settings:hover {
  background: hsl(301, 53%, 34%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(122, 49, 90, 0.3);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
    text-align: center;
  }
  
  .footer-description {
    max-width: 100%;
  }
  
  .footer-contact-item {
    justify-content: center;
  }
  
  #cookieNotice {
    padding: 20px 0;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .btn-cookie-accept,
  .btn-cookie-reject,
  .btn-cookie-settings {
    width: 100%;
    text-align: center;
  }
}

.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: Open Sans, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(301, 53%, 34%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Roboto, sans-serif; color: hsl(301, 53%, 19%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(301, 53%, 34%); }
.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(301, 53%, 19%); font-family: Roboto, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(301, 53%, 19%); font-family: Roboto, sans-serif; }
.blog-article a { color: hsl(301, 53%, 34%); }
.blog-article a:hover { color: hsl(301, 53%, 59%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(301, 53%, 34%); 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: 'Open Sans', sans-serif;
}

.contact-section h2 {
    font-family: 'Roboto', sans-serif;
    color: hsl(301, 53%, 34%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

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

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.contact-form-wrapper h3 {
    font-family: 'Roboto', sans-serif;
    color: hsl(301, 53%, 34%);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-form .form-label {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form .form-control,
.contact-form .form-control:focus {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: hsl(301, 53%, 59%);
    box-shadow: 0 0 0 0.2rem rgba(168, 66, 138, 0.15);
    outline: none;
}

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

.contact-form .required-mark {
    color: hsl(301, 53%, 34%);
    margin-left: 3px;
}

.contact-form .btn-submit {
    background: hsl(301, 53%, 34%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: 100%;
}

.contact-form .btn-submit:hover {
    background: hsl(301, 53%, 19%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 66, 138, 0.3);
}

.contact-info-wrapper {
    background: hsl(301, 53%, 34%);
    color: #ffffff;
    border-radius: 15px;
    padding: 40px;
    height: 100%;
}

.contact-info-wrapper h3 {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

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

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

.contact-info-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

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

.contact-info-content a:hover {
    color: hsl(301, 53%, 59%);
    transform: translateX(5px);
}

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

.working-hours-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
}

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

.day-name {
    font-weight: 600;
}

.hours-time {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
    .contact-info-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px 20px;
    }
    
    .contact-info-item {
        margin-bottom: 25px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(301, 53%, 34%);
    --secondary-color: hsl(301, 53%, 19%);
    --accent-color: hsl(301, 53%, 59%);
  }
  
  .policy-content {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1rem 0;
    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, rgba(147, 51, 234, 0.05) 0%, rgba(147, 51, 234, 0.1) 100%);
    border-left: 5px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .cookie-type-card {
    background: #fff;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cookie-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(147, 51, 234, 0.2);
  }
  
  .contact-section {
    background: var(--secondary-color);
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
  }
  
  .contact-section h2 {
    color: #fff;
    border-left-color: var(--accent-color);
  }
  
  .contact-section a {
    color: var(--accent-color);
  }
  
  .contact-section a:hover {
    color: #fff;
  }
  
  .last-updated {
    background: var(--accent-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
  }

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

.faq-section h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(301, 53%, 34%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

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

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #ffffff;
}

.accordion-button {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: hsl(301, 53%, 34%);
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  border: none;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, hsl(301, 53%, 34%) 0%, hsl(301, 53%, 19%) 100%);
  color: #ffffff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem hsla(301, 53%, 59%, 0.25);
  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='%23722960'%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;
}

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

.accordion-body {
  padding: 1.5rem;
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  background: #ffffff;
}

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

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

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

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

.accordion-body strong {
  color: hsl(301, 53%, 34%);
  font-weight: 600;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-section h2 {
    font-size: 2rem;
  }
  
  .accordion-button {
    font-size: 1rem;
    padding: 1rem;
  }
  
  .accordion-body {
    padding: 1rem;
    font-size: 0.95rem;
  }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(301, 53%, 34%) 0%, hsl(301, 53%, 19%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/garden-pattern.png');
    opacity: 0.05;
    pointer-events: none;
}

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

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

.newsletter-section .lead-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    color: #f8f9fa;
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

.benefit-item i {
    color: hsl(301, 53%, 59%);
    font-size: 1.3rem;
}

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

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

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333333;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: #666666;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: hsl(301, 53%, 59%);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(179, 81, 148, 0.1);
}

.newsletter-form button[type="submit"] {
    padding: 16px 40px;
    background: hsl(301, 53%, 59%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button[type="submit"]:hover {
    background: hsl(301, 53%, 54%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-form button[type="submit"]:active {
    transform: translateY(0);
}

.privacy-note {
    text-align: center;
    margin-top: 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.privacy-note a {
    color: hsl(301, 53%, 59%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-note a:hover {
    color: hsl(301, 53%, 69%);
    text-decoration: underline;
}

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

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

    .newsletter-section .lead-text {
        font-size: 1rem;
    }

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

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

    .newsletter-form input[type="email"] {
        width: 100%;
        min-width: 100%;
    }

    .newsletter-form button[type="submit"] {
        width: 100%;
    }
}

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

    .benefit-item {
        font-size: 0.95rem;
    }
}

.hero-section {
    background-color: #ffffff;
    padding: 80px 0;
    overflow: hidden;
  }

  .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
  }

  .hero-text-wrapper {
    position: relative;
    z-index: 2;
    padding-right: 20px;
  }

  .hero-section h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: hsl(301, 53%, 34%);
    margin-bottom: 25px;
    line-height: 1.4;
  }

  .hero-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
  }

  .hero-advantages {
    list-style: none;
    padding: 0;
    margin: 35px 0;
  }

  .hero-advantages li {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    color: #333;
    padding: 12px 0 12px 40px;
    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(301, 53%, 59%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
  }

  .hero-btn-primary {
    font-family: 'Roboto', sans-serif;
    background-color: hsl(301, 53%, 34%);
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .hero-btn-primary:hover {
    background-color: hsl(301, 53%, 19%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .hero-btn-secondary {
    font-family: 'Roboto', sans-serif;
    background-color: transparent;
    color: hsl(301, 53%, 34%);
    padding: 16px 40px;
    border: 2px solid hsl(301, 53%, 34%);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .hero-btn-secondary:hover {
    background-color: hsl(301, 53%, 34%);
    color: #ffffff;
    transform: translateY(-2px);
  }

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

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

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

  @media (max-width: 992px) {
    .hero-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .hero-text-wrapper {
      padding-right: 0;
    }

    .hero-image-wrapper img {
      transform: translateX(0);
    }

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

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

    .hero-decorative-element {
      width: 200px;
      height: 200px;
      top: -30px;
      right: -50px;
    }
  }

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

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

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

    .hero-buttons {
      flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
      width: 100%;
      text-align: center;
    }

    .hero-advantages li {
      font-size: 1rem;
      padding-left: 35px;
    }
  }

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

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

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

.services-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: hsl(301, 53%, 34%);
  border-radius: 2px;
}

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

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(125, 41, 102, 0.2);
  border-color: hsl(301, 53%, 59%);
}

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

.service-card:hover .service-icon {
  background: linear-gradient(135deg, hsl(301, 53%, 59%) 0%, hsl(301, 53%, 34%) 100%);
  transform: rotate(360deg);
}

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

.service-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 18px;
  text-align: center;
}

.service-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-price {
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: hsl(301, 53%, 34%);
  text-align: center;
  margin-bottom: 20px;
}

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

.service-terms {
  font-size: 0.85rem;
  color: #777;
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
}

.btn-service {
  background: hsl(301, 53%, 34%);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: auto;
}

.btn-service:hover {
  background: hsl(301, 53%, 19%);
  color: #ffffff;
  transform: scale(1.02);
}

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

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

  .service-card {
    padding: 30px 20px;
  }
}

.offer-section {
  background: linear-gradient(135deg, hsl(301, 53%, 34%) 0%, hsl(301, 53%, 19%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.offer-badge {
  display: inline-block;
  background: hsl(301, 53%, 59%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

.offer-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #f8f9fa;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
}

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

.deadline-wrapper {
  background: linear-gradient(135deg, hsl(301, 53%, 59%) 0%, hsl(301, 53%, 34%) 100%);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin-bottom: 40px;
}

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

.deadline-date {
  font-family: 'Roboto', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(301, 53%, 34%);
  font-size: 24px;
}

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

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

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

.benefit-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, hsl(301, 53%, 34%) 0%, hsl(301, 53%, 59%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.discount-badge {
  background: hsl(301, 53%, 59%);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 56px;
  font-weight: 700;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.discount-text {
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
}

.offer-cta {
  text-align: center;
}

.offer-btn {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, hsl(301, 53%, 34%) 0%, hsl(301, 53%, 19%) 100%);
  border: none;
  padding: 18px 60px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.offer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, hsl(301, 53%, 39%) 0%, hsl(301, 53%, 24%) 100%);
  color: #fff;
}

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

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

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

  .offer-card {
    padding: 30px 20px;
  }

  .deadline-date {
    font-size: 32px;
    flex-direction: column;
  }

  .discount-badge {
    font-size: 42px;
    padding: 20px;
  }

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

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

.testimonials-section h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(301, 53%, 34%);
  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 2px 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(301, 53%, 59%);
}

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

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(301, 53%, 59%), hsl(301, 53%, 34%));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

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

.testimonial-name {
  font-weight: 700;
  color: #222;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonial-location {
  color: #666;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

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

.star {
  color: #ffc107;
  font-size: 1.2rem;
}

.star.empty {
  color: #ddd;
}

.testimonial-text {
  color: #333;
  line-height: 1.7;
  flex-grow: 1;
  font-size: 1rem;
}

.testimonial-text.short {
  font-size: 1.05rem;
  font-weight: 500;
}

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

.testimonial-date {
  color: #999;
  font-size: 0.85rem;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.testimonial-highlight {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  border: 2px solid hsl(301, 53%, 59%);
}

.testimonial-highlight .testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  color: #222;
}

.rating-summary {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-bottom: 50px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.rating-summary .average {
  font-size: 3rem;
  font-weight: 700;
  color: hsl(301, 53%, 34%);
  margin-bottom: 10px;
}

.rating-summary .total {
  color: #666;
  font-size: 1.1rem;
}

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

#credentials {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
    position: relative;
  }

  #credentials .section-title {
    font-family: 'Roboto', sans-serif;
    color: hsl(301, 53%, 34%);
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
  }

  #credentials .section-subtitle {
    font-family: 'Open Sans', sans-serif;
    color: #666;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  #credentials .credential-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }

  #credentials .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: hsl(301, 53%, 59%);
  }

  #credentials .credential-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #ffffff;
  }

  #credentials .credential-title {
    font-family: 'Roboto', sans-serif;
    color: #222;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  #credentials .credential-text {
    font-family: 'Open Sans', sans-serif;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
  }

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

    #credentials .section-title {
      font-size: 1.8rem;
    }

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

    #credentials .credential-icon {
      width: 50px;
      height: 50px;
      font-size: 24px;
    }
  }

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

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

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

  .blog-preview-section .section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
  }

  .blog-preview-section .section-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .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(0,0,0,0.12);
  }

  .blog-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
  }

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

  .blog-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    color: #777;
  }

  .blog-card-date {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .blog-card-reading-time {
    display: flex;
    align-items: center;
    gap: 5px;
  }

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

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

  .blog-card-title a:hover {
    color: hsl(301, 53%, 34%);
  }

  .blog-card-excerpt {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .blog-card-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: hsl(301, 53%, 34%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  .blog-card-link:hover {
    color: hsl(301, 53%, 19%);
    gap: 12px;
  }

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

  .btn-view-all {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 40px;
    background: hsl(301, 53%, 34%);
    color: #ffffff;
    border: 2px solid hsl(301, 53%, 34%);
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .btn-view-all:hover {
    background: hsl(301, 53%, 19%);
    border-color: hsl(301, 53%, 19%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

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

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

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

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

    .blog-card-title {
      font-size: 1.2rem;
    }

    .blog-preview-section .section-header {
      margin-bottom: 40px;
    }

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

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

.disclaimer-section .section-icon {
  font-size: 3.5rem;
  color: hsl(301, 53%, 34%);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.disclaimer-section h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 2rem;
  text-align: center;
}

.disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(301, 53%, 34%);
}

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

.disclaimer-content p:last-child {
  margin-bottom: 0;
}

.disclaimer-highlight {
  background: #f8f4fb;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  border: 1px solid hsl(301, 53%, 85%);
}

.disclaimer-highlight p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #555;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-section h2 {
    font-size: 2rem;
  }
  
  .disclaimer-content {
    padding: 2rem 1.5rem;
  }
  
  .disclaimer-content p {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .disclaimer-section .section-icon {
    font-size: 2.5rem;
  }
  
  .disclaimer-section h2 {
    font-size: 1.75rem;
  }
  
  .disclaimer-content {
    padding: 1.5rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(301, 53%, 34%);
    --secondary-color: hsl(301, 53%, 19%);
    --accent-color: hsl(301, 53%, 59%);
  }
  
  .policy-content {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-top: 2.5rem;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 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;
  }
  
  .info-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    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: var(--accent-color);
    font-weight: 600;
  }
  
  .info-box a:hover {
    color: white;
  }
  
  .highlight-section {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
  }
  
  .last-updated {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 2rem;
  }

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(301, 53%, 34%);
    --secondary-color: hsl(301, 53%, 19%);
    --accent-color: hsl(301, 53%, 59%);
  }
  
  .policy-content {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    border-left: 5px solid var(--accent-color);
    padding-left: 1rem;
    margin-top: 2.5rem;
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 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;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .info-box {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.05) 0%, rgba(156, 39, 176, 0.1) 100%);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }
  
  .contact-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
  }
  
  .contact-section h2 {
    color: white;
    border-left-color: var(--accent-color);
  }
  
  .contact-section a {
    color: var(--accent-color);
  }
  
  .contact-section a:hover {
    color: white;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--primary-color));
    margin: 3rem 0;
    border: none;
  }