:root {
            --primary-color: hsl(40, 60%, 33%);
            --secondary-color: hsl(40, 60%, 18%);
            --accent-color: hsl(40, 60%, 58%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Raleway', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }
        
        .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: 12px;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 1.25rem;
            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: 'Raleway', sans-serif;
            font-weight: 500;
            color: #333 !important;
            padding: 0.5rem 1rem !important;
            transition: all 0.3s ease;
            border-radius: 6px;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
            background-color: rgba(139, 101, 50, 0.08);
        }
        
        .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, 101, 50, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(139, 101, 50, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                margin-top: 1rem;
                padding: 1rem;
                background-color: #f8f9fa;
                border-radius: 8px;
            }
            
            .nav-link {
                padding: 0.75rem 1rem !important;
                margin-bottom: 0.25rem;
            }
        }
        
        @media (min-width: 992px) {
            .navbar-nav {
                gap: 0.25rem;
            }
            
            .nav-link {
                padding: 0.5rem 0.85rem !important;
            }
        }

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

.about-section h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(40, 60%, 18%);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.about-section h3 {
  font-family: 'Inter', sans-serif;
  color: hsl(40, 60%, 33%);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.8rem;
  margin-top: 40px;
}

.about-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 50px;
}

.about-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 30px;
}

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

.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: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.value-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid hsl(40, 60%, 58%);
}

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

.value-card h4 {
  font-family: 'Inter', sans-serif;
  color: hsl(40, 60%, 33%);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.value-card p {
  color: #666;
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

.expertise-box {
  background: hsl(40, 60%, 33%);
  color: #ffffff;
  padding: 45px;
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

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

.expertise-box p {
  color: #f8f9fa;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 35px;
  justify-content: space-around;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(40, 60%, 58%);
  display: block;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

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

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-section h2 {
    font-size: 2rem;
  }
  
  .about-section h3 {
    font-size: 1.5rem;
    margin-top: 30px;
  }
  
  .expertise-box {
    padding: 30px 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

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

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

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

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

#portfolio .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: hsl(40, 60%, 58%);
  border-radius: 2px;
}

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

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

.portfolio-filter-btn {
  font-family: 'Raleway', sans-serif;
  padding: 10px 28px;
  background: #fff;
  color: #333;
  border: 2px solid hsl(40, 60%, 33%);
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
  background: hsl(40, 60%, 33%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

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

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

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

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

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

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(115, 88, 44, 0.9) 0%, rgba(58, 44, 22, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.portfolio-overlay-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: hsl(40, 60%, 33%);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay-icon {
  transform: scale(1);
}

.portfolio-content {
  padding: 25px;
}

.portfolio-category {
  display: inline-block;
  font-size: 0.85rem;
  color: hsl(40, 60%, 58%);
  background: rgba(177, 135, 66, 0.1);
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.portfolio-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

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

.portfolio-modal .modal-header {
  background: linear-gradient(135deg, hsl(40, 60%, 33%) 0%, hsl(40, 60%, 18%) 100%);
  color: #fff;
  border: none;
  padding: 25px 30px;
}

.portfolio-modal .modal-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

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

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

.portfolio-modal .modal-body {
  padding: 35px;
}

.portfolio-modal-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
}

.portfolio-modal-category {
  display: inline-block;
  font-size: 0.9rem;
  color: hsl(40, 60%, 58%);
  background: rgba(177, 135, 66, 0.1);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-modal-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

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

.portfolio-modal-details h5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

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

.portfolio-modal-details li {
  padding: 8px 0;
  color: #555;
  font-size: 0.95rem;
  border-bottom: 1px solid #e0e0e0;
}

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

.portfolio-modal-details li strong {
  color: #222;
  font-weight: 600;
  margin-right: 10px;
}

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

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

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

  .portfolio-filters {
    gap: 8px;
  }

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

  .portfolio-image {
    height: 240px;
  }

  .portfolio-modal-image {
    height: 280px;
  }

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

@media (max-width: 480px) {
  #portfolio .section-title {
    font-size: 1.75rem;
  }

  .portfolio-filter-btn {
    padding: 7px 16px;
    font-size: 0.8rem;
  }

  .portfolio-content {
    padding: 20px;
  }

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

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

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

#advantages .section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(40, 60%, 18%);
    margin-bottom: 1rem;
    text-align: center;
}

#advantages .section-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#advantages .advantage-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

#advantages .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(40, 60%, 33%) 0%, hsl(40, 60%, 58%) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

#advantages .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

#advantages .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(40, 60%, 33%) 0%, hsl(40, 60%, 58%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

#advantages .advantage-card:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
}

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

#advantages .advantage-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: hsl(40, 60%, 18%);
    margin-bottom: 12px;
}

#advantages .advantage-description {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

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

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

    #advantages .advantage-card {
        margin-bottom: 20px;
    }
}

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

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

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

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

#statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(40, 60%, 33%) 0%, hsl(40, 60%, 58%) 50%, hsl(40, 60%, 33%) 100%);
}

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

.statistics-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(40, 60%, 18%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.statistics-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(40, 60%, 58%);
}

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

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

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

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: hsl(40, 60%, 58%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

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

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

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

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(40, 60%, 18%);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    line-height: 1.5;
}

.stat-context {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    color: #888;
    margin-top: 8px;
    font-style: italic;
}

@media (max-width: 768px) {
    #statistics {
        padding: 60px 0;
    }
    
    .statistics-header h2 {
        font-size: 2rem;
    }
    
    .statistics-header p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

footer {
  background: linear-gradient(135deg, hsl(40, 60%, 18%) 0%, hsl(40, 60%, 25%) 100%);
  color: #f8f9fa;
  padding: 4rem 0 1.5rem;
  margin-top: 5rem;
  font-family: 'Raleway', sans-serif;
}

footer h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: hsl(40, 60%, 58%);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

footer ul li {
  margin-bottom: 0.7rem;
  position: relative;
  padding-left: 1.2rem;
}

footer ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: hsl(40, 60%, 58%);
  font-weight: bold;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 0.7rem;
}

.footer-contact-item i {
  color: hsl(40, 60%, 58%);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  min-width: 20px;
}

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

.footer-description {
  color: #dee2e6;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: hsl(40, 60%, 58%);
  margin-bottom: 1rem;
  display: block;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, hsl(40, 60%, 18%), hsl(40, 60%, 25%));
  color: #f8f9fa;
  padding: 2rem 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  font-family: 'Raleway', sans-serif;
  border-top: 3px solid hsl(40, 60%, 58%);
}

#cookieNotice h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: hsl(40, 60%, 58%);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

#cookieNotice p {
  color: #e9ecef;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.cookie-categories {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  padding: 0.5rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.cookie-category:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cookie-category-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-weight: bold;
  font-size: 0.85rem;
}

.cookie-essential .cookie-category-icon {
  background: #28a745;
  color: white;
}

.cookie-analytics .cookie-category-icon {
  background: #17a2b8;
  color: white;
}

.cookie-marketing .cookie-category-icon {
  background: #ffc107;
  color: #333;
}

.cookie-category-text {
  flex: 1;
}

.cookie-category-title {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

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

.cookie-category-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

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

.cookie-btn {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cookie-btn-accept {
  background: #28a745;
  color: white;
}

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

.cookie-btn-reject {
  background: #6c757d;
  color: white;
}

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

.cookie-btn-settings {
  background: transparent;
  color: hsl(40, 60%, 58%);
  border: 2px solid hsl(40, 60%, 58%);
}

.cookie-btn-settings:hover {
  background: hsl(40, 60%, 58%);
  color: hsl(40, 60%, 18%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  footer {
    padding: 3rem 0 1rem;
  }
  
  footer h5 {
    margin-top: 2rem;
  }
  
  footer h5:first-child {
    margin-top: 0;
  }
  
  #cookieNotice {
    padding: 1.5rem 0;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-categories {
    padding: 1rem;
  }
}

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

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

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

.contact-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(40, 60%, 18%);
    margin-bottom: 1rem;
    text-align: center;
}

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

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

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

.contact-info-item:hover {
    background: hsl(40, 60%, 95%);
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: hsl(40, 60%, 33%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

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

.contact-info-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(40, 60%, 18%);
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

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

.contact-info-content a:hover {
    color: hsl(40, 60%, 25%);
    text-decoration: underline;
}

.contact-form-wrapper h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(40, 60%, 18%);
    margin-bottom: 1.5rem;
}

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

.form-control, .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #333;
    background: #ffffff;
}

.form-control:focus, .form-select:focus {
    border-color: hsl(40, 60%, 33%);
    box-shadow: 0 0 0 0.2rem hsla(40, 60%, 33%, 0.15);
    outline: none;
}

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

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

.btn-submit {
    background: hsl(40, 60%, 33%);
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: hsl(40, 60%, 25%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    color: #ffffff;
}

.required-mark {
    color: #dc3545;
    margin-left: 3px;
}

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

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

.working-hours-list li strong {
    color: hsl(40, 60%, 18%);
}

@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-item {
        padding: 1.2rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-section h2 {
        font-size: 1.75rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 1rem;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .btn-submit {
        padding: 0.875rem 2rem;
    }
}

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

  :root {
    --primary-color: hsl(40, 60%, 33%);
    --secondary-color: hsl(40, 60%, 18%);
    --accent-color: hsl(40, 60%, 58%);
  }

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

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

  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--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.4rem;
    color: var(--primary-color);
  }

  .policy-content p {
    margin-bottom: 1.2rem;
    font-weight: 400;
    font-size: 1.05rem;
  }

  .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: 2px solid var(--accent-color);
  }

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

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

  .policy-content strong {
    color: var(--primary-color);
    font-weight: 600;
  }

  .info-box {
    background: linear-gradient(135deg, hsl(40, 60%, 95%) 0%, hsl(40, 60%, 90%) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

  .cookie-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .cookie-table th {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
    font-family: 'Inter', sans-serif;
  }

  .cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #ddd;
  }

  .cookie-table tr:hover {
    background: hsl(40, 60%, 97%);
  }

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

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

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

#faq .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(40, 60%, 18%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

#faq .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(40, 60%, 58%);
    border-radius: 2px;
}

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

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

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

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

#faq .accordion-button {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(40, 60%, 18%);
    background-color: #ffffff;
    padding: 25px 30px;
    border: none;
    transition: all 0.3s ease;
}

#faq .accordion-button:not(.collapsed) {
    background-color: hsl(40, 60%, 33%);
    color: #ffffff;
    box-shadow: none;
}

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

#faq .accordion-button::after {
    width: 24px;
    height: 24px;
    background-size: 24px;
    transition: transform 0.3s ease;
}

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

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

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

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

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

#faq .accordion-body li {
    margin-bottom: 10px;
    color: #444;
}

#faq .accordion-body strong {
    color: hsl(40, 60%, 33%);
    font-weight: 600;
}

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

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

#newsletter {
  background: linear-gradient(135deg, hsl(40, 60%, 33%) 0%, hsl(40, 60%, 18%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

#newsletter::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(40, 60%, 58%);
  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(40, 60%, 58%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.newsletter-input {
  width: 100%;
  padding: 18px 25px;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  border: 2px solid transparent;
  border-radius: 50px;
  background: #fff;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.newsletter-input:focus {
  outline: none;
  border-color: hsl(40, 60%, 58%);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

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

.newsletter-submit {
  width: 100%;
  padding: 18px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: hsl(40, 60%, 58%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.newsletter-submit:hover {
  background: hsl(40, 70%, 63%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

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

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

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

.benefit-icon {
  width: 20px;
  height: 20px;
  background: hsl(40, 60%, 58%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

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

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

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

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

  .newsletter-benefits {
    gap: 20px;
  }

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

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

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

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

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

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

:root {
  --primary: hsl(40, 60%, 33%);
  --secondary: hsl(40, 60%, 18%);
  --accent: hsl(40, 60%, 58%);
}

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

.hero-section h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--secondary);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.8rem;
  line-height: 1.4;
}

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

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

.hero-advantages li {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  color: #2c2c2c;
  padding: 0.7rem 0 0.7rem 2.5rem;
  position: relative;
  line-height: 1.6;
}

.hero-advantages li:before {
  content: '\F26B';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: bold;
}

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

.btn-hero-primary {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-hero-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-hero-secondary {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-hero-secondary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.hero-image-wrapper {
  position: relative;
  padding: 1rem;
}

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

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

@media (max-width: 991px) {
  .hero-section {
    padding: 60px 0 40px;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .hero-section h2 {
    font-size: 1.3rem;
  }
  
  .hero-image-wrapper {
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 1.9rem;
  }
  
  .hero-section h2 {
    font-size: 1.15rem;
  }
  
  .hero-section p,
  .hero-advantages li {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }
}

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

.offer-section {
  font-family: 'Raleway', sans-serif;
  background: linear-gradient(135deg, hsl(40, 60%, 95%) 0%, hsl(40, 40%, 98%) 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(40, 60%, 58%, 0.15) 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(40, 60%, 33%, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, hsl(40, 60%, 58%) 0%, hsl(40, 70%, 48%) 100%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.offer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: hsl(40, 60%, 18%);
  margin-bottom: 25px;
  line-height: 1.2;
}

.offer-description {
  font-size: 1.15rem;
  color: #444;
  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 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  margin-top: 40px;
  border: 3px solid hsl(40, 60%, 58%);
  position: relative;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, hsl(40, 60%, 58%) 0%, hsl(40, 70%, 48%) 50%, hsl(40, 60%, 58%) 100%);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
  filter: blur(10px);
}

.deadline-wrapper {
  background: linear-gradient(135deg, hsl(40, 60%, 33%) 0%, hsl(40, 60%, 18%) 100%);
  padding: 35px;
  border-radius: 15px;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

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

.calendar-icon {
  width: 60px;
  height: 60px;
  background: hsl(40, 60%, 58%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 15px;
  background: hsl(40, 60%, 97%);
  border-radius: 12px;
  border-left: 4px solid hsl(40, 60%, 58%);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, hsl(40, 60%, 58%) 0%, hsl(40, 70%, 48%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.benefit-text {
  flex: 1;
}

.benefit-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: hsl(40, 60%, 18%);
  margin-bottom: 8px;
}

.benefit-text p {
  font-size: 1rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.discount-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
  transform: rotate(-5deg);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, hsl(40, 60%, 58%) 0%, hsl(40, 70%, 48%) 100%);
  color: #fff;
  padding: 18px 50px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, hsl(40, 70%, 48%) 0%, hsl(40, 60%, 58%) 100%);
  color: #fff;
}

.cta-button i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .offer-section {
    padding: 60px 0;
  }
  
  .offer-heading {
    font-size: 2rem;
  }
  
  .offer-description {
    font-size: 1rem;
  }
  
  .offer-card {
    padding: 35px 25px;
  }
  
  .deadline-date {
    font-size: 2.2rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .calendar-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .discount-badge {
    position: static;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 1.4rem;
    transform: rotate(0deg);
  }
  
  .benefit-item {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-button {
    padding: 15px 35px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }
}

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

.credentials-section .section-title {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(40, 60%, 18%);
  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: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

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

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

.testimonials-section h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(40, 60%, 18%);
  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;
}

.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(40, 60%, 33%) 0%, hsl(40, 60%, 28%) 100%);
  color: #ffffff;
}

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

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

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

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.customer-info {
  flex: 1;
}

.customer-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: hsl(40, 60%, 18%);
  margin-bottom: 5px;
}

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

.customer-location i {
  color: hsl(40, 60%, 58%);
}

.rating {
  display: flex;
  gap: 3px;
  margin-top: 5px;
}

.rating i {
  color: #ffc107;
  font-size: 1rem;
}

.rating i.far {
  color: #ddd;
}

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

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
  font-size: 0.85rem;
  color: #999;
}

.testimonial-card.featured .testimonial-meta {
  border-top-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #28a745;
  font-weight: 500;
}

.testimonial-card.featured .verified-badge {
  color: #90ee90;
}

.verified-badge i {
  font-size: 1rem;
}

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

.testimonial-stats {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  flex: 1;
  min-width: 150px;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(40, 60%, 33%);
  margin-bottom: 5px;
}

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

.highlight-text {
  color: hsl(40, 60%, 33%);
  font-weight: 600;
}

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

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

@media (max-width: 768px) {
  .testimonials-section {
    padding: 50px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .stats-row {
    flex-direction: column;
    gap: 20px;
  }
}

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

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

.blog-preview-section .section-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(40, 60%, 18%);
  margin-bottom: 15px;
}

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

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

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

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

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

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

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

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

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

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

.blog-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: hsl(40, 60%, 18%);
  margin-bottom: 14px;
  line-height: 1.4;
}

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

.blog-card-title a:hover {
  color: hsl(40, 60%, 33%);
}

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

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

.blog-read-more:hover {
  color: hsl(40, 60%, 18%);
  gap: 12px;
}

.blog-read-more i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

  .btn-view-all {
    padding: 14px 35px;
    font-size: 1rem;
  }
}

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

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

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(40, 60%, 33%) 0%, hsl(40, 60%, 58%) 100%);
}

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

.services-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(40, 60%, 18%);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

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

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

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

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

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

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

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

.service-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: hsl(40, 60%, 18%);
  margin-bottom: 15px;
  line-height: 1.3;
}

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

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

.service-price {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(40, 60%, 33%);
}

.service-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #777;
  display: block;
  margin-top: 3px;
}

.service-btn {
  padding: 10px 24px;
  background: hsl(40, 60%, 33%);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-btn:hover {
  background: hsl(40, 60%, 18%);
  color: #ffffff;
  transform: translateX(5px);
}

.service-terms {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  margin-top: 60px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(40, 60%, 58%);
}

.service-terms h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: hsl(40, 60%, 18%);
  margin-bottom: 25px;
}

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

.terms-list li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}

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

.terms-list li::before {
  content: '\f26a';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: hsl(40, 60%, 58%);
  font-size: 1.2rem;
  font-weight: bold;
}

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

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

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

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

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

  .service-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .service-terms {
    padding: 25px 20px;
  }

  .service-terms h3 {
    font-size: 1.4rem;
  }
}

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

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

.disclaimer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(40, 60%, 33%) 0%, hsl(40, 60%, 58%) 100%);
}

.disclaimer-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.disclaimer-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, hsl(40, 60%, 58%) 0%, hsl(40, 60%, 33%) 100%);
  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.1);
}

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

.disclaimer-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin: 0;
  letter-spacing: -0.5px;
}

.disclaimer-content {
  background: #ffffff;
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-left: 5px solid hsl(40, 60%, 33%);
}

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

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

  .disclaimer-title {
    font-size: 2rem;
  }

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

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

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

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

@media (max-width: 480px) {
  .disclaimer-title {
    font-size: 1.75rem;
  }

  .disclaimer-content {
    padding: 30px 20px;
  }

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

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

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

  :root {
    --primary-color: hsl(40, 60%, 33%);
    --secondary-color: hsl(40, 60%, 18%);
    --accent-color: hsl(40, 60%, 58%);
  }

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

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

  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--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: 1rem;
    font-weight: 400;
    font-size: 1.05rem;
  }

  .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: 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(--primary-color);
    font-weight: 600;
  }

  .info-box {
    background: linear-gradient(135deg, hsl(40, 60%, 95%), hsl(40, 60%, 98%));
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .contact-details {
    background: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
  }

  .contact-details h3 {
    color: var(--accent-color);
    margin-top: 0;
  }

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

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

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

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

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

  :root {
    --primary-color: hsl(40, 60%, 33%);
    --secondary-color: hsl(40, 60%, 18%);
    --accent-color: hsl(40, 60%, 58%);
  }

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

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

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

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

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

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

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

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

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

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

  .policy-content strong {
    color: var(--primary-color);
    font-weight: 600;
  }

  .info-box {
    background-color: hsl(40, 60%, 95%);
    border-left: 5px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }

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

  .contact-info h3 {
    color: var(--accent-color);
  }

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

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

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

  .section-divider {
    border-top: 2px solid var(--accent-color);
    margin: 2.5rem 0;
    opacity: 0.3;
  }