:root {
            --primary-color: hsl(22, 54%, 33%);
            --secondary-color: hsl(22, 54%, 18%);
            --accent-color: hsl(22, 54%, 58%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Source Sans Pro', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav {
            align-items: center;
            gap: 0.5rem;
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
            font-family: 'Source Sans Pro', sans-serif;
        }
        
        .nav-link:hover,
        .nav-link:focus {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(138, 82, 52, 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%28138, 82, 52, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                padding: 1rem 0;
                gap: 0;
            }
            
            .nav-link {
                padding: 0.75rem 1rem;
                border-bottom: 1px solid #f0f0f0;
            }
        }

.about-section {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #ffffff;
  padding: 80px 0;
}

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

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

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

.about-intro {
  background: linear-gradient(135deg, hsl(22, 54%, 33%) 0%, hsl(22, 54%, 18%) 100%);
  padding: 60px 0;
  margin-bottom: 60px;
}

.about-intro h2 {
  color: #ffffff;
  text-align: center;
  font-size: 3rem;
}

.about-intro .lead {
  color: #f8f9fa;
  text-align: center;
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

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

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

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

.stats-row {
  background-color: hsl(22, 54%, 33%);
  padding: 50px 0;
  margin: 60px 0;
}

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

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

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

.expertise-area {
  background-color: #f5f5f5;
  padding: 40px;
  border-radius: 8px;
  margin-top: 40px;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.expertise-list li {
  color: #333333;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.1rem;
  position: relative;
  padding-left: 30px;
}

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

.expertise-list li:before {
  content: "✓";
  color: hsl(22, 54%, 58%);
  font-weight: 700;
  position: absolute;
  left: 0;
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-intro h2 {
    font-size: 2rem;
  }
  
  .about-section h2 {
    font-size: 2rem;
  }
  
  .about-section h3 {
    font-size: 1.5rem;
  }
  
  .about-image {
    height: 300px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

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

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

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

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

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

  .portfolio-header p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
  }

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

  .filter-btn {
    font-family: 'Source Sans Pro', sans-serif;
    padding: 12px 28px;
    border: 2px solid hsl(22, 54%, 33%);
    background: transparent;
    color: hsl(22, 54%, 33%);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(22, 54%, 33%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

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

  .portfolio-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 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 12px 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(94, 56, 33, 0.9), rgba(94, 56, 33, 0.7));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .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(22, 54%, 33%);
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
  }

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

  .portfolio-content {
    padding: 28px;
  }

  .portfolio-category {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.9rem;
    color: hsl(22, 54%, 58%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }

  .portfolio-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(22, 54%, 18%);
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .portfolio-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(22, 54%, 33%) 0%, hsl(22, 54%, 18%) 100%);
    color: #fff;
    border-radius: 12px 12px 0 0;
    padding: 25px 30px;
  }

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

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

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

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

  .modal-detail-section {
    margin-bottom: 25px;
  }

  .modal-detail-section h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: hsl(22, 54%, 18%);
    margin-bottom: 12px;
  }

  .modal-detail-section p,
  .modal-detail-section ul {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
  }

  .modal-detail-section ul {
    padding-left: 20px;
  }

  .modal-detail-section ul li {
    margin-bottom: 10px;
  }

  .modal-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #e9ecef;
  }

  .modal-info-item strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: hsl(22, 54%, 33%);
    display: block;
    margin-bottom: 5px;
  }

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

    .portfolio-header h2 {
      font-size: 2.2rem;
    }

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

    .filter-buttons {
      gap: 10px;
    }

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

    .modal-info-grid {
      grid-template-columns: 1fr;
    }
  }

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

    .portfolio-header p {
      font-size: 1.05rem;
    }

    .portfolio-image {
      height: 220px;
    }

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

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

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

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

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

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

.advantages-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(22, 54%, 33%) 0%, hsl(22, 54%, 58%) 100%);
    transform: scaleX(0);
    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(22, 54%, 58%);
}

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

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

.advantage-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: hsl(22, 54%, 58%);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

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

.advantage-card:hover .advantage-icon::after {
    opacity: 0.3;
    transform: scale(1.3);
}

.advantage-icon i {
    font-size: 2rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.advantage-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: hsl(22, 54%, 18%);
    margin-bottom: 15px;
    text-align: center;
}

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

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

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

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

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

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

.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(22, 54%, 33%) 0%, hsl(22, 54%, 18%) 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

.statistics-section .section-subtitle {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: hsl(22, 54%, 58%);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

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

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

.stat-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.5;
}

.stat-context {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    font-style: italic;
}

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

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

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

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

@media (max-width: 576px) {
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.75rem;
    }
}

footer {
  background: linear-gradient(135deg, hsl(22, 54%, 18%) 0%, hsl(22, 54%, 33%) 100%);
  color: #f8f9fa;
  padding: 60px 0 0;
  margin-top: 80px;
  font-family: 'Source Sans Pro', sans-serif;
}

footer h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
  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.8;
}

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

footer a:hover {
  color: hsl(22, 54%, 58%);
  padding-left: 5px;
}

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

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

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

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

.contact-info-item i {
  color: hsl(22, 54%, 58%);
  margin-right: 12px;
  margin-top: 3px;
  font-size: 1.1rem;
}

.footer-bottom {
  background: hsl(22, 54%, 18%);
  padding: 25px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.policy-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.policy-links a {
  color: #dee2e6;
  font-size: 0.9rem;
}

.policy-links a:hover {
  color: hsl(22, 54%, 58%);
  padding-left: 0;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 30px 0;
  border-top: 3px solid hsl(22, 54%, 58%);
}

.cookie-content h4 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(22, 54%, 18%);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.cookie-content p {
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #dee2e6;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-info h6 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(22, 54%, 33%);
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.cookie-category-info p {
  color: #666666;
  margin: 0;
  font-size: 0.85rem;
}

.cookie-category-status {
  font-size: 0.85rem;
  color: #6c757d;
  font-weight: 600;
}

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

.btn-accept-all {
  background: #28a745;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

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

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

.btn-manage-settings {
  background: transparent;
  color: hsl(22, 54%, 33%);
  border: 2px solid hsl(22, 54%, 33%);
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-manage-settings:hover {
  background: hsl(22, 54%, 33%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

  .cookie-buttons button,
  .cookie-buttons a {
    width: 100%;
    text-align: center;
  }

  .policy-links {
    flex-direction: column;
    gap: 10px;
  }
}

.blog-page { padding: 4rem 0; }
.blog-page h1 { margin-bottom: 3rem; text-align: center; }
.blog-card { margin-bottom: 2rem; transition: transform 0.3s; overflow: hidden; }
.blog-card:hover { transform: translateY(-5px); }
.blog-card .card-img-top { height: 200px; object-fit: cover; }
.blog-meta { font-size: 0.9rem; color: #888; margin-bottom: 1rem; }

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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

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

  .contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsla(22, 54%, 58%, 0.08) 0%, transparent 70%);
    border-radius: 50%;
  }

  .contact-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
  }

  .contact-section .section-subtitle {
    color: hsl(22, 54%, 58%);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }

  .contact-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(22, 54%, 18%);
    margin-bottom: 18px;
    line-height: 1.2;
  }

  .contact-section .section-description {
    font-size: 1.1rem;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .contact-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    border: 1px solid #e9ecef;
  }

  .contact-form-wrapper h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: hsl(22, 54%, 18%);
    margin-bottom: 28px;
  }

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

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

  .contact-form .form-control:focus,
  .contact-form .form-select:focus {
    border-color: hsl(22, 54%, 58%);
    box-shadow: 0 0 0 0.2rem hsla(22, 54%, 58%, 0.15);
    background: #ffffff;
    outline: none;
  }

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

  .contact-form .required-mark {
    color: hsl(22, 54%, 58%);
    margin-left: 3px;
  }

  .contact-form .btn-submit {
    background: hsl(22, 54%, 33%);
    color: #ffffff;
    border: none;
    padding: 14px 42px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 12px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
  }

  .contact-form .btn-submit:hover {
    background: hsl(22, 54%, 18%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .contact-info-wrapper {
    position: relative;
    z-index: 2;
  }

  .contact-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
  }

  .contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  }

  .contact-info-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: hsl(22, 54%, 18%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }

  .contact-info-card h4 .icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, hsl(22, 54%, 58%) 0%, hsl(22, 54%, 48%) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    color: #ffffff;
    font-size: 1.15rem;
  }

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

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

  .contact-info-item .item-icon {
    width: 32px;
    height: 32px;
    background: hsl(22, 54%, 95%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    color: hsl(22, 54%, 33%);
    font-size: 0.95rem;
  }

  .contact-info-item .item-content {
    flex: 1;
  }

  .contact-info-item .item-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 3px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .contact-info-item .item-value {
    font-size: 1.05rem;
    color: #222;
    line-height: 1.6;
  }

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

  .contact-info-item a:hover {
    color: hsl(22, 54%, 58%);
    text-decoration: underline;
  }

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

  .working-hours-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    color: #333;
    font-size: 0.98rem;
  }

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

  .working-hours-list .day {
    font-weight: 600;
    color: #222;
  }

  .working-hours-list .hours {
    color: #555;
  }

  .map-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    margin-top: 25px;
  }

  .map-wrapper h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: hsl(22, 54%, 18%);
    margin-bottom: 18px;
  }

  .map-placeholder {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e9ecef 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1rem;
    border: 2px dashed #d0d0d0;
  }

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

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

    .contact-form-wrapper {
      padding: 35px 25px;
      margin-bottom: 35px;
    }

    .contact-info-card {
      padding: 28px 22px;
    }
  }

  @media (max-width: 767px) {
    .contact-section h2 {
      font-size: 1.9rem;
    }

    .contact-form-wrapper {
      padding: 28px 20px;
    }

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

    .contact-info-card h4 {
      font-size: 1.2rem;
    }

    .map-placeholder {
      height: 250px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

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

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

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

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

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

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

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

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 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(--secondary-color);
    font-weight: 600;
  }

  .effective-date {
    background-color: hsl(22, 54%, 95%);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    font-style: italic;
  }

  .contact-box {
    background-color: hsl(22, 54%, 96%);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 3rem;
  }

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

  .cookie-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
  }

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

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

  .cookie-table tr:hover {
    background-color: hsl(22, 54%, 98%);
  }

  .highlight-box {
    background-color: hsl(22, 54%, 93%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
  }

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

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

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

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

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

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

  #faq .accordion-button {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(22, 54%, 18%);
    background-color: #ffffff;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
  }

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

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

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

  #faq .accordion-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");
  }

  #faq .accordion-body {
    padding: 1.5rem;
    background-color: #ffffff;
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid #e9ecef;
  }

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

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

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

  #faq .faq-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    color: hsl(22, 54%, 58%);
  }

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

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

    #faq .accordion-button {
      font-size: 1rem;
      padding: 1rem;
    }

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(22, 54%, 33%) 0%, hsl(22, 54%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 10L60 30L80 35L65 50L68 70L50 60L32 70L35 50L20 35L40 30z" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
}

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

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

.newsletter-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.125rem;
    color: #f8f9fa;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: hsl(22, 54%, 58%);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(188, 108, 64, 0.1);
}

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

.newsletter-submit {
    padding: 1rem 2.5rem;
    background: hsl(22, 54%, 58%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit:hover {
    background: hsl(22, 54%, 48%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

.newsletter-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f8f9fa;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.95rem;
}

.newsletter-benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(22, 54%, 58%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.75rem;
    flex-shrink: 0;
}

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

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

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

    .newsletter-input-group {
        flex-direction: column;
        gap: 1rem;
    }

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

    .newsletter-submit {
        width: 100%;
        padding: 1rem;
    }

    .newsletter-benefits {
        gap: 1rem;
    }

    .newsletter-benefit-item {
        font-size: 0.875rem;
    }
}

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

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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Source+Sans+Pro:wght@400;600&display=swap');

  .hero-section {
    background-color: #ffffff;
    padding: 80px 0 100px;
    font-family: 'Source Sans Pro', sans-serif;
  }

  .hero-section .container {
    max-width: 800px;
  }

  .hero-content {
    text-align: center;
    margin-bottom: 50px;
  }

  .hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: hsl(22, 54%, 18%);
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: hsl(22, 54%, 33%);
    font-size: 1.5rem;
    margin-bottom: 30px;
    line-height: 1.4;
  }

  .hero-image-wrapper {
    margin: 40px 0;
    text-align: center;
  }

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

  .hero-description {
    color: #333333;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 35px;
    text-align: left;
  }

  .hero-advantages {
    background-color: #f8f9fa;
    padding: 35px 40px;
    border-radius: 8px;
    margin: 40px 0;
    border-left: 4px solid hsl(22, 54%, 58%);
  }

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

  .hero-advantages li {
    color: #222222;
    font-size: 1.05rem;
    margin-bottom: 18px;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
  }

  .hero-advantages li:last-child {
    margin-bottom: 0;
  }

  .hero-advantages li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: hsl(22, 54%, 58%);
    font-size: 1.3rem;
  }

  .hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 45px;
  }

  .btn-primary-hero {
    background-color: hsl(22, 54%, 33%);
    color: #ffffff;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  }

  .btn-primary-hero:hover {
    background-color: hsl(22, 54%, 18%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  }

  .btn-secondary-hero {
    background-color: transparent;
    color: hsl(22, 54%, 33%);
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid hsl(22, 54%, 33%);
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
  }

  .btn-secondary-hero:hover {
    background-color: hsl(22, 54%, 33%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  }

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

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

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

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

    .hero-advantages {
      padding: 25px 20px;
    }

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

    .hero-cta {
      flex-direction: column;
      align-items: stretch;
    }

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

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

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

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

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

  .services-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: hsl(22, 54%, 18%);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }

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

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
  }

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

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

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

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

  .service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: hsl(22, 54%, 18%);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    flex-grow: 1;
  }

  .service-price {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: auto;
  }

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

  .service-price .price-amount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: hsl(22, 54%, 33%);
    font-size: 1.5rem;
  }

  .service-price .price-term {
    font-size: 0.85rem;
    color: #888;
    margin-left: 0.3rem;
  }

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

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

    .service-card {
      margin-bottom: 1.5rem;
    }
  }

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

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

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

  #blog .blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    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;
  }

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

  #blog .blog-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-bottom: 3px solid hsl(22, 54%, 58%);
  }

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

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

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

  #blog .blog-meta i {
    color: hsl(22, 54%, 58%);
  }

  #blog .blog-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(22, 54%, 18%);
    margin-bottom: 15px;
    line-height: 1.4;
  }

  #blog .blog-title a {
    color: hsl(22, 54%, 18%);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  #blog .blog-title a:hover {
    color: hsl(22, 54%, 58%);
  }

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

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

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

  #blog .view-all-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 14px 40px;
    background: hsl(22, 54%, 33%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid hsl(22, 54%, 33%);
  }

  #blog .view-all-btn:hover {
    background: hsl(22, 54%, 58%);
    border-color: hsl(22, 54%, 58%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

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

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

    #blog .blog-image {
      height: 220px;
    }

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

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

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

.credentials-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: hsl(22, 54%, 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%;
    margin-bottom: 20px;
}

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

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

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

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

@media (max-width: 576px) {
    .credentials-section .section-title {
        font-size: 1.5rem;
    }
    
    .credential-icon {
        font-size: 2rem;
    }
}

.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(22, 54%, 33%) 0%, hsl(22, 54%, 18%) 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

.deadline-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deadline-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: hsl(22, 54%, 33%);
    display: flex;
    align-items: center;
    gap: 16px;
}

.calendar-icon {
    width: 50px;
    height: 50px;
    background: hsl(22, 54%, 58%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

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

.offer-benefits li {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #fff;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.benefit-icon {
    width: 40px;
    height: 40px;
    background: hsl(22, 54%, 58%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 18px;
}

.offer-cta-btn {
    display: inline-block;
    background: hsl(22, 54%, 58%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    border: none;
}

.offer-cta-btn:hover {
    background: hsl(22, 54%, 48%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    color: #fff;
}

.discount-highlight {
    background: hsl(22, 54%, 58%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .offer-section {
        padding: 60px 0;
    }
    
    .offer-title {
        font-size: 36px;
    }
    
    .offer-description {
        font-size: 16px;
    }
    
    .deadline-date {
        font-size: 32px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .offer-deadline-box {
        padding: 30px 20px;
    }
    
    .offer-benefits li {
        font-size: 16px;
    }
}

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

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

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

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

.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(22, 54%, 33%) 0%, hsl(22, 54%, 18%) 100%);
    color: #ffffff;
    border-left: 4px solid hsl(22, 54%, 58%);
}

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

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

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

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

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: hsl(22, 54%, 58%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
}

.testimonial-card.featured .client-avatar {
    background: #ffffff;
    color: hsl(22, 54%, 33%);
}

.client-info {
    flex-grow: 1;
}

.client-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 3px;
}

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

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

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

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

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

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-size: 0.85rem;
    color: #777;
}

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

.service-tag {
    background: hsl(22, 54%, 95%);
    color: hsl(22, 54%, 33%);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.testimonial-card.featured .service-tag {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
}

.testimonial-date {
    margin-left: auto;
}

.compact-card {
    padding: 25px;
}

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

.detailed-card {
    padding: 35px;
}

.quote-icon {
    font-size: 2.5rem;
    color: hsl(22, 54%, 58%);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 10px;
}

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

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

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

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

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

.disclaimer-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.disclaimer-icon i {
  font-size: 48px;
  color: hsl(22, 54%, 58%);
}

.disclaimer-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: hsl(22, 54%, 18%);
  text-align: center;
  margin-bottom: 30px;
}

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

.disclaimer-text p {
  margin-bottom: 18px;
}

.disclaimer-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-container {
    padding: 40px 25px;
    margin: 0 15px;
  }
  
  .disclaimer-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  
  .disclaimer-icon i {
    font-size: 40px;
  }
  
  .disclaimer-text {
    font-size: 15px;
    text-align: left;
  }
}

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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Source+Sans+Pro:wght@400;600&display=swap');

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

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

  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Montserrat', 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;
  }

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

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

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

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

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

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

  .contact-box {
    background-color: hsl(22, 54%, 95%);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }

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

  .section-card {
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Source+Sans+Pro:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(22, 54%, 33%);
    --secondary-color: hsl(22, 54%, 18%);
    --accent-color: hsl(22, 54%, 58%);
  }
  
  .policy-content {
    font-family: 'Source Sans Pro', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Montserrat', 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.3rem;
    color: var(--primary-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 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;
  }
  
  .effective-date {
    background-color: hsl(22, 54%, 95%);
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-box {
    background-color: hsl(22, 54%, 96%);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    margin: 2rem 0;
  }