:root {
            --primary-color: hsl(59, 31%, 36%);
            --secondary-color: hsl(59, 31%, 21%);
            --accent-color: hsl(59, 31%, 61%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Lora', serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            color: var(--secondary-color);
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 15px;
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--primary-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: 'Lora', serif;
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            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 {
            color: var(--primary-color);
        }
        
        .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(134, 142, 92, 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='%23868e5c' 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: #fff;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            }
            
            .nav-link::after {
                display: none;
            }
        }

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

.about-section h2 {
  font-family: 'Oswald', sans-serif;
  color: hsl(59, 31%, 21%);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section h3 {
  font-family: 'Oswald', sans-serif;
  color: hsl(59, 31%, 36%);
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 35px;
  margin-bottom: 18px;
}

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

.about-section .lead-text {
  font-size: 1.2rem;
  color: hsl(59, 31%, 21%);
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.7;
}

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

.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-list {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid hsl(59, 31%, 36%);
  margin-top: 25px;
}

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

.values-list li {
  color: #333333;
  font-size: 1.05rem;
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
}

.values-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: hsl(59, 31%, 36%);
  font-weight: bold;
  font-size: 1.3rem;
}

.mission-box {
  background: linear-gradient(135deg, hsl(59, 31%, 36%) 0%, hsl(59, 31%, 21%) 100%);
  color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  margin: 30px 0;
}

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

.mission-box p {
  color: #ffffff;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-section h2 {
    font-size: 2rem;
  }
  
  .about-section h3 {
    font-size: 1.5rem;
  }
  
  .about-section p,
  .values-list li {
    font-size: 1rem;
  }
  
  .mission-box {
    padding: 25px;
  }
}

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

.portfolio-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: hsl(59, 31%, 21%);
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.filter-btn {
  padding: 12px 28px;
  border: 2px solid hsl(59, 31%, 36%);
  background: transparent;
  color: hsl(59, 31%, 21%);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

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

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

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

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

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

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

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

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

.portfolio-category {
  display: inline-block;
  padding: 6px 14px;
  background: hsl(59, 31%, 61%);
  color: hsl(59, 31%, 21%);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 3px;
  margin-bottom: 10px;
  width: fit-content;
}

.portfolio-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.portfolio-description {
  color: #f0f0f0;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.view-details {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: hsl(59, 31%, 61%);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.view-details:hover {
  gap: 12px;
  color: #fff;
}

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

.modal-header {
  background: hsl(59, 31%, 36%);
  color: #fff;
  border-bottom: none;
  padding: 25px 30px;
}

.modal-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-body {
  padding: 35px 30px;
  color: #333;
}

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

.project-info h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: hsl(59, 31%, 21%);
  margin-bottom: 15px;
  margin-top: 25px;
  text-transform: uppercase;
}

.project-info p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
}

.project-details-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.project-details-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  color: #333;
}

.project-details-list li strong {
  color: hsl(59, 31%, 21%);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
}

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

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

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

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

  .filter-buttons {
    gap: 10px;
  }

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

  .portfolio-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  }

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

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

  .advantages-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(59, 31%, 61%, 0.1) 0%, transparent 70%);
    border-radius: 50%;
  }

  .advantages-section .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: hsl(59, 31%, 21%);
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .advantages-section .section-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    color: #555;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

  .advantage-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    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(59, 31%, 36%) 0%, hsl(59, 31%, 61%) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

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

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

  .advantage-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, hsl(59, 31%, 36%) 0%, hsl(59, 31%, 61%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
  }

  .advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

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

  .advantage-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(59, 31%, 21%);
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .advantage-description {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #666;
    text-align: center;
    line-height: 1.7;
    margin: 0;
  }

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

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

    .advantages-section .section-subtitle {
      font-size: 1rem;
      margin-bottom: 40px;
    }

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

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

    .advantage-icon i {
      font-size: 1.7rem;
    }

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

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

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

.statistics-section .section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: hsl(59, 31%, 21%);
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.statistics-section .section-subtitle {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: hsl(59, 31%, 36%);
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: hsl(59, 31%, 61%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

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

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, hsl(59, 31%, 36%), hsl(59, 31%, 61%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

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

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

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(59, 31%, 21%);
  margin-bottom: 8px;
  display: block;
  line-height: 1.2;
}

.stat-label {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: hsl(59, 31%, 36%);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 5px;
}

.stat-context {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  color: #666;
  font-style: italic;
  margin-top: 8px;
}

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

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

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

  .statistics-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

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

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

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

@media (min-width: 1400px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

footer {
  background: linear-gradient(135deg, hsl(59, 31%, 21%) 0%, hsl(59, 31%, 36%) 100%);
  color: #fff;
  padding: 60px 0 20px;
  font-family: 'Lora', serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: hsl(59, 31%, 61%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

footer a {
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

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

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

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

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

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

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

.footer-description {
  margin-bottom: 25px;
  line-height: 1.7;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 25px 0;
  border-top: 3px solid hsl(59, 31%, 36%);
}

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

.cookie-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: hsl(59, 31%, 21%);
  margin-bottom: 15px;
  font-weight: 600;
}

.cookie-text {
  font-family: 'Lora', serif;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.95rem;
}

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

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

.cookie-category-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: hsl(59, 31%, 21%);
  margin-bottom: 5px;
  font-weight: 600;
}

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

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

.cookie-category.optional {
  border-left-color: #6c757d;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.cookie-btn {
  font-family: 'Oswald', sans-serif;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.5px;
}

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

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

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

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

.cookie-btn-settings {
  background: transparent;
  color: hsl(59, 31%, 21%);
  border: 2px solid hsl(59, 31%, 36%);
}

.cookie-btn-settings:hover {
  background: hsl(59, 31%, 36%);
  color: #fff;
  transform: translateY(-2px);
}

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

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

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

  .cookie-btn {
    width: 100%;
  }

  #cookieNotice {
    padding: 20px 0;
  }

  .cookie-title {
    font-size: 1.3rem;
  }
}

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Lora, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(59, 31%, 36%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Oswald, sans-serif; color: hsl(59, 31%, 21%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(59, 31%, 36%); }
.article-hero-img { width: 100%; height: auto; border-radius: 12px; margin-bottom: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.blog-article h2 { color: hsl(59, 31%, 21%); font-family: Oswald, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(59, 31%, 21%); font-family: Oswald, sans-serif; }
.blog-article a { color: hsl(59, 31%, 36%); }
.blog-article a:hover { color: hsl(59, 31%, 61%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(59, 31%, 36%); 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 {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
  font-family: 'Lora', serif;
  color: #333;
}

.contact-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  color: hsl(59, 31%, 21%);
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-section .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
  line-height: 1.6;
}

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

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

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: hsl(59, 31%, 36%);
  border-radius: 50%;
  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: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: hsl(59, 31%, 21%);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

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

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

.contact-info-content a:hover {
  color: hsl(59, 31%, 21%);
  text-decoration: underline;
}

.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: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: hsl(59, 31%, 21%);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.form-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: hsl(59, 31%, 36%);
  box-shadow: 0 0 0 0.2rem rgba(134, 142, 84, 0.15);
  outline: none;
}

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

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

.btn-submit {
  background: hsl(59, 31%, 36%);
  color: #ffffff;
  border: none;
  padding: 1rem 3rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.btn-submit:hover {
  background: hsl(59, 31%, 21%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

.working-hours-list li {
  padding: 0.4rem 0;
  color: #555;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
}

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

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

.urgent-notice {
  background: linear-gradient(135deg, hsl(59, 31%, 36%) 0%, hsl(59, 31%, 21%) 100%);
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  text-align: center;
}

.urgent-notice p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

@media (max-width: 991px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-section h2 {
    font-size: 2.2rem;
  }
  
  .contact-form-card {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 50px 0;
  }
  
  .contact-section h2 {
    font-size: 1.8rem;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem;
  }
  
  .btn-submit {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

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

  :root {
    --primary-color: hsl(59, 31%, 36%);
    --secondary-color: hsl(59, 31%, 21%);
    --accent-color: hsl(59, 31%, 61%);
  }

  body {
    font-family: 'Lora', serif;
    color: #333;
    line-height: 1.8;
  }

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

  .policy-content h1 {
    font-size: 2.75rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .policy-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 3rem;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }

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

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

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

  .policy-content a:hover {
    color: var(--secondary-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(--secondary-color);
    font-weight: 700;
  }

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

  .info-box p:last-child {
    margin-bottom: 0;
  }

  .cookie-table {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .cookie-table th {
    background-color: var(--primary-color);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .cookie-table td {
    background-color: #f8f9fa;
  }

  .cookie-table tbody tr:hover td {
    background-color: var(--accent-color);
    transition: background-color 0.3s ease;
  }

  .last-updated {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
  }

  .contact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  }

  .contact-section h2 {
    color: white;
    border-left-color: var(--accent-color);
  }

  .contact-section a {
    color: var(--accent-color);
    font-weight: 600;
  }

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

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

.faq-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: hsl(59, 31%, 21%);
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

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

.accordion-button {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: hsl(59, 31%, 21%);
  background-color: #ffffff;
  padding: 1.5rem 1.8rem;
  border: none;
  transition: all 0.3s ease;
}

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

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

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

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

.accordion-body {
  background-color: #ffffff;
  padding: 1.8rem;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
  border-top: 2px solid hsl(59, 31%, 61%);
}

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

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

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

.faq-cta {
  text-align: center;
  margin-top: 3.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, hsl(59, 31%, 36%) 0%, hsl(59, 31%, 21%) 100%);
  border-radius: 15px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-cta h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.faq-cta p {
  color: #f8f9fa;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.faq-cta-btn {
  display: inline-block;
  background-color: hsl(59, 31%, 61%);
  color: hsl(59, 31%, 21%);
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-cta-btn:hover {
  background-color: #ffffff;
  color: hsl(59, 31%, 21%);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

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

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

  .faq-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .accordion-button {
    font-size: 1.05rem;
    padding: 1.2rem 1.3rem;
  }

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

  .faq-cta {
    padding: 2rem 1.5rem;
  }

  .faq-cta h3 {
    font-size: 1.5rem;
  }

  .faq-cta p {
    font-size: 1rem;
  }
}

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

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

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(59, 31%, 61%);
    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(59, 31%, 61%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.newsletter-icon svg {
    width: 35px;
    height: 35px;
    fill: hsl(59, 31%, 21%);
}

.newsletter-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.newsletter-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    font-family: 'Lora', 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(59, 31%, 61%);
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

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

.newsletter-submit {
    padding: 18px 45px;
    background: hsl(59, 31%, 61%);
    color: hsl(59, 31%, 21%);
    border: none;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.newsletter-submit:hover {
    background: hsl(59, 31%, 55%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

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

.newsletter-privacy {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-top: 15px;
}

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

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

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

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

.newsletter-benefit svg {
    width: 20px;
    height: 20px;
    fill: hsl(59, 31%, 61%);
    flex-shrink: 0;
}

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

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

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

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

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

    .newsletter-benefits {
        gap: 20px;
    }

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

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

    .newsletter-input {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

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

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

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

  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: hsl(59, 31%, 61%, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
  }

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

  .hero-section h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: hsl(59, 31%, 21%);
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .hero-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(59, 31%, 36%);
    margin-bottom: 30px;
    line-height: 1.4;
  }

  .hero-description {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 35px;
    text-align: justify;
  }

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

  .hero-advantages li {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    color: #222;
    padding: 15px 0 15px 50px;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .hero-advantages li:last-child {
    border-bottom: none;
  }

  .hero-advantages li i {
    position: absolute;
    left: 0;
    top: 15px;
    width: 35px;
    height: 35px;
    background: hsl(59, 31%, 61%);
    color: hsl(59, 31%, 21%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
  }

  .hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
  }

  .hero-btn-primary {
    font-family: 'Oswald', sans-serif;
    background: hsl(59, 31%, 36%);
    color: #ffffff;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid hsl(59, 31%, 36%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .hero-btn-primary:hover {
    background: hsl(59, 31%, 21%);
    border-color: hsl(59, 31%, 21%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  .hero-btn-secondary {
    font-family: 'Oswald', sans-serif;
    background: transparent;
    color: hsl(59, 31%, 36%);
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid hsl(59, 31%, 36%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .hero-btn-secondary:hover {
    background: hsl(59, 31%, 36%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .hero-image-wrapper {
    margin-top: 60px;
    position: relative;
  }

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

  .hero-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: hsl(59, 31%, 36%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }

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

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

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

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

    .hero-advantages li {
      font-size: 1rem;
      padding-left: 45px;
    }

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

    .hero-btn-primary,
    .hero-btn-secondary {
      width: 100%;
      justify-content: center;
      padding: 14px 30px;
      font-size: 1rem;
    }

    .hero-badge {
      font-size: 0.85rem;
      padding: 12px 20px;
      right: 10px;
    }
  }

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

#credentials h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: hsl(59, 31%, 21%);
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.credential-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.credential-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border-color: hsl(59, 31%, 61%);
}

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

.credential-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  #credentials h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  #credentials {
    padding: 40px 0;
  }
  
  #credentials h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
  
  .credential-card {
    padding: 25px 15px;
  }
  
  .credential-icon {
    font-size: 2.5rem;
  }
}

.offer-section {
  background: linear-gradient(135deg, hsl(59, 31%, 96%) 0%, hsl(59, 31%, 88%) 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(59, 31%, 61%, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

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

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

.offer-badge {
  display: inline-block;
  background: hsl(59, 31%, 36%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.offer-title {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: hsl(59, 31%, 21%);
  margin-bottom: 24px;
  line-height: 1.2;
}

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

.offer-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  margin-top: 40px;
}

.deadline-wrapper {
  background: linear-gradient(135deg, hsl(59, 31%, 36%) 0%, hsl(59, 31%, 21%) 100%);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.deadline-label {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.deadline-icon {
  font-size: 48px;
  color: hsl(59, 31%, 61%);
  margin-bottom: 10px;
}

.offer-benefits {
  margin: 40px 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 20px;
  background: hsl(59, 31%, 96%);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: hsl(59, 31%, 92%);
  transform: translateX(10px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: hsl(59, 31%, 36%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 20px;
}

.benefit-text {
  flex: 1;
}

.benefit-text h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  color: hsl(59, 31%, 21%);
  margin-bottom: 8px;
  font-weight: 600;
}

.benefit-text p {
  font-family: 'Lora', serif;
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.discount-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

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

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

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

.offer-note {
  font-family: 'Lora', serif;
  font-size: 14px;
  color: #666;
  margin-top: 20px;
  font-style: italic;
}

@media (max-width: 768px) {
  .offer-section {
    padding: 60px 0;
  }
  
  .offer-title {
    font-size: 36px;
  }
  
  .offer-description {
    font-size: 16px;
  }
  
  .offer-card {
    padding: 30px 20px;
  }
  
  .deadline-wrapper {
    padding: 30px 20px;
  }
  
  .deadline-date {
    font-size: 40px;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
  
  .benefit-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .discount-badge {
    font-size: 24px;
    padding: 12px 24px;
  }
  
  .btn-offer {
    font-size: 18px;
    padding: 15px 40px;
  }
}

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

.blog-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: hsl(59, 31%, 21%);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

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

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

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

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

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

.blog-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(59, 31%, 21%);
  margin-bottom: 1rem;
  line-height: 1.4;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

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

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

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(59, 31%, 36%);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.blog-read-more:hover {
  color: hsl(59, 31%, 21%);
  gap: 0.8rem;
}

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

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

.blog-view-all {
  text-align: center;
  margin-top: 3.5rem;
}

.btn-view-all {
  display: inline-block;
  padding: 14px 40px;
  background: hsl(59, 31%, 36%);
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid hsl(59, 31%, 36%);
}

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

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

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

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

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

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

  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

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

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

.services-section .section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  color: hsl(59, 31%, 21%);
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-section .section-subtitle {
  font-size: 1.15rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

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

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: hsl(59, 31%, 61%);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(59, 31%, 36%), hsl(59, 31%, 61%));
  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: 2rem;
  color: #ffffff;
}

.service-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: hsl(59, 31%, 21%);
  margin-bottom: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-description {
  font-size: 0.98rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: justify;
}

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

.service-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: hsl(59, 31%, 36%);
  font-weight: 700;
}

.service-price-label {
  font-size: 0.85rem;
  color: #777;
  display: block;
  margin-bottom: 5px;
}

.service-terms {
  font-size: 0.88rem;
  color: #666;
  text-align: right;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .services-section .section-title {
    font-size: 2.2rem;
  }
  
  .service-card {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 60px 0;
  }
  
  .services-section .section-title {
    font-size: 1.8rem;
  }
  
  .services-section .section-subtitle {
    font-size: 1rem;
  }
  
  .service-title {
    font-size: 1.3rem;
  }
  
  .service-description {
    font-size: 0.92rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  .service-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .service-terms {
    text-align: left;
  }
}

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

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: hsl(59, 31%, 61%);
  opacity: 0.05;
  border-radius: 50%;
}

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

.section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: hsl(59, 31%, 21%);
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header p {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 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(59, 31%, 61%);
}

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

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

.testimonial-card.compact {
  padding: 25px;
  background: #f8f9fa;
  border-left: 4px solid hsl(59, 31%, 36%);
}

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

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

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

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

.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(59, 31%, 61%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-card.featured .customer-avatar {
  background: #ffffff;
  color: hsl(59, 31%, 36%);
}

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

.customer-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: hsl(59, 31%, 21%);
  margin-bottom: 3px;
  font-weight: 600;
}

.customer-location {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: #666;
}

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

.quote-icon {
  font-size: 2.5rem;
  color: hsl(59, 31%, 61%);
  opacity: 0.3;
  margin-bottom: 10px;
}

.testimonial-card.featured .quote-icon {
  color: #ffffff;
  opacity: 0.2;
}

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

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

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

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

.disclaimer-icon {
  font-size: 48px;
  color: hsl(59, 31%, 36%);
  flex-shrink: 0;
}

.disclaimer-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: hsl(59, 31%, 21%);
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 40px 0;
  }
  
  .disclaimer-container {
    padding: 35px 25px;
    margin: 0 15px;
  }
  
  .disclaimer-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .disclaimer-icon {
    font-size: 40px;
  }
  
  .disclaimer-title {
    font-size: 2rem;
  }
  
  .disclaimer-content {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .disclaimer-title {
    font-size: 1.75rem;
  }
  
  .disclaimer-icon {
    font-size: 36px;
  }
  
  .disclaimer-container {
    padding: 30px 20px;
  }
}

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

  :root {
    --primary-color: hsl(59, 31%, 36%);
    --secondary-color: hsl(59, 31%, 21%);
    --accent-color: hsl(59, 31%, 61%);
  }

  body {
    font-family: 'Lora', serif;
    color: var(--secondary-color);
    line-height: 1.8;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4,
  .policy-content h5,
  .policy-content h6 {
    font-family: 'Oswald', sans-serif;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .policy-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .policy-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 20px;
  }

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

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

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

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

  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom-color: 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;
  }

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

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

  .contact-box p {
    margin-bottom: 0.5rem;
    color: white;
  }

  .contact-box a {
    color: white;
    border-bottom-color: white;
  }

  .contact-box a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
  }

  .highlight-box {
    background-color: rgba(59, 31%, 61%, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
  }

  .effective-date {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
  }

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

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

  :root {
    --primary-color: hsl(59, 31%, 36%);
    --secondary-color: hsl(59, 31%, 21%);
    --accent-color: hsl(59, 31%, 61%);
  }

  body {
    font-family: 'Lora', serif;
    color: #2c3e50;
    line-height: 1.8;
  }

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

  .policy-content h1 {
    font-size: 2.75rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .policy-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 3rem;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }

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

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

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

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

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

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

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

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

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

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

  .highlight-box {
    background-color: rgba(145, 145, 88, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
  }

  .last-updated {
    font-style: italic;
    color: #6c757d;
    font-size: 0.95rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--accent-color);
  }

  .section-number {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    font-family: 'Oswald', sans-serif;
  }