:root {
            --primary-color: hsl(4, 38%, 42%);
            --secondary-color: hsl(4, 38%, 27%);
            --accent-color: hsl(4, 38%, 67%);
        }
        
        body {
            font-family: 'Nunito', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Nunito', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(139, 69, 58, 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(139, 69, 58, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

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

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

  #about .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(4, 38%, 27%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  #about .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: hsl(4, 38%, 42%);
  }

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

  #about .story-block {
    background-color: #f8f9fa;
    padding: 50px 0;
    margin-bottom: 60px;
  }

  #about .story-content {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  #about .story-image {
    flex: 0 0 45%;
  }

  #about .story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  #about .story-text {
    flex: 1;
  }

  #about .story-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(4, 38%, 27%);
    margin-bottom: 25px;
  }

  #about .story-text p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  #about .mission-vision-section {
    margin-bottom: 60px;
  }

  #about .mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  #about .mission-vision-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
  }

  #about .mission-vision-card:hover {
    border-color: hsl(4, 38%, 67%);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
  }

  #about .mission-vision-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: hsl(4, 38%, 42%);
    margin-bottom: 20px;
  }

  #about .mission-vision-card p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin: 0;
  }

  #about .values-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-bottom: 60px;
  }

  #about .values-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: hsl(4, 38%, 27%);
    text-align: center;
    margin-bottom: 50px;
  }

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

  #about .value-item {
    background-color: #ffffff;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }

  #about .value-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
  }

  #about .value-icon {
    width: 70px;
    height: 70px;
    background-color: hsl(4, 38%, 67%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #ffffff;
  }

  #about .value-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(4, 38%, 27%);
    margin-bottom: 15px;
  }

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

  #about .expertise-block {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: row-reverse;
  }

  #about .expertise-image {
    flex: 0 0 45%;
  }

  #about .expertise-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  #about .expertise-text {
    flex: 1;
  }

  #about .expertise-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(4, 38%, 27%);
    margin-bottom: 25px;
  }

  #about .expertise-text p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  #about .expertise-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
  }

  #about .highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  #about .highlight-icon {
    width: 50px;
    height: 50px;
    background-color: hsl(4, 38%, 42%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    flex-shrink: 0;
  }

  #about .highlight-text {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
  }

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

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

    #about .story-content,
    #about .expertise-block {
      flex-direction: column;
    }

    #about .story-image,
    #about .expertise-image {
      flex: 0 0 100%;
    }

    #about .mission-vision-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    #about .expertise-highlights {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    #about .section-title {
      font-size: 1.8rem;
    }

    #about .story-image img,
    #about .expertise-image img {
      height: 300px;
    }

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

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

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

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

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

.filter-btn {
    padding: 10px 25px;
    background: #fff;
    border: 2px solid hsl(4, 38%, 42%);
    color: hsl(4, 38%, 42%);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: hsl(4, 38%, 42%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

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

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

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

.portfolio-content {
    padding: 25px;
    position: relative;
}

.portfolio-category {
    display: inline-block;
    padding: 5px 15px;
    background: hsl(4, 38%, 67%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.portfolio-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

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

.view-details {
    color: hsl(4, 38%, 42%);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.view-details:hover {
    gap: 12px;
    color: hsl(4, 38%, 27%);
}

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

.modal-header {
    background: linear-gradient(135deg, hsl(4, 38%, 42%) 0%, hsl(4, 38%, 27%) 100%);
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
}

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

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

.modal-body {
    padding: 30px;
}

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

.modal-category-badge {
    display: inline-block;
    padding: 8px 20px;
    background: hsl(4, 38%, 67%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    margin-bottom: 20px;
}

.modal-body h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin-top: 25px;
    margin-bottom: 15px;
}

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

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

.modal-body ul li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.modal-body ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(4, 38%, 42%);
    font-weight: bold;
}

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

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

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

    .filter-buttons {
        gap: 10px;
    }

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

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

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

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

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

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

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

  #advantages .advantage-card:hover {
    transform: translateY(-10px);
    border-color: hsl(4, 38%, 42%);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  }

  #advantages .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(4, 38%, 42%) 0%, hsl(4, 38%, 27%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
  }

  #advantages .advantage-card:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(4, 38%, 27%) 0%, hsl(4, 38%, 42%) 100%);
  }

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

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

  #advantages .advantage-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 0;
  }

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

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

    #advantages .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: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(4, 38%, 67%, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.statistics-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(4, 38%, 42%, 0.05);
    border-radius: 50%;
    z-index: 0;
}

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

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

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

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

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

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

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

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

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: hsl(4, 38%, 67%);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, hsl(4, 38%, 42%) 0%, hsl(4, 38%, 27%) 100%);
    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);
    background: linear-gradient(135deg, hsl(4, 38%, 67%) 0%, hsl(4, 38%, 42%) 100%);
}

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

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(4, 38%, 42%);
    margin-bottom: 10px;
    display: block;
    line-height: 1.2;
}

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

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

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

.stat-card {
    animation: countUp 0.6s ease forwards;
}

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

@media (max-width: 768px) {
    .statistics-header h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .statistics-header {
        margin-bottom: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

footer {
  background: linear-gradient(135deg, hsl(4, 38%, 27%) 0%, hsl(4, 38%, 42%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Nunito', sans-serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ffffff;
}

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

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

footer a:hover {
  color: hsl(4, 38%, 67%);
}

.footer-description {
  margin-bottom: 25px;
  max-width: 350px;
}

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

.footer-contact-item i {
  margin-right: 10px;
  margin-top: 3px;
  color: hsl(4, 38%, 67%);
}

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

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

.footer-links a {
  display: inline-block;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: hsl(4, 38%, 67%);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

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

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #e0e0e0;
}

.business-hours {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
  margin-top: 10px;
}

.business-hours p {
  margin: 5px 0;
  font-size: 0.9rem;
}

#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: 25px 0;
  border-top: 3px solid hsl(4, 38%, 42%);
  font-family: 'Nunito', sans-serif;
}

#cookieNotice h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

#cookieNotice p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.cookie-category {
  margin-bottom: 12px;
  padding: 10px;
  background: #ffffff;
  border-radius: 5px;
  border-left: 3px solid hsl(4, 38%, 42%);
}

.cookie-category strong {
  color: #222;
  font-size: 1rem;
  display: block;
  margin-bottom: 5px;
}

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

.cookie-category.required {
  border-left-color: #28a745;
}

.cookie-category.optional {
  border-left-color: hsl(4, 38%, 67%);
}

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

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

.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(4, 38%, 42%);
  border: 2px solid hsl(4, 38%, 42%);
}

.cookie-btn-manage:hover {
  background: hsl(4, 38%, 42%);
  color: #ffffff;
  transform: translateY(-2px);
}

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

  footer h5 {
    margin-top: 30px;
    font-size: 1.1rem;
  }

  footer h5:first-child {
    margin-top: 0;
  }

  .footer-description {
    max-width: 100%;
  }

  #cookieNotice {
    padding: 20px 0;
  }

  #cookieNotice h4 {
    font-size: 1.2rem;
  }

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

  .cookie-btn {
    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: Nunito, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(4, 38%, 42%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Poppins, sans-serif; color: hsl(4, 38%, 27%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(4, 38%, 42%); }
.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(4, 38%, 27%); font-family: Poppins, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(4, 38%, 27%); font-family: Poppins, sans-serif; }
.blog-article a { color: hsl(4, 38%, 42%); }
.blog-article a:hover { color: hsl(4, 38%, 67%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(4, 38%, 42%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

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

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

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

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

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

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

  .contact-info-wrapper h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(4, 38%, 42%);
    margin-bottom: 30px;
  }

  .contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .contact-info-item:hover {
    background: hsl(4, 38%, 67%);
    transform: translateX(5px);
  }

  .contact-info-item:hover .contact-icon {
    background: #ffffff;
    color: hsl(4, 38%, 42%);
  }

  .contact-info-item:hover .contact-details h4,
  .contact-info-item:hover .contact-details p,
  .contact-info-item:hover .contact-details a {
    color: #ffffff;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    background: hsl(4, 38%, 42%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

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

  .contact-details h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
  }

  .contact-details p,
  .contact-details a {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #555;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-details a:hover {
    color: hsl(4, 38%, 42%);
  }

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

  .contact-form-wrapper h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(4, 38%, 42%);
    margin-bottom: 30px;
  }

  .form-group {
    margin-bottom: 25px;
  }

  .form-group label {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
  }

  .form-group label span {
    color: hsl(4, 38%, 42%);
  }

  .form-control {
    width: 100%;
    padding: 15px 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #333;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .form-control:focus {
    outline: none;
    background: #ffffff;
    border-color: hsl(4, 38%, 42%);
    box-shadow: 0 0 0 4px rgba(139, 69, 59, 0.1);
  }

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

  .submit-btn {
    width: 100%;
    padding: 16px 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: hsl(4, 38%, 42%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
  }

  .submit-btn:hover {
    background: hsl(4, 38%, 27%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 59, 0.3);
  }

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

  .hours-list li {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
  }

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

  .hours-list li strong {
    color: #222;
    font-weight: 600;
    display: inline-block;
    min-width: 100px;
  }

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

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

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

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

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

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

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

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

    .contact-info-item {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }

    .contact-icon {
      margin-right: 0;
      margin-bottom: 15px;
    }

    .hours-list li strong {
      display: block;
      margin-bottom: 5px;
    }
  }

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

  :root {
    --primary-color: hsl(4, 38%, 42%);
    --secondary-color: hsl(4, 38%, 27%);
    --accent-color: hsl(4, 38%, 67%);
  }

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

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

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

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

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

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

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

  .policy-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
  }

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

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

  .policy-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
  }

  .policy-header h1 {
    color: white;
    border: none;
    margin: 0;
    padding: 0;
  }

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

  .contact-info {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }

  .contact-info h3 {
    color: var(--secondary-color);
    margin-top: 0;
  }

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

  .cookie-type {
    background-color: #fff;
    border: 2px solid var(--accent-color);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .cookie-type:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
  }

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

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

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

  .faq-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(4, 38%, 27%);
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

  .faq-accordion .accordion-item {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
  }

  .faq-accordion .accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
  }

  .faq-accordion .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: hsl(4, 38%, 27%);
    background: #fff;
    padding: 1.5rem 1.75rem;
    border: none;
    transition: all 0.3s ease;
  }

  .faq-accordion .accordion-button:not(.collapsed) {
    background: hsl(4, 38%, 42%);
    color: #fff;
    box-shadow: none;
  }

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

  .faq-accordion .accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem;
    transition: transform 0.3s ease;
  }

  .faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
    transform: rotate(180deg);
  }

  .faq-accordion .accordion-body {
    padding: 1.75rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    background: #fff;
  }

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

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

  .faq-accordion .accordion-body strong {
    color: hsl(4, 38%, 27%);
    font-weight: 600;
  }

  .faq-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    color: hsl(4, 38%, 42%);
  }

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

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

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(4, 38%, 42%) 0%, hsl(4, 38%, 27%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter-description {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: #f8f9fa;
    margin-bottom: 40px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

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

.newsletter-input:focus {
    outline: none;
    border-color: #ffffff;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.newsletter-submit {
    padding: 16px 45px;
    background: #ffffff;
    color: hsl(4, 38%, 42%);
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-submit:hover {
    background: hsl(4, 38%, 67%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

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

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #f8f9fa;
}

.benefit-icon {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

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

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

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

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

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

    .newsletter-submit {
        width: 100%;
    }

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

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

    .newsletter-input,
    .newsletter-submit {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

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

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

  .hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
    color: hsl(4, 38%, 27%);
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    color: hsl(4, 38%, 42%);
    margin-bottom: 1.8rem;
  }

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

  .hero-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .hero-image-wrapper img:hover {
    transform: scale(1.03);
  }

  .hero-content {
    padding: 40px 30px 40px 60px;
  }

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

  .advantages-list li {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    color: #333;
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
  }

  .advantages-list li::before {
    content: '\f26b';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: hsl(4, 38%, 42%);
    font-size: 1.3rem;
    font-weight: bold;
  }

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

  .btn-hero-primary {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 14px 36px;
    background-color: hsl(4, 38%, 42%);
    color: #fff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.05rem;
  }

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

  .btn-hero-secondary {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 14px 36px;
    background-color: transparent;
    color: hsl(4, 38%, 42%);
    border: 2px solid hsl(4, 38%, 42%);
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.05rem;
  }

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

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

    .hero-content {
      padding: 30px 15px;
      order: 2;
    }

    .hero-image-wrapper {
      order: 1;
      margin-bottom: 30px;
    }

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

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

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

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

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

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

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

    .advantages-list li {
      font-size: 0.95rem;
    }
  }

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

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

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

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

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    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(4, 38%, 67%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(4, 38%, 42%) 0%, hsl(4, 38%, 27%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(4, 38%, 27%) 0%, hsl(4, 38%, 42%) 100%);
}

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

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #222;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
    margin-top: auto;
}

.service-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: hsl(4, 38%, 42%);
    font-size: 1.5rem;
}

.service-duration {
    color: #777;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-badge {
    display: inline-block;
    background: hsl(4, 38%, 67%);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-section h2 {
        font-size: 2.2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

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

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

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

  .credential-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    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.05);
  }

  .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: hsl(4, 38%, 67%);
  }

  .credential-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 20px;
    display: inline-block;
  }

  .credential-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
  }

  .credential-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
  }

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

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

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

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

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

    .credential-card h3 {
      font-size: 1rem;
    }

    .credential-card p {
      font-size: 0.9rem;
    }
  }

  @media (max-width: 576px) {
    .credential-card {
      margin-bottom: 15px;
    }
  }

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

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

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

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  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(4, 38%, 67%);
}

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(4, 38%, 42%) 0%, hsl(4, 38%, 27%) 100%);
  color: #ffffff;
  border-left: 4px solid #ffffff;
}

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

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

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

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: hsl(4, 38%, 67%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-card.featured .customer-avatar {
  background: #ffffff;
  color: hsl(4, 38%, 42%);
}

.customer-info {
  flex: 1;
}

.customer-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.25rem;
}

.customer-location {
  font-size: 0.95rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.customer-location i {
  font-size: 0.85rem;
}

.stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.stars i {
  color: #ffd700;
  font-size: 1.1rem;
}

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

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

.testimonial-date {
  font-size: 0.9rem;
  color: #999;
  font-style: italic;
}

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

.testimonial-badge {
  display: inline-block;
  background: hsl(4, 38%, 67%);
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.testimonial-card.featured .testimonial-badge {
  background: #ffffff;
  color: hsl(4, 38%, 42%);
}

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

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

  .blog-preview-section h2 {
    font-family: 'Poppins', sans-serif;
    color: hsl(4, 38%, 27%);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .blog-preview-section .section-subtitle {
    color: #666;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    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: 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.15);
  }

  .blog-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 3px solid hsl(4, 38%, 42%);
  }

  .blog-card-body {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #888;
  }

  .blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .blog-meta-item i {
    color: hsl(4, 38%, 42%);
  }

  .blog-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
    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(4, 38%, 42%);
  }

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

  .blog-read-more {
    color: hsl(4, 38%, 42%);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
  }

  .blog-read-more:hover {
    gap: 0.8rem;
    color: hsl(4, 38%, 27%);
  }

  .view-all-btn {
    background: hsl(4, 38%, 42%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 3rem;
  }

  .view-all-btn:hover {
    background: hsl(4, 38%, 27%);
    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 h2 {
      font-size: 2rem;
    }

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

    .blog-card-body {
      padding: 1.5rem;
    }

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

.offer-section {
  padding: 80px 0;
  background: linear-gradient(135deg, hsl(4, 38%, 42%) 0%, hsl(4, 38%, 27%) 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

.offer-badge {
  display: inline-block;
  background: hsl(4, 38%, 67%);
  color: hsl(4, 38%, 27%);
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

.offer-description {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  color: #f8f9fa;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 700px;
}

.offer-deadline-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.deadline-label {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: #f8f9fa;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

.deadline-date {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.calendar-icon {
  width: 60px;
  height: 60px;
  background: hsl(4, 38%, 67%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: hsl(4, 38%, 27%);
}

.offer-benefits {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.benefits-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: hsl(4, 38%, 27%);
  margin-bottom: 30px;
  text-align: center;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e9ecef;
}

.benefit-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, hsl(4, 38%, 42%), hsl(4, 38%, 67%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i {
  font-size: 24px;
  color: #ffffff;
}

.benefit-content h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.benefit-content p {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

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

.offer-cta-btn {
  display: inline-block;
  background: hsl(4, 38%, 67%);
  color: hsl(4, 38%, 27%);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 3px solid hsl(4, 38%, 67%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-cta-btn:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

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

  .deadline-date {
    font-size: 40px;
    flex-direction: column;
    gap: 12px;
  }

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

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

  .benefits-title {
    font-size: 24px;
  }

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

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

.disclaimer-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 50px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(4, 38%, 42%);
}

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

.disclaimer-icon i {
  font-size: 48px;
  color: hsl(4, 38%, 42%);
}

.disclaimer-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #222;
  text-align: center;
  margin-bottom: 30px;
}

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

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-container {
    padding: 35px 25px;
    border-radius: 8px;
  }
  
  .disclaimer-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .disclaimer-icon i {
    font-size: 40px;
  }
  
  .disclaimer-text {
    font-size: 0.95rem;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .disclaimer-section {
    padding: 50px 0;
  }
  
  .disclaimer-container {
    padding: 30px 20px;
  }
  
  .disclaimer-title {
    font-size: 1.6rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Nunito:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(4, 38%, 42%);
    --secondary-color: hsl(4, 38%, 27%);
    --accent-color: hsl(4, 38%, 67%);
  }
  
  .policy-content {
    font-family: 'Nunito', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--primary-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: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    color: var(--secondary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .info-box {
    background-color: rgba(146, 85, 73, 0.08);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .contact-card h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-card a {
    color: white;
    text-decoration: underline;
  }
  
  .contact-card a:hover {
    color: var(--accent-color);
  }
  
  .effective-date {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 2rem;
  }

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

  :root {
    --primary-color: hsl(4, 38%, 42%);
    --secondary-color: hsl(4, 38%, 27%);
    --accent-color: hsl(4, 38%, 67%);
  }

  .policy-content {
    font-family: 'Nunito', sans-serif;
    color: #2c3e50;
    line-height: 1.8;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .contact-box h3 {
    color: white;
    margin-bottom: 1.25rem;
  }

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

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

  .contact-box a:hover {
    color: #f8f9fa;
  }

  .last-updated {
    background-color: #f8f9fa;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    border-radius: 4px;
  }

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