:root {
            --primary-color: hsl(54, 30%, 42%);
            --secondary-color: hsl(54, 30%, 27%);
            --accent-color: hsl(54, 30%, 67%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Raleway', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1.25rem;
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Raleway', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--primary-color);
        }
        
        .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(51, 51, 51, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
            }
        }

#about {
  font-family: 'Raleway', sans-serif;
  background-color: #ffffff;
  padding: 80px 0;
}

#about h1, #about h2, #about h3 {
  font-family: 'Inter', sans-serif;
  color: hsl(54, 30%, 27%);
  font-weight: 700;
}

#about h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

#about h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  margin-top: 2.5rem;
}

#about h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: hsl(54, 30%, 42%);
}

#about p {
  color: #333333;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

#about .lead-text {
  font-size: 1.25rem;
  color: #222222;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

#about .about-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

#about .content-block {
  background-color: #f8f9fa;
  padding: 2.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  border-left: 5px solid hsl(54, 30%, 42%);
}

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

#about .value-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

#about .value-card h3 {
  margin-top: 0;
}

#about .highlight-box {
  background-color: hsl(54, 30%, 67%);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
  color: #222222;
}

#about .highlight-box p {
  margin-bottom: 0;
  font-size: 1.15rem;
  font-weight: 500;
}

#about .stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 3rem 0;
  padding: 2rem 0;
  background-color: hsl(54, 30%, 27%);
  border-radius: 10px;
}

#about .stat-item {
  text-align: center;
  padding: 1rem;
  min-width: 200px;
}

#about .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: hsl(54, 30%, 67%);
  display: block;
  font-family: 'Inter', sans-serif;
}

#about .stat-label {
  color: #ffffff;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  #about {
    padding: 50px 0;
  }
  
  #about h1 {
    font-size: 2rem;
  }
  
  #about h2 {
    font-size: 1.6rem;
  }
  
  #about .content-block {
    padding: 1.5rem;
  }
  
  #about .stat-number {
    font-size: 2.2rem;
  }
  
  #about .values-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

.portfolio-section .section-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(54, 30%, 27%);
  margin-bottom: 15px;
}

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

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

.filter-btn {
  padding: 10px 28px;
  border: 2px solid hsl(54, 30%, 42%);
  background: transparent;
  color: hsl(54, 30%, 27%);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

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

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

.portfolio-content {
  padding: 25px;
  background: #fff;
}

.portfolio-category {
  display: inline-block;
  padding: 5px 15px;
  background: hsl(54, 30%, 67%);
  color: hsl(54, 30%, 27%);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 15px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.portfolio-link {
  display: inline-flex;
  align-items: center;
  color: hsl(54, 30%, 42%);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.portfolio-link:hover {
  color: hsl(54, 30%, 27%);
  gap: 8px;
}

.portfolio-link i {
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.portfolio-link:hover i {
  margin-left: 10px;
}

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

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

.modal-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
}

.modal-body {
  padding: 35px;
}

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

.modal-body h5 {
  font-family: 'Inter', sans-serif;
  color: hsl(54, 30%, 27%);
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 15px;
}

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

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

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

.btn-close {
  background-color: rgba(255,255,255,0.9);
  border-radius: 50%;
  opacity: 1;
}

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

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

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

  .portfolio-filters {
    gap: 10px;
  }

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

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

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

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

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

.advantages-section .section-header h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(54, 30%, 27%);
    margin-bottom: 20px;
}

.advantages-section .section-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 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 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(54, 30%, 42%), hsl(54, 30%, 67%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

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

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

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(54, 30%, 27%), hsl(54, 30%, 42%));
}

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

.advantage-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: hsl(54, 30%, 27%);
    margin-bottom: 15px;
    text-align: center;
}

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

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

@media (max-width: 576px) {
    .advantages-section .section-header h2 {
        font-size: 1.75rem;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
}

#statistics {
  background: linear-gradient(135deg, hsl(54, 30%, 97%) 0%, hsl(54, 30%, 92%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#statistics::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(54, 30%, 67%);
  opacity: 0.05;
  border-radius: 50%;
}

#statistics::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(54, 30%, 42%);
  opacity: 0.04;
  border-radius: 50%;
}

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

.statistics-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(54, 30%, 27%);
  margin-bottom: 15px;
}

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

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

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border-color: hsl(54, 30%, 67%);
}

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

.stat-card:hover .stat-icon {
  background: linear-gradient(135deg, hsl(54, 30%, 27%) 0%, hsl(54, 30%, 42%) 100%);
  transform: scale(1.1) rotate(5deg);
}

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

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(54, 30%, 27%);
  margin-bottom: 10px;
  line-height: 1.2;
}

.stat-label {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  margin-bottom: 8px;
}

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

@media (max-width: 992px) {
  .statistics-header h2 {
    font-size: 2rem;
  }
  
  .stat-card {
    margin-bottom: 30px;
  }
  
  .stat-number {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  #statistics {
    padding: 60px 0;
  }
  
  .statistics-header h2 {
    font-size: 1.75rem;
  }
  
  .statistics-header p {
    font-size: 1rem;
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
  }
  
  .stat-icon i {
    font-size: 28px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

footer {
  background: linear-gradient(135deg, hsl(54, 30%, 27%) 0%, hsl(54, 30%, 22%) 100%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  font-family: 'Raleway', sans-serif;
  margin-top: 80px;
}

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

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

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

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

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

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

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

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

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

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

footer .policy-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

footer .policy-links a {
  color: #adb5bd;
  font-size: 0.85rem;
}

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

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, hsl(54, 30%, 27%), hsl(54, 30%, 32%));
  color: #fff;
  padding: 30px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  font-family: 'Raleway', sans-serif;
}

#cookieNotice h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: hsl(54, 30%, 67%);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

#cookieNotice p {
  color: #e9ecef;
  margin-bottom: 20px;
  line-height: 1.6;
}

#cookieNotice .cookie-category {
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 15px;
  border-radius: 6px;
  margin-bottom: 12px;
  border-left: 3px solid hsl(54, 30%, 67%);
}

#cookieNotice .cookie-category strong {
  color: hsl(54, 30%, 67%);
  display: block;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

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

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

#cookieNotice .cookie-category.required strong::after {
  content: " (Wymagane)";
  color: #28a745;
  font-size: 0.8rem;
  font-weight: 600;
}

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

#cookieNotice .btn-accept-all {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

#cookieNotice .btn-accept-all:hover {
  background: linear-gradient(135deg, #218838, #1aa179);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

#cookieNotice .btn-reject {
  background: #6c757d;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

#cookieNotice .btn-manage {
  background: transparent;
  color: hsl(54, 30%, 67%);
  border: 2px solid hsl(54, 30%, 67%);
  padding: 10px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

#cookieNotice .btn-manage:hover {
  background: hsl(54, 30%, 67%);
  color: hsl(54, 30%, 27%);
  transform: translateY(-2px);
}

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

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

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

.contact-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

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

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

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: hsl(54, 30%, 42%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #fff;
}

.contact-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.contact-card p {
    color: #555;
    margin-bottom: 8px;
    line-height: 1.8;
}

.contact-card a {
    color: hsl(54, 30%, 42%);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: hsl(54, 30%, 27%);
}

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

.contact-form-wrapper h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #222;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

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

.form-control, .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-family: 'Raleway', sans-serif;
    transition: border-color 0.3s ease;
    color: #333;
}

.form-control:focus, .form-select:focus {
    border-color: hsl(54, 30%, 42%);
    box-shadow: 0 0 0 0.2rem rgba(156, 139, 83, 0.15);
}

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

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

.btn-submit {
    background: hsl(54, 30%, 42%);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin-top: 10px;
}

.btn-submit:hover {
    background: hsl(54, 30%, 27%);
    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: 8px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

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

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

.map-wrapper {
    margin-top: 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.map-placeholder {
    background: linear-gradient(135deg, hsl(54, 30%, 67%) 0%, hsl(54, 30%, 42%) 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 30px;
        margin-bottom: 25px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .map-placeholder {
        height: 300px;
    }
}

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

  :root {
    --primary-color: hsl(54, 30%, 42%);
    --secondary-color: hsl(54, 30%, 27%);
    --accent-color: hsl(54, 30%, 67%);
  }

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

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

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

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

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

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

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    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;
    font-size: 1.05rem;
  }

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

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

  .info-box p {
    margin-bottom: 0.5rem;
  }

  .info-box strong {
    color: var(--secondary-color);
  }

  .cookie-type-card {
    background: #f8f9fa;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .cookie-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .cookie-type-card h3 {
    margin-top: 0;
    color: var(--primary-color);
  }

  .last-updated {
    background-color: var(--accent-color);
    padding: 1rem;
    border-radius: 6px;
    font-style: italic;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
  }

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

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

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

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

.faq-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

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

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

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

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

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

.accordion-button {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    background-color: #ffffff;
    padding: 25px 30px;
    border: none;
    transition: all 0.3s ease;
}

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

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

.accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.accordion-body {
    padding: 30px;
    background-color: #ffffff;
    color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
    border-top: 2px solid hsl(54, 30%, 67%);
}

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

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

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

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

.accordion-body strong {
    color: hsl(54, 30%, 27%);
    font-weight: 600;
}

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

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

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

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

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

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

    .accordion-button {
        font-size: 0.95rem;
        padding: 18px 15px;
    }
}

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

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

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

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

.newsletter-icon svg {
    width: 35px;
    height: 35px;
    fill: hsl(54, 30%, 27%);
}

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

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

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

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

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    background: #ffffff;
    color: #333333;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: hsl(54, 30%, 67%);
    box-shadow: 0 0 0 4px rgba(168, 156, 111, 0.2);
}

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

.newsletter-submit {
    padding: 16px 35px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    background: hsl(54, 30%, 67%);
    color: hsl(54, 30%, 27%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

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

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

.newsletter-privacy a {
    color: hsl(54, 30%, 67%);
    text-decoration: none;
    border-bottom: 1px solid hsl(54, 30%, 67%);
    transition: all 0.3s ease;
}

.newsletter-privacy a:hover {
    color: hsl(54, 35%, 72%);
    border-bottom-color: hsl(54, 35%, 72%);
}

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

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

.newsletter-benefit-item svg {
    width: 20px;
    height: 20px;
    fill: hsl(54, 30%, 67%);
    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;
    }
    
    .newsletter-submit {
        width: 100%;
        padding: 16px 20px;
    }
    
    .newsletter-benefits {
        gap: 20px;
    }
    
    .newsletter-benefit-item {
        font-size: 0.9rem;
    }
}

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

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

:root {
  --primary: hsl(54, 30%, 42%);
  --secondary: hsl(54, 30%, 27%);
  --accent: hsl(54, 30%, 67%);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.hero-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.hero-h1 {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.hero-description {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: left;
}

.hero-image-wrapper {
  margin: 40px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-advantages {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px;
  margin: 40px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-left: 4px solid var(--primary);
}

.hero-advantages-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.hero-advantages-list li {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  color: #333;
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  line-height: 1.6;
}

.hero-advantages-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-advantages-list li::after {
  content: '✓';
  position: absolute;
  left: 5px;
  top: 15px;
  color: var(--secondary);
  font-weight: bold;
  font-size: 14px;
}

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

.hero-btn {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}

.hero-btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

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

.hero-btn-secondary {
  background: #ffffff;
  color: var(--secondary);
  border: 2px solid var(--primary);
}

.hero-btn-secondary:hover {
  background: var(--accent);
  color: var(--secondary);
  border-color: var(--accent);
  transform: translateY(-2px);
}

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

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

  .hero-h2 {
    font-size: 1.3rem;
  }

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

  .hero-advantages {
    padding: 25px;
  }

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

  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }

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

@media (max-width: 480px) {
  .hero-h1 {
    font-size: 1.9rem;
  }

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

  .hero-advantages {
    padding: 20px;
  }

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

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

.offer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(54, 30%, 67%, 0.3) 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(54, 30%, 42%, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

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

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

.offer-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(54, 30%, 27%);
    margin-bottom: 24px;
    line-height: 1.2;
}

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

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

.deadline-wrapper {
    background: linear-gradient(135deg, hsl(54, 30%, 42%) 0%, hsl(54, 30%, 27%) 100%);
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 40px;
    text-align: center;
}

.deadline-label {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
    font-weight: 500;
}

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

.calendar-icon {
    font-size: 2.5rem;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    margin-bottom: 15px;
    background: hsl(54, 30%, 97%);
    border-radius: 12px;
    border-left: 4px solid hsl(54, 30%, 42%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.benefit-text {
    flex: 1;
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
    padding-top: 8px;
}

.discount-highlight {
    background: hsl(54, 30%, 67%);
    color: hsl(54, 30%, 27%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 35px;
    border: 3px dashed hsl(54, 30%, 42%);
}

.discount-text {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}

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

.cta-button {
    display: inline-block;
    background: hsl(54, 30%, 42%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: none;
}

.cta-button:hover {
    background: hsl(54, 30%, 27%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .offer-section {
        padding: 60px 0;
    }
    
    .offer-title {
        font-size: 2rem;
    }
    
    .offer-description {
        font-size: 1rem;
    }
    
    .offer-card {
        padding: 30px 20px;
    }
    
    .deadline-date {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .calendar-icon {
        font-size: 2rem;
    }
    
    .discount-text {
        font-size: 1.6rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

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

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

.services-section h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 1.2rem;
  text-align: center;
}

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

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 1.8rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  border-color: hsl(54, 30%, 67%);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, hsl(54, 30%, 42%) 0%, hsl(54, 30%, 27%) 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 {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, hsl(54, 30%, 67%) 0%, hsl(54, 30%, 42%) 100%);
}

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

.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 1rem;
  text-align: center;
}

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

.service-price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: hsl(54, 30%, 42%);
  text-align: center;
  margin-bottom: 0.8rem;
}

.service-terms {
  font-size: 0.85rem;
  color: #777;
  text-align: center;
  font-style: italic;
}

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

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

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

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

  .service-icon i {
    font-size: 1.8rem;
  }

  .service-price {
    font-size: 1.5rem;
  }
}

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

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

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

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

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

.testimonial-card.style-minimal {
  border-left: 4px solid hsl(54, 30%, 42%);
  padding-left: 26px;
}

.testimonial-card.style-boxed {
  border: 2px solid hsl(54, 30%, 67%);
}

.testimonial-card.style-shadow {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

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

.testimonial-rating .star {
  color: #ffc107;
  font-size: 1.2rem;
}

.testimonial-rating .star.empty {
  color: #ddd;
}

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

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

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(54, 30%, 42%), hsl(54, 30%, 67%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

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

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

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

.testimonial-highlight {
  background: hsl(54, 30%, 95%);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  border-left: 4px solid hsl(54, 30%, 42%);
}

.testimonial-highlight .testimonial-text {
  font-size: 1.15rem;
  margin-bottom: 15px;
  color: #222;
}

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

.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

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

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

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

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .stats-row {
    gap: 40px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

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

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

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

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

.blog-preview-section .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-top: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.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-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

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

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

.blog-card-meta {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.blog-card-badge {
  background: hsl(54, 30%, 42%);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

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

.blog-card-date {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-card-date i {
  color: hsl(54, 30%, 42%);
}

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

.blog-card:hover .blog-card-title {
  color: hsl(54, 30%, 42%);
}

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

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

.blog-card-reading-time {
  font-size: 0.9rem;
  color: #777;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-link {
  color: hsl(54, 30%, 42%);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.blog-card-link:hover {
  color: hsl(54, 30%, 27%);
  gap: 10px;
}

.blog-card-link i {
  transition: transform 0.3s ease;
}

.blog-card-link:hover i {
  transform: translateX(4px);
}

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

.btn-view-all {
  background: hsl(54, 30%, 42%);
  color: #ffffff;
  padding: 14px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid hsl(54, 30%, 42%);
  font-family: 'Inter', sans-serif;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  #disclaimer .disclaimer-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(54, 30%, 42%) 0%, hsl(54, 30%, 52%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

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

  #disclaimer h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222222;
    text-align: center;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
  }

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

  #disclaimer .disclaimer-text strong {
    color: #222222;
    font-weight: 600;
  }

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

    #disclaimer .disclaimer-container {
      padding: 40px 25px;
      border-radius: 12px;
    }

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

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

    #disclaimer h2 {
      font-size: 1.8rem;
      margin-bottom: 25px;
    }

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

  @media (max-width: 576px) {
    #disclaimer {
      padding: 50px 0;
    }

    #disclaimer .disclaimer-container {
      padding: 30px 20px;
    }

    #disclaimer h2 {
      font-size: 1.6rem;
    }

    #disclaimer .disclaimer-text {
      font-size: 0.95rem;
    }
  }

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

  :root {
    --primary-color: hsl(54, 30%, 42%);
    --secondary-color: hsl(54, 30%, 27%);
    --accent-color: hsl(54, 30%, 67%);
  }

  body {
    font-family: 'Raleway', sans-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: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

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

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

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

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

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

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

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

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

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

  .info-box {
    background-color: hsl(54, 30%, 95%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }

  .contact-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(54, 30%, 85%) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .contact-section h2 {
    border-left: none;
    padding-left: 0;
    margin-top: 0;
  }

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

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

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

  :root {
    --primary-color: hsl(54, 30%, 42%);
    --secondary-color: hsl(54, 30%, 27%);
    --accent-color: hsl(54, 30%, 67%);
  }

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

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

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

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

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

  .policy-content p {
    margin-bottom: 1.2rem;
    font-weight: 400;
    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;
    line-height: 1.7;
  }

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

  .info-box strong {
    color: var(--secondary-color);
    font-size: 1.1rem;
  }

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

  .last-updated {
    background-color: var(--accent-color);
    padding: 1rem;
    border-radius: 6px;
    font-style: italic;
    text-align: center;
    margin-bottom: 2rem;
  }