:root {
            --primary-color: hsl(61, 61%, 31%);
            --secondary-color: hsl(61, 61%, 16%);
            --accent-color: hsl(61, 61%, 56%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Merriweather', serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        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.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-family: 'Lato', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-nav {
            gap: 0.5rem;
        }
        
        .nav-link {
            font-family: 'Lato', sans-serif;
            font-weight: 500;
            color: #333 !important;
            padding: 0.5rem 1rem !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after {
            width: 80%;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(139, 139, 44, 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='%238b8b2c' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: #ffffff;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            }
            
            .nav-link::after {
                display: none;
            }
            
            .nav-link {
                padding: 0.75rem 1rem !important;
                border-bottom: 1px solid #f0f0f0;
            }
            
            .nav-link:last-child {
                border-bottom: none;
            }
        }

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

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

.about-section h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: hsl(61, 61%, 31%);
  margin-top: 40px;
  margin-bottom: 20px;
}

.about-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555555;
}

.about-content {
  margin-bottom: 50px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: #444444;
  margin-bottom: 20px;
  text-align: justify;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

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

.value-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid hsl(61, 61%, 56%);
  transition: transform 0.3s ease;
}

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

.value-card h4 {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: hsl(61, 61%, 16%);
  margin-bottom: 15px;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 0;
  text-align: left;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 50px 0;
  padding: 40px 0;
  background: hsl(61, 61%, 56%);
  border-radius: 8px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  min-width: 200px;
}

.stat-number {
  font-family: 'Lato', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(61, 61%, 16%);
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: #333333;
  font-weight: 500;
}

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

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

  .about-section h3 {
    font-size: 1.5rem;
  }

  .about-intro {
    font-size: 1rem;
  }

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

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

.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: #222;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

.filter-btn {
  padding: 0.6rem 1.5rem;
  border: 2px solid hsl(61, 61%, 31%);
  background: transparent;
  color: hsl(61, 61%, 31%);
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: hsl(61, 61%, 31%);
  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: 2rem;
  margin-bottom: 2rem;
}

.portfolio-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  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.05);
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-category {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: hsl(61, 61%, 56%);
  color: #222;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 0.8rem;
  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: 0.8rem;
}

.portfolio-description {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.view-details {
  color: hsl(61, 61%, 31%);
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.view-details:hover {
  gap: 0.8rem;
  color: hsl(61, 61%, 16%);
}

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

.modal-header {
  background: hsl(61, 61%, 31%);
  color: #fff;
  border-radius: 12px 12px 0 0;
  padding: 1.5rem;
}

.modal-header h5 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  margin: 0;
}

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

.modal-body {
  padding: 2rem;
}

.modal-body img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.project-details {
  color: #444;
  line-height: 1.8;
}

.project-details h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #222;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.project-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: hsl(61, 61%, 31%);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.spec-value {
  color: #333;
  font-size: 1rem;
}

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

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

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .filter-buttons {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .modal-body {
    padding: 1.5rem;
  }
}

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

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

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

.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(61, 61%, 31%), hsl(61, 61%, 56%));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

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

.advantage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(61, 61%, 31%), hsl(61, 61%, 56%));
  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: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.advantage-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: hsl(61, 61%, 16%);
  margin-bottom: 15px;
  text-align: center;
}

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

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

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

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

.statistics-section {
  background: linear-gradient(135deg, hsl(61, 61%, 31%) 0%, hsl(61, 61%, 16%) 100%);
  padding: 80px 0;
  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"><rect width="2" height="2" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 50px 50px;
  opacity: 0.3;
}

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

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

.statistics-header h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.statistics-header p {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.stat-card:hover::before {
  left: 100%;
}

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

.stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: hsl(61, 61%, 56%);
  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: hsl(61, 61%, 66%);
}

.stat-icon i {
  font-size: 2.2rem;
  color: hsl(61, 61%, 16%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

footer p, footer ul li, footer address {
  color: #e9ecef;
  font-size: 0.95rem;
  line-height: 1.7;
}

footer .company-description {
  margin-bottom: 25px;
  color: #dee2e6;
}

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

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

footer ul li a {
  color: #e9ecef;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

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

footer address {
  font-style: normal;
  line-height: 1.8;
}

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

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

footer .contact-item a {
  color: #e9ecef;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .contact-item a:hover {
  color: hsl(61, 61%, 56%);
}

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

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

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

footer .policy-links a {
  color: #ced4da;
  text-decoration: none;
  margin: 0 12px;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

footer .policy-links a:hover {
  color: hsl(61, 61%, 56%);
}

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

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

#cookieNotice .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

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

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

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

#cookieNotice .cookie-category strong {
  color: hsl(61, 61%, 16%);
  font-family: 'Lato', sans-serif;
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

#cookieNotice .cookie-category span {
  color: #555;
  font-size: 0.85rem;
}

#cookieNotice .cookie-category.required {
  border-left-color: hsl(61, 61%, 31%);
}

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

#cookieNotice .btn-accept-all {
  background: hsl(61, 61%, 31%);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

#cookieNotice .btn-accept-all:hover {
  background: hsl(61, 61%, 16%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

#cookieNotice .btn-reject:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

#cookieNotice .btn-manage {
  background: transparent;
  color: hsl(61, 61%, 31%);
  border: 2px solid hsl(61, 61%, 31%);
  padding: 10px 28px;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

#cookieNotice .btn-manage:hover {
  background: hsl(61, 61%, 31%);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  #cookieNotice {
    padding: 20px 0;
  }
  
  #cookieNotice h4 {
    font-size: 1.2rem;
  }
  
  #cookieNotice .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  #cookieNotice .cookie-buttons button,
  #cookieNotice .cookie-buttons a {
    width: 100%;
    text-align: center;
  }
  
  footer {
    padding: 40px 0 20px;
    margin-top: 50px;
  }
  
  footer h5 {
    margin-top: 25px;
    font-size: 1rem;
  }
}

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

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

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

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

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

.contact-info-item {
    display: flex;
    align-items: start;
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid #e9ecef;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(61, 61%, 31%) 0%, hsl(61, 61%, 16%) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    flex-shrink: 0;
}

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

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

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

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

.contact-info-content a:hover {
    color: hsl(61, 61%, 16%);
}

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

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

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

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: hsl(61, 61%, 31%);
    box-shadow: 0 0 0 0.2rem rgba(139, 139, 43, 0.15);
    outline: none;
}

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

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

.btn-submit {
    background: linear-gradient(135deg, hsl(61, 61%, 31%) 0%, hsl(61, 61%, 16%) 100%);
    color: #ffffff;
    border: none;
    padding: 0.9rem 2.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 139, 43, 0.3);
}

.required-mark {
    color: hsl(61, 61%, 31%);
    margin-left: 3px;
}

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

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

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

@media (max-width: 991px) {
    .contact-info-card {
        margin-bottom: 2rem;
    }
}

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

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

    .contact-form-card {
        padding: 2rem 1.5rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }
}

@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(61, 61%, 31%);
    --secondary-color: hsl(61, 61%, 16%);
    --accent-color: hsl(61, 61%, 56%);
  }
  
  .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;
    color: var(--primary-color);
    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(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content strong {
    color: var(--primary-color);
    font-weight: 700;
  }
  
  .effective-date {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .contact-box {
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  
  .contact-box h3 {
    margin-top: 0;
    color: var(--primary-color);
  }
  
  .cookie-type-card {
    background: white;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cookie-type-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  .cookie-type-card h3 {
    color: var(--primary-color);
    margin-top: 0;
    font-size: 1.25rem;
  }
  
  .intro-text {
    font-size: 1.1rem;
    color: #555;
    background-color: #fafafa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid #e0e0e0;
  }

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

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

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

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

  .accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
  }

  .accordion-button {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    background: #f8f9fa;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
  }

  .accordion-button:not(.collapsed) {
    background: hsl(61, 61%, 56%);
    color: #222;
  }

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

  .accordion-button::after {
    filter: brightness(0);
  }

  .accordion-button:not(.collapsed)::after {
    filter: brightness(0);
  }

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

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

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

  .accordion-body strong {
    color: #222;
    font-weight: 600;
  }

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

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

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

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(61, 61%, 31%) 0%, hsl(61, 61%, 16%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" x="0" y="0" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

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

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

.newsletter-description {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  color: #f8f9fa;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

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

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

.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 16px 24px;
  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(61, 61%, 56%);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.newsletter-submit {
  padding: 16px 40px;
  background: hsl(61, 61%, 56%);
  color: #222;
  border: none;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit:hover {
  background: hsl(61, 61%, 66%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

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

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

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

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

  .newsletter-submit {
    width: 100%;
  }

  .newsletter-benefits {
    gap: 20px;
  }

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

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

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

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

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

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

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

.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-bottom: 2.5rem;
  text-align: left;
}

.hero-section .advantages-list li {
  color: #333;
  font-size: 1rem;
  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(61, 61%, 31%);
  font-size: 1.2rem;
}

.hero-section .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

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

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

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

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

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section h2 {
    font-size: 1.25rem;
  }
  
  .hero-section .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .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(61, 61%, 16%);
  margin-bottom: 1rem;
  text-align: center;
}

.services-intro {
  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;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid #e9ecef;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

.service-card:hover .service-icon {
  transform: rotate(360deg);
  background: linear-gradient(135deg, hsl(61, 61%, 56%) 0%, hsl(61, 61%, 31%) 100%);
}

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

.service-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: hsl(61, 61%, 16%);
  margin-bottom: 1rem;
}

.service-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-footer {
  border-top: 1px solid #e9ecef;
  padding-top: 1rem;
  margin-top: auto;
}

.service-price {
  font-family: 'Lato', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: hsl(61, 61%, 31%);
  margin-bottom: 0.5rem;
}

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

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

.credentials-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

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

.credential-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

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

@media (max-width: 767px) {
  .credentials-section {
    padding: 40px 0;
  }
  
  .credentials-section .section-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
  
  .credential-card {
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .credential-card {
    margin-bottom: 20px;
  }
}

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

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

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

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

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

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

  .blog-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
  }

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

  .blog-card:hover .blog-card-image img {
    transform: scale(1.1);
  }

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

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

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

  .blog-meta-item i {
    color: hsl(61, 61%, 31%);
    font-size: 0.95rem;
  }

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

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

  .blog-card-title a:hover {
    color: hsl(61, 61%, 31%);
  }

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

  .blog-read-more {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: hsl(61, 61%, 31%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  .blog-read-more:hover {
    color: hsl(61, 61%, 16%);
    gap: 12px;
  }

  .blog-read-more i {
    font-size: 0.9rem;
  }

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

  .btn-view-all {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: hsl(61, 61%, 31%);
    border: none;
    padding: 15px 45px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

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

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

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

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

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

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

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

.offer-section {
  background: linear-gradient(135deg, hsl(61, 61%, 31%) 0%, hsl(61, 61%, 16%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

.offer-deadline-box {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.deadline-label {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.deadline-date {
  font-family: 'Lato', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: hsl(61, 61%, 31%);
  margin: 0;
  line-height: 1;
}

.deadline-icon {
  font-size: 3rem;
  color: hsl(61, 61%, 56%);
  margin-bottom: 15px;
}

.offer-benefits {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px;
  margin: 40px 0;
  backdrop-filter: blur(10px);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  font-family: 'Merriweather', serif;
  color: #ffffff;
}

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

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: hsl(61, 61%, 56%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.5rem;
  color: hsl(61, 61%, 16%);
}

.benefit-text {
  flex: 1;
  padding-top: 8px;
}

.benefit-title {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.benefit-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #f8f9fa;
  margin: 0;
}

.offer-cta-btn {
  display: inline-block;
  background: hsl(61, 61%, 56%);
  color: hsl(61, 61%, 16%);
  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;
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-cta-btn:hover {
  background: hsl(61, 61%, 66%);
  color: hsl(61, 61%, 16%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.discount-highlight {
  display: inline-block;
  background: hsl(61, 61%, 56%);
  color: hsl(61, 61%, 16%);
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 10px;
  margin: 20px 0;
}

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

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

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

  .deadline-date {
    font-size: 2.5rem;
  }

  .offer-deadline-box {
    padding: 30px 20px;
  }

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

  .benefit-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-right: 15px;
  }

  .benefit-title {
    font-size: 1.1rem;
  }

  .discount-highlight {
    font-size: 2rem;
    padding: 12px 25px;
  }

  .offer-cta-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
  }
}

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

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

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

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-left: 4px solid hsl(61, 61%, 56%);
}

.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(61, 61%, 31%) 0%, hsl(61, 61%, 16%) 100%);
  color: #ffffff;
  border-left: 4px solid hsl(61, 61%, 56%);
}

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

.testimonial-card.featured .customer-name {
  color: hsl(61, 61%, 56%);
}

.testimonial-card.featured .customer-location {
  color: #e0e0e0;
}

.testimonial-card.compact {
  padding: 25px;
  background: #f8f9fa;
}

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

.star {
  color: hsl(61, 61%, 56%);
  font-size: 1.2rem;
}

.star.empty {
  color: #ddd;
}

.testimonial-card.featured .star.empty {
  color: rgba(255,255,255,0.3);
}

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

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

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

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

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

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: hsl(61, 61%, 56%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: hsl(61, 61%, 16%);
  flex-shrink: 0;
}

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

.customer-name {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(61, 61%, 16%);
  font-size: 1.1rem;
  margin-bottom: 3px;
}

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

.testimonial-badge {
  display: inline-block;
  background: hsl(61, 61%, 56%);
  color: hsl(61, 61%, 16%);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: 'Lato', sans-serif;
}

.testimonial-card.featured .testimonial-badge {
  background: #ffffff;
  color: hsl(61, 61%, 16%);
}

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

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

.disclaimer-section h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(61, 61%, 16%);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.disclaimer-icon {
  color: hsl(61, 61%, 31%);
  font-size: 3rem;
  margin-bottom: 25px;
  display: block;
  text-align: center;
}

.disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 40px 0;
  }
  
  .disclaimer-content {
    padding: 25px 20px;
  }
  
  .disclaimer-section h2 {
    font-size: 1.6rem;
  }
  
  .disclaimer-icon {
    font-size: 2.5rem;
  }
  
  .disclaimer-text {
    font-size: 0.95rem;
    text-align: left;
  }
}

@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(61, 61%, 31%);
    --secondary-color: hsl(61, 61%, 16%);
    --accent-color: hsl(61, 61%, 56%);
  }
  
  body {
    font-family: 'Merriweather', serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .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.75rem;
    font-weight: 900;
    color: var(--primary-color);
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 3rem;
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
  }
  
  .policy-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 0.5rem;
  }
  
  .policy-header h1 {
    color: white;
    border: none;
    margin: 0;
    padding: 0;
  }
  
  .last-updated {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Lato', sans-serif;
  }
  
  .contact-box {
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }
  
  .contact-box h3 {
    margin-top: 0;
    color: var(--primary-color);
  }
  
  .info-highlight {
    background-color: rgba(61, 61%, 56%, 0.1);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
    border: 2px solid var(--accent-color);
  }
  
  strong {
    color: var(--secondary-color);
    font-weight: 700;
  }

@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(61, 61%, 31%);
    --secondary-color: hsl(61, 61%, 16%);
    --accent-color: hsl(61, 61%, 56%);
  }

  body {
    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);
  }

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

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

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

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

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

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

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

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

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

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

  .intro-box p {
    margin-bottom: 0;
    color: white;
    text-align: left;
  }

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

  .contact-box p {
    margin-bottom: 0.5rem;
    text-align: left;
  }

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

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