:root {
            --primary-color: hsl(58, 64%, 30%);
            --secondary-color: hsl(58, 64%, 15%);
            --accent-color: hsl(58, 64%, 55%);
        }
        
        body {
            font-family: 'Merriweather', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Lato', sans-serif;
            font-weight: 700;
            color: #222;
        }
        
        .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: 'Lato', sans-serif;
            font-weight: 900;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Lato', 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(130, 130, 40, 0.25);
        }

.about-section {
  background: #ffffff;
  padding: 80px 0;
  font-family: 'Merriweather', serif;
  color: #333;
}

.about-section h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(58, 64%, 30%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-section h3 {
  font-family: 'Lato', sans-serif;
  color: hsl(58, 64%, 15%);
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}

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

.about-intro {
  background: linear-gradient(135deg, hsl(58, 64%, 95%) 0%, #ffffff 100%);
  padding: 3rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.about-image-wrapper {
  position: relative;
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

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

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

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

.value-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid hsl(58, 64%, 55%);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  background: #ffffff;
}

.value-card h4 {
  font-family: 'Lato', sans-serif;
  color: hsl(58, 64%, 30%);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

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

.expertise-box {
  background: hsl(58, 64%, 30%);
  color: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  margin-top: 3rem;
}

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

.expertise-box p {
  color: #f5f5f5;
  margin-bottom: 1rem;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
}

.stat-number {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(58, 64%, 55%);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #ffffff;
}

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

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

.portfolio-section h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(58, 64%, 15%);
  margin-bottom: 1rem;
  text-align: center;
}

.portfolio-section .lead-text {
  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;
  border: 2px solid hsl(58, 64%, 30%);
  background: #fff;
  color: hsl(58, 64%, 30%);
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: hsl(58, 64%, 30%);
  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(320px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}

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

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px 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.08);
}

.portfolio-content {
  padding: 25px;
}

.portfolio-category {
  display: inline-block;
  padding: 5px 15px;
  background: hsl(58, 64%, 55%);
  color: hsl(58, 64%, 15%);
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

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

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

.modal-body {
  padding: 30px;
}

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

.modal-body h5 {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: hsl(58, 64%, 15%);
  margin-top: 25px;
  margin-bottom: 15px;
}

.modal-body p {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
}

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

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

.modal-body ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: hsl(58, 64%, 30%);
  font-weight: bold;
  font-size: 1.2rem;
}

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

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

.stat-number {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(58, 64%, 30%);
  display: block;
}

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

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

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

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

  .filter-buttons {
    gap: 10px;
  }

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

  .modal-header .modal-title {
    font-size: 1.4rem;
  }

  .project-stats {
    grid-template-columns: 1fr;
  }
}

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

.advantages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(58, 64%, 30%), hsl(58, 64%, 55%));
}

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

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

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

.advantages-section .section-subtitle {
  font-family: 'Merriweather', 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(58, 64%, 30%), hsl(58, 64%, 55%));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

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

.advantage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(58, 64%, 30%), hsl(58, 64%, 55%));
  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-title {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: hsl(58, 64%, 15%);
  margin-bottom: 15px;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(58, 64%, 30%) 0%, hsl(58, 64%, 15%) 100%);
    position: relative;
    overflow: hidden;
}

.statistics-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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.statistics-section .section-title {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.statistics-section .section-subtitle {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    height: 100%;
    position: relative;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: hsl(58, 64%, 55%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: rotate(360deg) scale(1.1);
    background: hsl(58, 80%, 60%);
}

.stat-icon i {
    font-size: 2rem;
    color: hsl(58, 64%, 15%);
}

.stat-number {
    font-family: 'Lato', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.stat-label {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.stat-context {
    font-family: 'Merriweather', serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    font-style: italic;
}

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

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

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }
.stat-card:nth-child(5) { animation-delay: 0.5s; }
.stat-card:nth-child(6) { animation-delay: 0.6s; }
.stat-card:nth-child(7) { animation-delay: 0.7s; }

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

footer {
  background: linear-gradient(135deg, hsl(58, 64%, 15%) 0%, hsl(58, 64%, 20%) 100%);
  color: #f8f9fa;
  padding: 60px 0 30px;
  font-family: 'Merriweather', serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(58, 64%, 55%);
  margin-bottom: 20px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer p {
  color: #e9ecef;
  line-height: 1.8;
  font-size: 0.95rem;
}

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

footer a {
  color: #e9ecef;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

footer a:hover {
  color: hsl(58, 64%, 55%);
  transform: translateX(5px);
}

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

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

footer .contact-info li i {
  color: hsl(58, 64%, 55%);
  margin-right: 10px;
  margin-top: 3px;
  font-size: 1.1rem;
}

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

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

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

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

footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 25px;
  text-align: center;
  color: #adb5bd;
  font-size: 0.9rem;
}

footer .business-hours {
  background: rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

footer .business-hours p {
  margin-bottom: 5px;
  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: 0;
  border-top: 4px solid hsl(58, 64%, 30%);
  font-family: 'Merriweather', serif;
}

#cookieNotice .cookie-content {
  padding: 30px 0;
}

#cookieNotice h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(58, 64%, 15%);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

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

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

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

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

#cookieNotice .cookie-category h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: hsl(58, 64%, 15%);
  margin-bottom: 5px;
  font-size: 1rem;
}

#cookieNotice .cookie-category p {
  color: #555;
  margin-bottom: 0;
  font-size: 0.85rem;
}

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

#cookieNotice .badge-required {
  background-color: hsl(58, 64%, 30%);
  color: #fff;
}

#cookieNotice .badge-optional {
  background-color: #6c757d;
  color: #fff;
}

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

#cookieNotice .btn-accept-all {
  background: hsl(58, 64%, 30%);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 150px;
}

#cookieNotice .btn-accept-all:hover {
  background: hsl(58, 64%, 25%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#cookieNotice .btn-reject {
  background: #6c757d;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 150px;
}

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

#cookieNotice .btn-manage {
  background: transparent;
  color: hsl(58, 64%, 30%);
  border: 2px solid hsl(58, 64%, 30%);
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  flex: 1;
  min-width: 150px;
}

#cookieNotice .btn-manage:hover {
  background: hsl(58, 64%, 30%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  footer h5 {
    margin-top: 30px;
    font-size: 1rem;
  }
  
  footer h5:first-child {
    margin-top: 0;
  }
  
  #cookieNotice .cookie-content {
    padding: 20px 0;
  }
  
  #cookieNotice h4 {
    font-size: 1.2rem;
  }
  
  #cookieNotice .cookie-buttons {
    flex-direction: column;
  }
  
  #cookieNotice .btn-accept-all,
  #cookieNotice .btn-reject,
  #cookieNotice .btn-manage {
    width: 100%;
    min-width: 100%;
  }
}

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

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

.contact-section h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(58, 64%, 15%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

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

.contact-form-container {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.contact-form-container h3 {
  font-family: 'Lato', sans-serif;
  color: hsl(58, 64%, 15%);
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 600;
}

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

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

.contact-form-container .form-control:focus {
  border-color: hsl(58, 64%, 55%);
  box-shadow: 0 0 0 0.2rem rgba(167, 162, 75, 0.15);
  outline: 0;
}

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

.contact-form-container .btn-submit {
  background-color: hsl(58, 64%, 30%);
  color: #ffffff;
  border: none;
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: 'Lato', sans-serif;
  margin-top: 10px;
}

.contact-form-container .btn-submit:hover {
  background-color: hsl(58, 64%, 25%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.contact-info-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 100%;
}

.contact-info-box h3 {
  font-family: 'Lato', sans-serif;
  color: hsl(58, 64%, 15%);
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 600;
}

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

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

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: hsl(58, 64%, 55%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 18px;
}

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

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

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

.contact-info-content a {
  color: hsl(58, 64%, 30%);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.hours-list li {
  padding: 6px 0;
  color: #555;
  font-size: 0.95rem;
}

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

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

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-section h2 {
    font-size: 2rem;
  }
  
  .contact-form-container,
  .contact-info-box {
    padding: 30px 20px;
  }
  
  .contact-form-container h3,
  .contact-info-box h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .contact-section h2 {
    font-size: 1.75rem;
  }
  
  .contact-form-container .btn-submit {
    width: 100%;
  }
}

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

  :root {
    --primary-color: hsl(58, 64%, 30%);
    --secondary-color: hsl(58, 64%, 15%);
    --accent-color: hsl(58, 64%, 55%);
  }

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

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

  .policy-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    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;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }

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

  .policy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    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: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

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

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

  .contact-info {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(58, 64%, 45%) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    color: var(--secondary-color);
  }

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

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

  .cookie-table table {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .cookie-table thead {
    background-color: var(--primary-color);
    color: white;
  }

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

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

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

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

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

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

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

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

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

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

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

  .faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
  }

  .faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }

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

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

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

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

  .faq-accordion .accordion-body li {
    margin-bottom: 8px;
  }

  .faq-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: hsl(58, 64%, 55%);
    color: hsl(58, 64%, 15%);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: 700;
    margin-right: 12px;
    font-size: 0.9rem;
  }

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

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

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

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

    .faq-number {
      width: 26px;
      height: 26px;
      line-height: 26px;
      font-size: 0.85rem;
      margin-right: 10px;
    }
  }

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

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

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(58, 64%, 55%);
  opacity: 0.08;
  border-radius: 50%;
}

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

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

.newsletter-icon {
  width: 70px;
  height: 70px;
  background: hsl(58, 64%, 55%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.newsletter-icon svg {
  width: 35px;
  height: 35px;
  fill: hsl(58, 64%, 15%);
}

.newsletter-heading {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

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

.benefit-item svg {
  width: 20px;
  height: 20px;
  fill: hsl(58, 64%, 55%);
  flex-shrink: 0;
}

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

.form-group-newsletter {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  background: rgba(255,255,255,0.95);
  color: #333;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: hsl(58, 64%, 55%);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(180, 179, 92, 0.2);
}

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

.newsletter-submit {
  padding: 16px 35px;
  background: hsl(58, 64%, 55%);
  color: hsl(58, 64%, 15%);
  border: none;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit:hover {
  background: hsl(58, 64%, 60%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

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

.newsletter-privacy {
  font-family: 'Merriweather', serif;
  font-size: 0.85rem;
  color: #f8f9fa;
  margin-top: 15px;
}

.newsletter-privacy a {
  color: hsl(58, 64%, 55%);
  text-decoration: none;
  border-bottom: 1px solid hsl(58, 64%, 55%);
  transition: opacity 0.3s ease;
}

.newsletter-privacy a:hover {
  opacity: 0.8;
}

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

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

  .newsletter-description {
    font-size: 1rem;
  }

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

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

  .newsletter-submit {
    width: 100%;
    padding: 16px 20px;
  }
}

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

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

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

.hero-section {
  font-family: 'Merriweather', serif;
  background-color: #ffffff;
  padding: 80px 0;
}

.hero-section h1 {
  font-family: 'Lato', sans-serif;
  color: hsl(58, 64%, 15%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(58, 64%, 30%);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.hero-section .description {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: justify;
}

.hero-section .hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.hero-section .advantages-list li {
  color: #333;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.hero-section .advantages-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: hsl(58, 64%, 30%);
  font-size: 1.2rem;
}

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

.hero-section .btn-primary-custom {
  background-color: hsl(58, 64%, 30%);
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero-section .btn-primary-custom:hover {
  background-color: hsl(58, 64%, 25%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  color: #ffffff;
}

.hero-section .btn-secondary-custom {
  background-color: transparent;
  color: hsl(58, 64%, 30%);
  border: 2px solid hsl(58, 64%, 30%);
  padding: 12px 32px;
  font-size: 1.1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero-section .btn-secondary-custom:hover {
  background-color: hsl(58, 64%, 30%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section h2 {
    font-size: 1.25rem;
  }
  
  .hero-section .cta-buttons {
    flex-direction: column;
  }
  
  .hero-section .btn-primary-custom,
  .hero-section .btn-secondary-custom {
    width: 100%;
    text-align: center;
  }
}

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

.services-section h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(58, 64%, 15%);
  margin-bottom: 1rem;
  text-align: center;
}

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

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border-left: 4px solid hsl(58, 64%, 30%);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  border-left-color: hsl(58, 64%, 55%);
}

.service-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(58, 64%, 30%) 0%, hsl(58, 64%, 40%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, hsl(58, 64%, 55%) 0%, hsl(58, 64%, 45%) 100%);
  transform: rotate(360deg);
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(58, 64%, 15%);
  margin-bottom: 0.8rem;
}

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

.service-price {
  display: inline-block;
  background: hsl(58, 64%, 55%);
  color: hsl(58, 64%, 15%);
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  font-family: 'Lato', sans-serif;
}

.service-terms {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 3rem;
  border: 2px solid hsl(58, 64%, 55%);
}

.service-terms h4 {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  color: hsl(58, 64%, 15%);
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-terms ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #555;
}

.service-terms ul li {
  padding: 0.5rem 0;
  padding-left: 1.8rem;
  position: relative;
  line-height: 1.6;
}

.service-terms ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: hsl(58, 64%, 30%);
  font-weight: bold;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .services-section {
    padding: 50px 0;
  }
  
  .services-section h2 {
    font-size: 2rem;
  }
  
  .service-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .service-icon {
    margin-bottom: 1rem;
  }
  
  .service-content h3 {
    font-size: 1.3rem;
  }
}

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

.offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsla(58, 64%, 55%, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsla(58, 64%, 30%, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

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

.offer-heading {
  font-family: 'Lato', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(58, 64%, 15%);
  margin-bottom: 25px;
  line-height: 1.2;
}

.offer-description {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, hsl(58, 64%, 30%) 0%, hsl(58, 64%, 55%) 100%);
}

.deadline-box {
  background: linear-gradient(135deg, hsl(58, 64%, 30%) 0%, hsl(58, 64%, 15%) 100%);
  border-radius: 15px;
  padding: 35px;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.deadline-label {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: hsl(58, 64%, 85%);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.calendar-icon {
  width: 50px;
  height: 50px;
  background: hsla(255, 255%, 255%, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

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

.benefits-list li {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  color: #333;
  padding: 18px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

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

.benefit-icon {
  width: 40px;
  height: 40px;
  background: hsl(58, 64%, 55%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: hsl(58, 64%, 15%);
  font-size: 1.2rem;
  font-weight: 700;
}

.discount-highlight {
  background: hsl(58, 64%, 55%);
  color: hsl(58, 64%, 15%);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 40px;
}

.discount-percentage {
  font-family: 'Lato', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.discount-text {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 10px 0 0 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-cta {
  display: inline-block;
  background: hsl(58, 64%, 30%);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-cta:hover {
  background: hsl(58, 64%, 15%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

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

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

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

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

  .discount-percentage {
    font-size: 2.5rem;
  }

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

  .offer-cta {
    font-size: 1rem;
    padding: 15px 35px;
    display: block;
    text-align: center;
  }
}

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

.blog-preview h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(58, 64%, 15%);
  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: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.blog-card-img {
  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;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #777;
}

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

.blog-meta-item i {
  color: hsl(58, 64%, 30%);
}

.blog-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.4;
}

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

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

.blog-read-more:hover {
  color: hsl(58, 64%, 15%);
  gap: 12px;
}

.blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(4px);
}

.view-all-btn {
  display: inline-block;
  padding: 14px 40px;
  background: hsl(58, 64%, 30%);
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-top: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.view-all-btn:hover {
  background: hsl(58, 64%, 15%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

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

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

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

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

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

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

  .blog-meta {
    flex-direction: column;
    gap: 8px;
  }
}

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

.testimonials-section h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(58, 64%, 15%);
  text-align: center;
  margin-bottom: 20px;
}

.testimonials-section .subtitle {
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 60px;
  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;
}

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

.testimonial-card.style-1 {
  border-left: 4px solid hsl(58, 64%, 55%);
}

.testimonial-card.style-2 {
  border-top: 3px solid hsl(58, 64%, 30%);
}

.testimonial-card.style-3 {
  background: linear-gradient(to bottom right, #ffffff 0%, #fefdf8 100%);
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(58, 64%, 55%) 0%, hsl(58, 64%, 30%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-right: 15px;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 5px 0;
}

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

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

.star {
  color: hsl(58, 64%, 55%);
  font-size: 1.2rem;
}

.star.empty {
  color: #ddd;
}

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

.testimonial-text.short {
  font-size: 1.1rem;
  font-weight: 500;
  color: #222;
}

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

.testimonial-date {
  font-size: 0.85rem;
  color: #999;
  margin-top: auto;
  font-style: italic;
}

.testimonial-highlight {
  background: hsl(58, 64%, 95%);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 3px solid hsl(58, 64%, 55%);
}

.testimonial-highlight .testimonial-text {
  margin-bottom: 0;
  font-style: italic;
}

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

.credentials-section {
  background: #ffffff;
  padding: 60px 0;
  font-family: 'Merriweather', serif;
}

.credentials-section h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(58, 64%, 15%);
  text-align: center;
  margin-bottom: 40px;
}

.credential-card {
  background: #f8f9fa;
  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-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

@media (max-width: 768px) {
  .credentials-section {
    padding: 40px 0;
  }
  
  .credentials-section h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  .credential-card {
    padding: 20px 10px;
  }
  
  .credential-icon {
    font-size: 2rem;
  }
}

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

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

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

.disclaimer-icon {
  font-size: 48px;
  color: hsl(58, 64%, 30%);
  margin-bottom: 20px;
}

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

.disclaimer-content {
  color: #444;
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}

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

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

  .disclaimer-container {
    padding: 35px 25px;
    margin: 0 15px;
  }

  .disclaimer-title {
    font-size: 26px;
  }

  .disclaimer-icon {
    font-size: 40px;
  }

  .disclaimer-content {
    font-size: 15px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .disclaimer-container {
    padding: 30px 20px;
  }

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

  .disclaimer-icon {
    font-size: 36px;
  }
}

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

  :root {
    --primary-color: hsl(58, 64%, 30%);
    --secondary-color: hsl(58, 64%, 15%);
    --accent-color: hsl(58, 64%, 55%);
  }

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

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

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

  .policy-content h2 {
    font-size: 1.8rem;
    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.3rem;
    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: 700;
    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.5rem;
  }

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

  .policy-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .contact-box {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
  }

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

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

  .contact-box a:hover {
    color: white;
  }

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

  .highlight-box {
    background: #fff9e6;
    border: 2px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
  }

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

  :root {
    --primary-color: hsl(58, 64%, 30%);
    --secondary-color: hsl(58, 64%, 15%);
    --accent-color: hsl(58, 64%, 55%);
  }

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

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

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

  .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(--secondary-color);
  }

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

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

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

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

  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(58, 64%, 65%) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .info-box p {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
  }

  .last-updated {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    font-style: italic;
    color: #6c757d;
    margin-bottom: 2rem;
  }

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