:root {
            --primary-color: hsl(29, 56%, 36%);
            --secondary-color: hsl(29, 56%, 21%);
            --accent-color: hsl(29, 56%, 61%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
        }
        
        .navbar {
            background-color: #ffffff;
            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.5rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 600;
            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(166, 97, 50, 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%28166, 97, 50, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

  #about .section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(29, 56%, 21%);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }

  #about .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: hsl(29, 56%, 61%);
  }

  #about .section-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
  }

  #about .content-block {
    margin-bottom: 3rem;
  }

  #about .content-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
  }

  #about .content-text p {
    margin-bottom: 1.2rem;
  }

  #about .highlight-box {
    background: hsl(29, 56%, 36%);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
  }

  #about .highlight-box h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
  }

  #about .highlight-box p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #f8f9fa;
    margin-bottom: 0;
    line-height: 1.7;
  }

  #about .values-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
  }

  #about .values-list li {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #333;
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
  }

  #about .values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(29, 56%, 61%);
    font-weight: bold;
    font-size: 1.3rem;
  }

  #about .about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
  }

  #about .stats-box {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    border-left: 4px solid hsl(29, 56%, 61%);
  }

  #about .stats-box h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    color: hsl(29, 56%, 36%);
    margin-bottom: 0.5rem;
  }

  #about .stats-box p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
  }

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

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

    #about .about-image {
      height: 300px;
    }
  }

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

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

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

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

  .filter-btn {
    font-family: 'Open Sans', sans-serif;
    padding: 10px 25px;
    border: 2px solid hsl(29, 56%, 36%);
    background: transparent;
    color: hsl(29, 56%, 36%);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(29, 56%, 36%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

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

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

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

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

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

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

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

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-category {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: hsl(29, 56%, 61%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .portfolio-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(29, 56%, 21%);
    margin-bottom: 12px;
  }

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

  .portfolio-overlay .portfolio-title {
    color: #fff;
    margin-bottom: 10px;
  }

  .portfolio-overlay .portfolio-category {
    color: hsl(29, 56%, 61%);
  }

  .view-details-btn {
    font-family: 'Open Sans', sans-serif;
    display: inline-block;
    padding: 8px 20px;
    background: hsl(29, 56%, 36%);
    color: #fff;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
    border: none;
  }

  .view-details-btn:hover {
    background: hsl(29, 56%, 61%);
    transform: translateX(5px);
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(29, 56%, 36%) 0%, hsl(29, 56%, 21%) 100%);
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 25px;
  }

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

  .modal-body {
    padding: 30px;
  }

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

  .modal-category {
    font-family: 'Open Sans', sans-serif;
    color: hsl(29, 56%, 36%);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

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

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

  .project-details h5 {
    font-family: 'Roboto', sans-serif;
    color: hsl(29, 56%, 21%);
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

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

  .project-details li {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
  }

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

  .project-details strong {
    color: hsl(29, 56%, 21%);
    font-weight: 600;
  }

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

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

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

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

    .filter-buttons {
      gap: 10px;
    }

    .filter-btn {
      padding: 8px 18px;
      font-size: 0.9rem;
    }

    .portfolio-image {
      height: 250px;
    }
  }

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

  #advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(29, 56%, 36%), hsl(29, 56%, 61%));
  }

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

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

  .advantages-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(29, 56%, 61%);
  }

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

  .advantage-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 4px 15px 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(29, 56%, 36%), hsl(29, 56%, 61%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: hsl(29, 56%, 61%);
  }

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

  .advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(29, 56%, 36%), hsl(29, 56%, 61%));
    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);
  }

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

  .advantage-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(29, 56%, 21%);
    margin-bottom: 15px;
    text-align: center;
  }

  .advantage-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
    margin: 0;
  }

  .advantages-row {
    margin-bottom: 30px;
  }

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

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

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

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

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

    .advantage-icon i {
      font-size: 28px;
    }

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

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

    .advantage-card {
      padding: 25px 15px;
    }
  }

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

.statistics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(29, 56%, 36%), hsl(29, 56%, 61%), hsl(29, 56%, 36%));
}

.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(29, 56%, 21%);
  margin-bottom: 15px;
  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(29, 56%, 61%);
}

.statistics-section .section-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin-top: 25px;
}

.stat-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 20px;
  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;
  position: relative;
  overflow: hidden;
}

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

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: hsl(29, 56%, 61%);
}

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

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, hsl(29, 56%, 36%), hsl(29, 56%, 61%));
  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: 2rem;
  color: #ffffff;
}

.stat-number {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(29, 56%, 36%);
  margin-bottom: 10px;
  line-height: 1.2;
}

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

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

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

.stat-number {
  animation: countUp 0.8s ease-out;
}

.stat-card:nth-child(1) .stat-number { animation-delay: 0.1s; }
.stat-card:nth-child(2) .stat-number { animation-delay: 0.2s; }
.stat-card:nth-child(3) .stat-number { animation-delay: 0.3s; }
.stat-card:nth-child(4) .stat-number { animation-delay: 0.4s; }
.stat-card:nth-child(5) .stat-number { animation-delay: 0.5s; }
.stat-card:nth-child(6) .stat-number { animation-delay: 0.6s; }
.stat-card:nth-child(7) .stat-number { animation-delay: 0.7s; }
.stat-card:nth-child(8) .stat-number { animation-delay: 0.8s; }
.stat-card:nth-child(9) .stat-number { animation-delay: 0.9s; }
.stat-card:nth-child(10) .stat-number { animation-delay: 1s; }
.stat-card:nth-child(11) .stat-number { animation-delay: 1.1s; }
.stat-card:nth-child(12) .stat-number { animation-delay: 1.2s; }
.stat-card:nth-child(13) .stat-number { animation-delay: 1.3s; }
.stat-card:nth-child(14) .stat-number { animation-delay: 1.4s; }

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

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

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

  .stat-card {
    padding: 30px 15px;
  }
}

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

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

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

footer {
  background: linear-gradient(135deg, hsl(29, 56%, 21%) 0%, hsl(29, 56%, 36%) 100%);
  color: #ffffff;
  padding: 60px 0 0;
  font-family: 'Open Sans', sans-serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 1.25rem;
  color: #ffffff;
  letter-spacing: 0.5px;
}

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

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

footer a:hover {
  color: hsl(29, 56%, 61%);
  padding-left: 5px;
}

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

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

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

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

.footer-bottom {
  background: hsl(29, 56%, 21%);
  padding: 25px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-policies {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.footer-policies a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  padding: 0;
}

.footer-policies a:hover {
  color: hsl(29, 56%, 61%);
  padding-left: 0;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 30px 0;
  border-top: 4px solid hsl(29, 56%, 36%);
  animation: slideUp 0.5s ease;
}

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

.cookie-content h4 {
  font-family: 'Roboto', sans-serif;
  color: hsl(29, 56%, 21%);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.cookie-content p {
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #dee2e6;
}

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

.cookie-category-info h6 {
  font-family: 'Roboto', sans-serif;
  color: hsl(29, 56%, 21%);
  margin: 0 0 5px 0;
  font-size: 1rem;
  font-weight: 600;
}

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

.cookie-category-status {
  font-size: 0.85rem;
  color: #28a745;
  font-weight: 600;
}

.cookie-category-status.required {
  color: hsl(29, 56%, 36%);
}

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

.cookie-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-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(29, 56%, 36%);
  border: 2px solid hsl(29, 56%, 36%);
}

.cookie-btn-manage:hover {
  background: hsl(29, 56%, 36%);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 0;
    text-align: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-policies {
    flex-direction: column;
    gap: 10px;
  }

  #cookieNotice {
    padding: 20px 0;
  }

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

  .cookie-btn {
    width: 100%;
  }

  .cookie-category {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

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

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Open Sans, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(29, 56%, 36%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Roboto, sans-serif; color: hsl(29, 56%, 21%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(29, 56%, 36%); }
.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(29, 56%, 21%); font-family: Roboto, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(29, 56%, 21%); font-family: Roboto, sans-serif; }
.blog-article a { color: hsl(29, 56%, 36%); }
.blog-article a:hover { color: hsl(29, 56%, 61%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(29, 56%, 36%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

  #contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(29, 56%, 36%) 0%, hsl(29, 56%, 61%) 100%);
  }

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

  .contact-header h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(29, 56%, 21%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  .contact-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(29, 56%, 36%);
  }

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

  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
  }

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

  .contact-form-wrapper h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    color: hsl(29, 56%, 21%);
    margin-bottom: 25px;
    font-weight: 600;
  }

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

  .contact-form .form-control,
  .contact-form .form-control:focus {
    font-family: 'Open Sans', sans-serif;
    border: 2px solid #e0e0e0;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #333;
    background: #fff;
  }

  .contact-form .form-control:focus {
    border-color: hsl(29, 56%, 36%);
    box-shadow: 0 0 0 0.2rem rgba(166, 100, 61, 0.15);
    outline: none;
  }

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

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

  .contact-form .btn-submit:hover {
    background: hsl(29, 56%, 21%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(166, 100, 61, 0.3);
  }

  .contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .contact-info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border-left: 4px solid hsl(29, 56%, 36%);
    transition: all 0.3s ease;
  }

  .contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  }

  .contact-info-card h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    color: hsl(29, 56%, 21%);
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .contact-info-card h4 i {
    color: hsl(29, 56%, 36%);
    font-size: 1.4rem;
  }

  .contact-info-card p {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    margin: 0;
    line-height: 1.8;
    font-size: 1rem;
  }

  .contact-info-card a {
    color: hsl(29, 56%, 36%);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .contact-info-card a:hover {
    color: hsl(29, 56%, 21%);
    text-decoration: underline;
  }

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

  .working-hours-list li {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
  }

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

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

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

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

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

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

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

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

    .contact-form-wrapper h3 {
      font-size: 1.5rem;
    }

    .contact-form-wrapper {
      padding: 20px;
    }

    .contact-info-card {
      padding: 20px;
    }
  }

@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(29, 56%, 36%);
    --secondary-color: hsl(29, 56%, 21%);
    --accent-color: hsl(29, 56%, 61%);
  }
  
  .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;
    color: var(--secondary-color);
    font-weight: 700;
    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(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px 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;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .info-box {
    background-color: hsl(29, 56%, 95%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }
  
  .last-updated {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 0.9rem;
  }
  
  .contact-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
  }
  
  .contact-section h3 {
    color: white;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
  }
  
  .contact-section a {
    color: var(--accent-color);
  }
  
  .contact-section a:hover {
    color: white;
  }
  
  .cookie-table {
    margin: 2rem 0;
  }
  
  .cookie-table table {
    border-color: var(--accent-color);
  }
  
  .cookie-table thead {
    background-color: var(--primary-color);
    color: white;
  }
  
  .cookie-table tbody tr:hover {
    background-color: hsl(29, 56%, 97%);
  }

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

.faq-section h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(29, 56%, 21%);
  margin-bottom: 20px;
  text-align: center;
}

.faq-intro {
  text-align: center;
  color: #333;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

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

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

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

.accordion-button {
  font-family: 'Roboto', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: hsl(29, 56%, 21%);
  background: #ffffff;
  padding: 20px 25px;
  border: none;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: hsl(29, 56%, 36%);
  color: #ffffff;
  box-shadow: none;
}

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

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23744b2a'%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: 25px;
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  background: #fafafa;
}

.accordion-body p {
  margin-bottom: 12px;
}

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

.accordion-body strong {
  color: hsl(29, 56%, 21%);
  font-weight: 600;
}

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

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

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

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(29, 56%, 36%) 0%, hsl(29, 56%, 21%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M20 80c10-5 15-15 20-25 5-10 10-20 20-20s15 10 20 20c5 10 10 20 20 25" stroke="rgba(255,255,255,0.05)" stroke-width="2" fill="none"/></svg>') repeat;
  opacity: 0.3;
}

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

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  backdrop-filter: blur(10px);
}

.newsletter-icon svg {
  width: 35px;
  height: 35px;
  fill: #fff;
}

.newsletter-section h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.newsletter-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.form-group-newsletter {
  position: relative;
  margin-bottom: 0;
}

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

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

.newsletter-input:focus {
  outline: none;
  border-color: hsl(29, 56%, 61%);
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

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

.newsletter-submit {
  padding: 16px 40px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: hsl(29, 56%, 61%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.newsletter-submit:hover {
  background: hsl(29, 56%, 51%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
}

.benefit-icon {
  width: 22px;
  height: 22px;
  background: hsl(29, 56%, 61%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}

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

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

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

  .newsletter-input-wrapper {
    flex-direction: column;
    gap: 12px;
  }

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

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

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

  .newsletter-icon {
    width: 60px;
    height: 60px;
  }

  .newsletter-icon svg {
    width: 30px;
    height: 30px;
  }
}

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

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

.hero-section h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: hsl(29, 56%, 21%);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: hsl(29, 56%, 36%);
  margin-bottom: 2rem;
}

.hero-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

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

.hero-advantages li {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.05rem;
  color: #222;
  padding: 0.75rem 0;
  padding-left: 2.5rem;
  position: relative;
}

.hero-advantages li i {
  position: absolute;
  left: 0;
  top: 0.9rem;
  color: hsl(29, 56%, 36%);
  font-size: 1.3rem;
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

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

.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary-hero {
  font-family: 'Open Sans', sans-serif;
  background-color: hsl(29, 56%, 36%);
  color: #fff;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary-hero:hover {
  background-color: hsl(29, 56%, 21%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-secondary-hero {
  font-family: 'Open Sans', sans-serif;
  background-color: transparent;
  color: hsl(29, 56%, 36%);
  padding: 1rem 2.5rem;
  border: 2px solid hsl(29, 56%, 36%);
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
  background-color: hsl(29, 56%, 36%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 2.8rem;
  }
  
  .hero-section h2 {
    font-size: 1.5rem;
  }
  
  .hero-image-wrapper {
    margin-top: 3rem;
  }
  
  .hero-image-wrapper img {
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 50px 0;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .hero-section h2 {
    font-size: 1.3rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    text-align: center;
  }
}

.offer-section {
  background: linear-gradient(135deg, hsl(29, 56%, 36%) 0%, hsl(29, 56%, 21%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(29, 56%, 61%);
  opacity: 0.08;
  border-radius: 50%;
}

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

.offer-badge {
  display: inline-block;
  background: hsl(29, 56%, 61%);
  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-heading {
  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.7;
  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.3);
  margin-top: 40px;
}

.deadline-block {
  background: linear-gradient(135deg, hsl(29, 56%, 61%) 0%, hsl(29, 56%, 36%) 100%);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
}

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

.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: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  margin-bottom: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: hsl(29, 56%, 96%);
  transform: translateX(5px);
}

.benefit-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, hsl(29, 56%, 36%) 0%, hsl(29, 56%, 21%) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 20px;
}

.benefit-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding-top: 5px;
}

.discount-highlight {
  background: hsl(29, 56%, 61%);
  color: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 40px;
}

.discount-text {
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

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

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

.offer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #fff;
}

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

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

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

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

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

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

  .benefit-item {
    padding: 15px;
  }

  .offer-btn {
    padding: 15px 35px;
    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(29, 56%, 21%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.testimonials-section .lead-text {
  color: #555;
  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(29, 56%, 61%);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 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(29, 56%, 36%) 0%, hsl(29, 56%, 61%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-family: 'Roboto', sans-serif;
  color: hsl(29, 56%, 21%);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-location {
  color: #777;
  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.1rem;
}

.star.empty {
  color: #ddd;
}

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

.testimonial-text strong {
  color: hsl(29, 56%, 36%);
  font-weight: 600;
}

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(29, 56%, 36%) 0%, hsl(29, 56%, 21%) 100%);
  border-left: 4px solid hsl(29, 56%, 61%);
}

.testimonial-card.featured .testimonial-info h4,
.testimonial-card.featured .testimonial-text,
.testimonial-card.featured .testimonial-date {
  color: #ffffff;
}

.testimonial-card.featured .testimonial-location {
  color: rgba(255,255,255,0.8);
}

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

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

.testimonial-card.compact .testimonial-info h4 {
  font-size: 1.1rem;
}

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

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

#credentials {
    padding: 60px 0;
    background-color: #f8f9fa;
    font-family: 'Open Sans', sans-serif;
  }

  #credentials h2 {
    font-family: 'Roboto', sans-serif;
    color: hsl(29, 56%, 21%);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
  }

  .credential-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
  }

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

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

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

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

    #credentials h2 {
      font-size: 1.5rem;
      margin-bottom: 30px;
    }

    .credential-card {
      padding: 20px 10px;
    }

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

.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(29, 56%, 36%);
    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: 12px;
    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(0,0,0,0.15);
    border-color: hsl(29, 56%, 61%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(29, 56%, 36%) 0%, hsl(29, 56%, 21%) 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(29, 56%, 61%) 0%, hsl(29, 56%, 36%) 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: 15px;
    text-align: center;
}

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

.service-price {
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: hsl(29, 56%, 36%);
    text-align: center;
    margin-bottom: 15px;
}

.service-terms {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    font-style: italic;
}

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

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

.blog-preview h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(29, 56%, 21%);
  margin-bottom: 1rem;
  text-align: center;
}

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

.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  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;
}

.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-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #777;
}

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

.blog-meta-item svg {
  width: 16px;
  height: 16px;
  fill: hsl(29, 56%, 36%);
}

.blog-card-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(29, 56%, 21%);
  margin-bottom: 15px;
  line-height: 1.4;
}

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

.blog-card-title a:hover {
  color: hsl(29, 56%, 36%);
}

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

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: hsl(29, 56%, 36%);
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.blog-read-more:hover {
  gap: 12px;
  color: hsl(29, 56%, 21%);
}

.blog-read-more svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

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

.btn-view-all {
  display: inline-block;
  padding: 15px 40px;
  background: hsl(29, 56%, 36%);
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-view-all:hover {
  background: hsl(29, 56%, 21%);
  color: #ffffff;
  transform: translateY(-2px);
}

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

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

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

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

  .blog-card-body {
    padding: 25px;
  }

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

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

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

.disclaimer-icon {
  width: 70px;
  height: 70px;
  background: hsl(29, 56%, 36%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.disclaimer-icon i {
  font-size: 36px;
  color: #ffffff;
}

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

.disclaimer-content {
  background: #ffffff;
  padding: 50px 45px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(29, 56%, 36%);
}

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

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

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

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

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

  .disclaimer-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
  }

  .disclaimer-icon i {
    font-size: 30px;
  }
}

@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(29, 56%, 36%);
    --secondary-color: hsl(29, 56%, 21%);
    --accent-color: hsl(29, 56%, 61%);
  }
  
  .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;
    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(--accent-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(--primary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    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;
  }
  
  .policy-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 10px;
  }
  
  .policy-header h1 {
    color: white;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 1rem;
  }
  
  .last-updated {
    background-color: #f8f9fa;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    border-radius: 5px;
  }
  
  .contact-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--accent-color);
    margin-top: 2rem;
  }
  
  .contact-box h3 {
    color: var(--secondary-color);
    margin-top: 0;
  }
  
  .highlight-box {
    background-color: rgba(166, 103, 52, 0.08);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
  }

@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(29, 56%, 36%);
    --secondary-color: hsl(29, 56%, 21%);
    --accent-color: hsl(29, 56%, 61%);
  }
  
  .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;
    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(--accent-color);
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 15px;
  }
  
  .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(--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(--primary-color);
    font-weight: 600;
  }
  
  .info-box {
    background-color: hsl(29, 56%, 95%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
  }
  
  .contact-section a {
    color: var(--accent-color);
  }
  
  .contact-section a:hover {
    color: white;
  }
  
  .effective-date {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }