:root {
            --primary-color: hsl(10, 69%, 33%);
            --secondary-color: hsl(10, 69%, 18%);
            --accent-color: hsl(10, 69%, 58%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--primary-color);
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 600;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(177, 51, 33, 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%28177, 51, 33, 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-collapse {
                background-color: #fff;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }
        }

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

.about-section h2 {
    font-family: 'Roboto', sans-serif;
    color: hsl(10, 69%, 18%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-section h3 {
    font-family: 'Roboto', sans-serif;
    color: hsl(10, 69%, 33%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

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

.about-intro {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

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

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid hsl(10, 69%, 58%);
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h4 {
    font-family: 'Roboto', sans-serif;
    color: hsl(10, 69%, 33%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

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

.highlight-box {
    background: linear-gradient(135deg, hsl(10, 69%, 33%) 0%, hsl(10, 69%, 18%) 100%);
    color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.highlight-box h3 {
    color: #fff;
    margin-top: 0;
}

.highlight-box p {
    color: #f8f9fa;
    font-size: 1.08rem;
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-section h2 {
        font-size: 2rem;
    }
    
    .about-section h3 {
        font-size: 1.5rem;
    }
    
    .about-intro {
        padding: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

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

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

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

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

  .filter-btn {
    padding: 10px 28px;
    border: 2px solid hsl(10, 69%, 33%);
    background: #fff;
    color: hsl(10, 69%, 33%);
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(10, 69%, 33%);
    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;
    overflow: hidden;
    border-radius: 12px;
    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 30px rgba(0,0,0,0.2);
  }

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

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

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

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

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-category {
    display: inline-block;
    background: hsl(10, 69%, 58%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

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

  .portfolio-overlay .portfolio-title {
    color: #fff;
    margin-bottom: 10px;
  }

  .portfolio-overlay .portfolio-description {
    color: #f0f0f0;
    font-size: 0.9rem;
  }

  .view-details-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: hsl(10, 69%, 33%);
    color: #fff;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .view-details-btn:hover {
    background: hsl(10, 69%, 18%);
    color: #fff;
    transform: translateX(5px);
  }

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

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

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

  .modal-body {
    padding: 30px;
  }

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

  .project-detail-category {
    display: inline-block;
    background: hsl(10, 69%, 58%);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .project-details h5 {
    font-family: 'Roboto', sans-serif;
    color: hsl(10, 69%, 33%);
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2rem;
  }

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

  .project-details ul {
    color: #555;
    line-height: 1.9;
    padding-left: 20px;
  }

  .project-details ul li {
    margin-bottom: 8px;
  }

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

    #portfolio h2 {
      font-size: 2rem;
    }

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

    .filter-buttons {
      gap: 10px;
    }

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

    .portfolio-image {
      height: 240px;
    }
  }

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

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

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

.advantage-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: hsl(10, 69%, 58%);
}

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

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(10, 69%, 58%) 0%, hsl(10, 69%, 33%) 100%);
}

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

.advantage-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: hsl(10, 69%, 18%);
    margin-bottom: 15px;
}

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

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

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

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

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

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

.statistics-section .subtitle {
    font-family: 'Open Sans', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(10, 69%, 58%);
    border-radius: 50%;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: hsl(10, 69%, 48%);
}

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

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

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

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .statistics-section h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-item {
        margin-bottom: 20px;
    }
}

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

footer {
  background: linear-gradient(135deg, hsl(10, 69%, 18%) 0%, hsl(10, 69%, 33%) 100%);
  color: #fff;
  padding: 60px 0 20px;
  font-family: 'Open Sans', sans-serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 25px;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: hsl(10, 69%, 58%);
}

footer p, footer a, footer li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

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

footer .contact-info i {
  color: hsl(10, 69%, 58%);
  margin-right: 10px;
  width: 20px;
}

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

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

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

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  padding: 0;
}

.footer-links a:hover {
  color: hsl(10, 69%, 58%);
  padding-left: 0;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 30px 0;
  border-top: 4px solid hsl(10, 69%, 58%);
  animation: slideUp 0.5s ease-out;
}

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

#cookieNotice h4 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: hsl(10, 69%, 18%);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

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

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

.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 10px;
  background: #fff;
  border-radius: 5px;
  border-left: 3px solid hsl(10, 69%, 58%);
}

.cookie-category:last-child {
  margin-bottom: 0;
}

.cookie-category strong {
  color: hsl(10, 69%, 33%);
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  min-width: 180px;
}

.cookie-category span {
  color: #666;
  font-size: 0.85rem;
  margin-left: 10px;
}

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

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

.cookie-buttons button,
.cookie-buttons a {
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

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

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

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

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

.btn-manage {
  background: transparent;
  color: hsl(10, 69%, 33%);
  border: 2px solid hsl(10, 69%, 33%);
}

.btn-manage:hover {
  background: hsl(10, 69%, 33%);
  color: #fff;
  transform: translateY(-2px);
}

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

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

  footer h5:first-child {
    margin-top: 0;
  }

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

  #cookieNotice {
    padding: 20px 0;
  }

  #cookieNotice h4 {
    font-size: 1.25rem;
  }

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

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

  .cookie-category {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-category strong {
    min-width: auto;
    margin-bottom: 5px;
  }

  .cookie-category span {
    margin-left: 0;
  }
}

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

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

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

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

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

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

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

.contact-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    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;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: hsl(10, 69%, 58%);
    box-shadow: 0 0 0 0.2rem rgba(191, 58, 38, 0.15);
    outline: none;
}

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

.contact-form .required-mark {
    color: hsl(10, 69%, 33%);
    margin-left: 3px;
}

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

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

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

.contact-info-wrapper h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 2rem;
}

.contact-info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.contact-info-item .icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(10, 69%, 33%), hsl(10, 69%, 58%));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-info-item .icon-wrapper i {
    font-size: 1.5rem;
    color: #ffffff;
}

.contact-info-item h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info-item p {
    color: #555;
    margin-bottom: 0.3rem;
    line-height: 1.6;
}

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

.contact-info-item a:hover {
    color: hsl(10, 69%, 58%);
}

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

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

.hours-list li strong {
    color: #333;
}

.map-notice {
    background: #f8f9fa;
    border-left: 4px solid hsl(10, 69%, 58%);
    padding: 1.2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.map-notice p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px 20px;
    }

    .submit-btn {
        padding: 12px 30px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(10, 69%, 33%);
    --secondary-color: hsl(10, 69%, 18%);
    --accent-color: hsl(10, 69%, 58%);
  }
  
  .policy-content {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 15px;
  }
  
  .policy-content h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background-color: var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    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(--primary-color);
    font-weight: 600;
  }
  
  .intro-box {
    background: linear-gradient(135deg, hsl(10, 69%, 95%) 0%, hsl(10, 69%, 98%) 100%);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
  }
  
  .contact-box {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
  }
  
  .contact-box h2 {
    color: white;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-box h2:before {
    background-color: var(--accent-color);
  }
  
  .contact-box a {
    color: var(--accent-color);
  }
  
  .contact-box a:hover {
    color: white;
  }
  
  .effective-date {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }
  
  .cookie-table {
    margin: 1.5rem 0;
  }
  
  .cookie-table th {
    background-color: var(--primary-color);
    color: white;
    font-family: 'Roboto', sans-serif;
  }
  
  .cookie-table td {
    vertical-align: middle;
  }

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

.faq-section h2 {
    font-family: 'Roboto', sans-serif;
    color: hsl(10, 69%, 18%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

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

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

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.accordion-button {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    background: #fff;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: hsl(10, 69%, 33%);
    color: #fff;
    box-shadow: none;
}

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

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

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

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

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

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

.accordion-body strong {
    color: hsl(10, 69%, 33%);
    font-weight: 600;
}

.accordion-body ul {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.accordion-body ul li {
    margin-bottom: 0.5rem;
}

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

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

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

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

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

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  z-index: 0;
}

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

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

.newsletter-section p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  color: #f8f9fa;
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.newsletter-form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.newsletter-input {
  width: 100%;
  padding: 18px 24px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  color: #333333;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: #ffffff;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.newsletter-submit {
  width: 100%;
  padding: 18px 40px;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: hsl(10, 69%, 58%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-submit:hover {
  background: hsl(10, 69%, 48%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

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

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

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

.newsletter-benefit svg {
  width: 20px;
  height: 20px;
  fill: hsl(10, 69%, 58%);
  flex-shrink: 0;
}

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

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

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

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

  .newsletter-benefits {
    gap: 20px;
  }

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

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: hsl(10, 69%, 58%, 0.1);
  border-radius: 50%;
  z-index: 0;
}

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

.hero-section h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: hsl(10, 69%, 18%);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: hsl(10, 69%, 33%);
  margin-bottom: 2rem;
}

.hero-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

.hero-advantages li {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.05rem;
  color: #222;
  padding: 0.8rem 0;
  padding-left: 2.5rem;
  position: relative;
  line-height: 1.6;
}

.hero-advantages li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: hsl(10, 69%, 58%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-advantages li i {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 0.9rem;
}

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

.hero-image-container img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  font-family: 'Open Sans', sans-serif;
  background: hsl(10, 69%, 33%);
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-hero-primary:hover {
  background: hsl(10, 69%, 18%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
  font-family: 'Open Sans', sans-serif;
  background: transparent;
  color: hsl(10, 69%, 33%);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border: 2px solid hsl(10, 69%, 33%);
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: hsl(10, 69%, 33%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }
}

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

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

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

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

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

.testimonial-card.featured {
  border-left: 4px solid hsl(10, 69%, 33%);
  background: linear-gradient(135deg, #ffffff 0%, #fef9f8 100%);
}

.testimonial-card.compact {
  padding: 25px;
  border: 2px solid #f0f0f0;
}

.testimonial-card.detailed {
  padding: 35px;
  background: #fafafa;
}

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

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

.rating-stars i.empty {
  color: #e0e0e0;
}

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

.testimonial-card.compact .testimonial-text {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.testimonial-card.detailed .testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
}

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

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(10, 69%, 58%) 0%, hsl(10, 69%, 33%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}

.customer-details h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: hsl(10, 69%, 18%);
  margin: 0 0 4px 0;
}

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

.customer-location i {
  color: hsl(10, 69%, 58%);
  font-size: 0.85rem;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-top: 10px;
}

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

.highlight-quote {
  font-size: 1.15rem;
  font-weight: 600;
  color: hsl(10, 69%, 33%);
  margin-bottom: 12px;
  font-style: italic;
}

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

#credentials {
    padding: 60px 0;
    background-color: #f8f9fa;
    font-family: 'Open Sans', sans-serif;
  }

  #credentials h2 {
    font-family: 'Roboto', sans-serif;
    color: #222;
    font-size: 2rem;
    font-weight: 700;
    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: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
  }

  @media (max-width: 767px) {
    #credentials {
      padding: 40px 0;
    }

    #credentials h2 {
      font-size: 1.75rem;
      margin-bottom: 30px;
    }

    .credential-card {
      padding: 20px 15px;
    }

    .credential-icon {
      font-size: 2rem;
    }
  }

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

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

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

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

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

.blog-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-bottom: 3px solid hsl(10, 69%, 58%);
}

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

.blog-meta {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #666;
}

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

.blog-meta-item i {
  color: hsl(10, 69%, 58%);
  font-size: 0.9rem;
}

.blog-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 1rem;
  line-height: 1.4;
}

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

.blog-card h3 a:hover {
  color: hsl(10, 69%, 33%);
}

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

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

.blog-read-more:hover {
  gap: 0.75rem;
  color: hsl(10, 69%, 18%);
}

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

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

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

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

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

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

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

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

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

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

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

.promo-offer-section h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}

.promo-offer-section .offer-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  color: #f8f9fa;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.promo-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.discount-badge {
  background: linear-gradient(135deg, hsl(10, 69%, 58%) 0%, hsl(10, 69%, 33%) 100%);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  padding: 30px;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  line-height: 1;
}

.discount-badge small {
  font-size: 1.2rem;
  font-weight: 400;
  display: block;
  margin-top: 5px;
}

.promo-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  color: hsl(10, 69%, 18%);
  margin-bottom: 25px;
  text-align: center;
}

.promo-card .offer-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 35px;
  text-align: center;
}

.deadline-section {
  background: linear-gradient(135deg, hsl(10, 69%, 58%) 0%, hsl(10, 69%, 33%) 100%);
  border-radius: 15px;
  padding: 35px;
  margin: 40px 0;
  text-align: center;
}

.deadline-section .deadline-label {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.deadline-section .calendar-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

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

.benefits-list li {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  color: #333;
  padding: 18px 20px;
  margin-bottom: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.benefits-list li:hover {
  background: hsl(10, 69%, 95%);
  transform: translateX(10px);
}

.benefits-list li i {
  color: hsl(10, 69%, 33%);
  font-size: 1.5rem;
  min-width: 30px;
}

.cta-button {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, hsl(10, 69%, 58%) 0%, hsl(10, 69%, 33%) 100%);
  border: none;
  padding: 18px 60px;
  border-radius: 50px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin-top: 20px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  color: #fff;
}

@media (max-width: 768px) {
  .promo-offer-section h2 {
    font-size: 2rem;
  }
  
  .promo-card {
    padding: 35px 25px;
  }
  
  .discount-badge {
    width: 120px;
    height: 120px;
    font-size: 2.2rem;
  }
  
  .deadline-section .deadline-date {
    font-size: 2rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .benefits-list li {
    font-size: 1rem;
  }
  
  .cta-button {
    font-size: 1.1rem;
    padding: 15px 40px;
  }
}

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

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

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

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid hsl(10, 69%, 33%);
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-left-color: hsl(10, 69%, 58%);
}

.service-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(10, 69%, 33%) 0%, hsl(10, 69%, 18%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, hsl(10, 69%, 58%) 0%, hsl(10, 69%, 33%) 100%);
  transform: rotate(10deg) scale(1.1);
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.75rem;
}

.service-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.service-price {
  font-family: 'Roboto', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: hsl(10, 69%, 33%);
  margin-bottom: 0.5rem;
}

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

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

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

  .service-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .service-icon {
    margin: 0 auto;
  }

  .service-content h3 {
    font-size: 1.3rem;
  }

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

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

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

.disclaimer-icon {
  text-align: center;
  margin-bottom: 2rem;
}

.disclaimer-icon i {
  font-size: 4rem;
  color: hsl(10, 69%, 58%);
  opacity: 0.9;
}

.disclaimer-content {
  background: #ffffff;
  border-left: 4px solid hsl(10, 69%, 58%);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-content p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}

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

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

  .disclaimer-icon i {
    font-size: 3rem;
  }

  .disclaimer-content {
    padding: 2rem 1.5rem;
  }

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

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(10, 69%, 33%);
    --secondary-color: hsl(10, 69%, 18%);
    --accent-color: hsl(10, 69%, 58%);
  }
  
  .policy-content {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--primary-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(--secondary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
  }
  
  .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.5rem;
  }
  
  .policy-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
  }
  
  .policy-header h1 {
    color: white;
    border: none;
    margin: 0;
  }
  
  .effective-date {
    background-color: #f8f9fa;
    padding: 1rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    border-radius: 0.25rem;
  }
  
  .contact-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 2px solid var(--accent-color);
    margin-top: 2rem;
  }
  
  .contact-box h3 {
    margin-top: 0;
  }
  
  .section-card {
    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  strong {
    color: var(--secondary-color);
  }

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(10, 69%, 33%);
    --secondary-color: hsl(10, 69%, 18%);
    --accent-color: hsl(10, 69%, 58%);
  }
  
  .policy-content {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 15px;
  }
  
  .policy-content h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background-color: var(--accent-color);
    border-radius: 3px;
  }
  
  .policy-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
  }
  
  .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;
  }
  
  .policy-content strong {
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .highlight-box {
    background-color: hsl(10, 69%, 95%);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-info {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
  }
  
  .contact-info h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-info a {
    color: var(--accent-color);
  }
  
  .contact-info a:hover {
    color: white;
  }
  
  .last-updated {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
  }