:root {
            --primary-color: hsl(9, 38%, 34%);
            --secondary-color: hsl(9, 38%, 19%);
            --accent-color: hsl(9, 38%, 59%);
        }
        
        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 4px 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.5rem;
        }
        
        .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 {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(138, 75, 56, 0.25);
        }

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

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

.about-section h3 {
    font-family: 'Roboto', sans-serif;
    color: hsl(9, 38%, 34%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

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

.about-intro {
    background: linear-gradient(135deg, hsl(9, 38%, 34%) 0%, hsl(9, 38%, 19%) 100%);
    padding: 60px 0;
    margin-bottom: 60px;
}

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

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.value-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid hsl(9, 38%, 59%);
    transition: transform 0.3s ease;
}

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

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

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

.expertise-box {
    background: hsl(9, 38%, 96%);
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

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

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

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

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

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

.portfolio-section h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(9, 38%, 19%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

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

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid hsl(9, 38%, 34%);
  background: transparent;
  color: hsl(9, 38%, 34%);
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

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

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

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

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

.portfolio-content {
  padding: 1.5rem;
  background: #fff;
}

.portfolio-category {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: hsl(9, 38%, 59%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-item h3 {
  font-family: 'Roboto', sans-serif;
  color: hsl(9, 38%, 19%);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

.view-details {
  display: inline-flex;
  align-items: center;
  color: hsl(9, 38%, 34%);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.view-details:hover {
  color: hsl(9, 38%, 59%);
}

.view-details i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.view-details:hover i {
  transform: translateX(5px);
}

.modal-header {
  background: hsl(9, 38%, 34%);
  color: #fff;
  border-bottom: none;
}

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

.modal-body {
  padding: 2rem;
  color: #333;
}

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

.project-details h5 {
  font-family: 'Roboto', sans-serif;
  color: hsl(9, 38%, 19%);
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.project-details p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.project-specs {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

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

.project-specs li {
  padding: 0.5rem 0;
  color: #333;
  border-bottom: 1px solid #dee2e6;
}

.project-specs li:last-child {
  border-bottom: none;
}

.project-specs strong {
  color: hsl(9, 38%, 34%);
  font-weight: 600;
}

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

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

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

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .filter-buttons {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

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

.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(9, 38%, 19%);
    margin-bottom: 1rem;
    text-align: center;
}

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

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

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

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

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

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(9, 38%, 34%), hsl(9, 38%, 59%));
    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: rotate(360deg) scale(1.1);
}

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

.advantage-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(9, 38%, 19%);
    margin-bottom: 15px;
    text-align: center;
}

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

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

.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(9, 38%, 34%) 0%, hsl(9, 38%, 19%) 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

.stat-card: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 25px;
    background: hsl(9, 38%, 59%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: hsl(9, 48%, 65%);
}

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

.stat-number {
    font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
    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.85);
    font-weight: 400;
    line-height: 1.5;
}

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

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

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

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

@media (max-width: 576px) {
    .statistics-section h2 {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

footer {
  background: linear-gradient(135deg, hsl(9, 38%, 19%) 0%, hsl(9, 38%, 34%) 100%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  font-family: 'Open Sans', sans-serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

footer .contact-info {
  list-style: none;
  padding: 0;
}

footer .contact-info li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

footer .contact-info li i {
  margin-right: 10px;
  color: hsl(9, 38%, 59%);
  margin-top: 3px;
}

footer .footer-links {
  list-style: none;
  padding: 0;
}

footer .footer-links li {
  margin-bottom: 10px;
}

footer .footer-links a {
  display: inline-block;
}

footer .business-hours {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

footer .business-hours p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

footer .business-hours p:last-child {
  margin-bottom: 0;
}

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

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

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 25px 0;
  border-top: 3px solid hsl(9, 38%, 59%);
  animation: slideUp 0.4s ease-out;
}

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

#cookieNotice h4 {
  font-family: 'Roboto', sans-serif;
  color: hsl(9, 38%, 19%);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

#cookieNotice p {
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.95rem;
}

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

.cookie-category {
  margin-bottom: 12px;
  padding: 10px;
  background: #ffffff;
  border-left: 3px solid hsl(9, 38%, 59%);
  border-radius: 4px;
}

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

.cookie-category strong {
  color: hsl(9, 38%, 19%);
  font-family: 'Roboto', sans-serif;
  display: block;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

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

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

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

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

.cookie-buttons .btn {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.95rem;
}

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

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

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

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

.cookie-buttons .btn-manage {
  background: transparent;
  color: hsl(9, 38%, 34%);
  border: 2px solid hsl(9, 38%, 34%);
}

.cookie-buttons .btn-manage:hover {
  background: hsl(9, 38%, 34%);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  footer h5 {
    margin-top: 30px;
  }
  
  footer h5:first-child {
    margin-top: 0;
  }
  
  #cookieNotice {
    padding: 20px 0;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
}

.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: Open Sans, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(9, 38%, 34%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Roboto, sans-serif; color: hsl(9, 38%, 19%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(9, 38%, 34%); }
.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(9, 38%, 19%); font-family: Roboto, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(9, 38%, 19%); font-family: Roboto, sans-serif; }
.blog-article a { color: hsl(9, 38%, 34%); }
.blog-article a:hover { color: hsl(9, 38%, 59%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(9, 38%, 34%); 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: 'Open Sans', sans-serif;
}

.contact-section h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(9, 38%, 19%);
    margin-bottom: 1rem;
    text-align: center;
}

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

.contact-form-wrapper {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.contact-form-wrapper h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    color: hsl(9, 38%, 34%);
    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-control:focus {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #333;
    background: #ffffff;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: hsl(9, 38%, 59%);
    box-shadow: 0 0 0 0.2rem rgba(168, 89, 71, 0.15);
    outline: none;
}

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

.contact-form .btn-submit {
    background: hsl(9, 38%, 34%);
    color: #ffffff;
    border: none;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.contact-form .btn-submit:hover {
    background: hsl(9, 38%, 19%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-info-wrapper {
    background: hsl(9, 38%, 34%);
    color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    height: 100%;
}

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

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

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

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    flex-shrink: 0;
}

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

.contact-info-content h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.contact-info-content p,
.contact-info-content a {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-content a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #ffffff;
    text-decoration: underline;
}

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

.working-hours-list li {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.working-hours-list strong {
    display: inline-block;
    min-width: 120px;
}

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

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2rem;
    }
    
    .contact-form-wrapper h3,
    .contact-info-wrapper h3 {
        font-size: 1.5rem;
    }
}

@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(9, 38%, 34%);
    --secondary-color: hsl(9, 38%, 19%);
    --accent-color: hsl(9, 38%, 59%);
  }
  
  .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: 3px solid var(--accent-color);
    padding-bottom: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-top: 2.5rem;
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-intro {
    background: linear-gradient(135deg, rgba(124, 66, 50, 0.05) 0%, rgba(124, 66, 50, 0.02) 100%);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
  }
  
  .policy-section {
    background: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  
  .contact-box {
    background: var(--secondary-color);
    color: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2.5rem;
  }
  
  .contact-box h3 {
    color: #fff;
    margin-top: 0;
  }
  
  .contact-box a {
    color: var(--accent-color);
  }
  
  .contact-box a:hover {
    color: #fff;
  }
  
  .effective-date {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
  }
  
  .cookie-table {
    width: 100%;
    margin: 1.5rem 0;
  }
  
  .cookie-table th {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.75rem;
  }
  
  .cookie-table td {
    padding: 0.75rem;
    border: 1px solid #ddd;
  }
  
  .highlight-box {
    background-color: rgba(157, 94, 74, 0.1);
    border-left: 3px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0.25rem;
  }

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

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

.faq-section .section-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

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

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

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

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: hsl(9, 38%, 34%);
    color: #ffffff;
    box-shadow: none;
}

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

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

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

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

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

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

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

.faq-accordion .accordion-body li {
    margin-bottom: 0.5rem;
    color: #444;
}

.faq-highlight {
    color: hsl(9, 38%, 34%);
    font-weight: 600;
}

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

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

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(9, 38%, 34%) 0%, hsl(9, 38%, 19%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

.newsletter-input-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

.newsletter-email-input:focus {
    outline: none;
    border-color: hsl(9, 38%, 59%);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.newsletter-submit-btn {
    padding: 16px 40px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: hsl(9, 38%, 59%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit-btn:hover {
    background: hsl(9, 48%, 65%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

.newsletter-benefit-icon::before {
    content: '✓';
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
}

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

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

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

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

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

    .newsletter-submit-btn {
        width: 100%;
    }

    .newsletter-benefits {
        gap: 20px;
        margin-top: 30px;
    }

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

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

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

.hero-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  overflow: hidden;
}

.hero-section h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(9, 38%, 19%);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: hsl(9, 38%, 34%);
  margin-bottom: 1.5rem;
}

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

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

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

.hero-advantages li::before {
  content: "\f26b";
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: hsl(9, 38%, 59%);
  font-size: 1.2rem;
  font-weight: bold;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

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

.btn-hero-primary {
  font-family: 'Open Sans', sans-serif;
  background-color: hsl(9, 38%, 34%);
  color: #fff;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-hero-primary:hover {
  background-color: hsl(9, 38%, 19%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.btn-hero-secondary {
  font-family: 'Open Sans', sans-serif;
  background-color: transparent;
  color: hsl(9, 38%, 34%);
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid hsl(9, 38%, 34%);
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background-color: hsl(9, 38%, 34%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 1.85rem;
  }
  
  .hero-section h2 {
    font-size: 1.25rem;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }
}

.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: hsl(9, 38%, 19%);
    margin-bottom: 1rem;
    text-align: center;
  }

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

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    border-color: hsl(9, 38%, 59%);
  }

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(9, 38%, 34%) 0%, hsl(9, 38%, 19%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }

  .service-card:hover .service-icon {
    background: linear-gradient(135deg, hsl(9, 38%, 59%) 0%, hsl(9, 38%, 34%) 100%);
    transform: rotate(360deg);
  }

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

  .service-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(9, 38%, 19%);
    margin-bottom: 1rem;
  }

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

  .service-price {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(9, 38%, 34%);
    margin-bottom: 0.5rem;
  }

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

  .service-card .btn-service {
    background: hsl(9, 38%, 34%);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
  }

  .service-card .btn-service:hover {
    background: hsl(9, 38%, 59%);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

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

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

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

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

  #credentials h2 {
    font-family: 'Roboto', sans-serif;
    color: hsl(9, 38%, 34%);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
  }

  .credential-card {
    background-color: #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;
  }

  @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%);
    position: relative;
    overflow: hidden;
}

.blog-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(9, 38%, 59%, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

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

.blog-preview .section-header h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(9, 38%, 19%);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.blog-preview .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(9, 38%, 59%);
    border-radius: 2px;
}

.blog-preview .section-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #555;
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

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

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

.blog-meta-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: hsl(9, 38%, 34%);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-meta-item i {
    font-size: 0.9rem;
}

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

.blog-card-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(9, 38%, 19%);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-title a {
    color: hsl(9, 38%, 19%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: hsl(9, 38%, 59%);
}

.blog-card-excerpt {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.blog-card-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: hsl(9, 38%, 34%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-card-link:hover {
    color: hsl(9, 38%, 59%);
    gap: 12px;
}

.blog-card-link i {
    font-size: 0.9rem;
    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 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: hsl(9, 38%, 34%);
    padding: 15px 45px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

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

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

    .blog-card-excerpt {
        font-size: 0.95rem;
    }

    .blog-view-all {
        margin-top: 40px;
    }

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

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

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

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

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

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(9, 38%, 34%) 0%, hsl(9, 38%, 19%) 100%);
  color: #ffffff;
  border-left: 4px solid hsl(9, 38%, 59%);
}

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

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

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

.rating-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  gap: 3px;
}

.rating-stars.featured {
  color: #ffd54f;
}

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

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

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

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: hsl(9, 38%, 59%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

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

.customer-name {
  font-weight: 700;
  color: hsl(9, 38%, 19%);
  font-size: 1.05rem;
  margin-bottom: 3px;
}

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

.testimonials-grid {
  margin-top: 40px;
}

.compact-card {
  padding: 20px;
}

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

.detailed-card {
  padding: 35px;
}

.service-badge {
  display: inline-block;
  background: hsl(9, 38%, 59%);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.testimonial-card.featured .service-badge {
  background: rgba(255,255,255,0.2);
}

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

.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(9, 38%, 34%) 0%, hsl(9, 38%, 19%) 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

.offer-title {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

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

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

.deadline-wrapper {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 3px dashed hsl(9, 38%, 59%);
}

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

.deadline-date {
    font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(9, 38%, 34%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.calendar-icon {
    width: 50px;
    height: 50px;
    background: hsl(9, 38%, 59%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
}

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

.benefits-list li {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    color: #333;
    padding: 18px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.benefit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, hsl(9, 38%, 59%) 0%, hsl(9, 38%, 49%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, hsl(9, 38%, 59%) 0%, hsl(9, 38%, 49%) 100%);
    color: #fff;
    padding: 25px 35px;
    border-radius: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.offer-btn {
    display: inline-block;
    background: linear-gradient(135deg, hsl(9, 38%, 34%) 0%, hsl(9, 38%, 24%) 100%);
    color: #fff;
    font-family: 'Roboto', 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 10px 30px rgba(0,0,0,0.2);
    border: none;
}

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

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

    .offer-title {
        font-size: 2.2rem;
    }

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

    .offer-card {
        padding: 35px 25px;
    }

    .deadline-date {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }

    .discount-badge {
        font-size: 2rem;
        padding: 20px 30px;
    }

    .benefits-list li {
        font-size: 0.95rem;
        padding: 15px 0;
    }

    .offer-btn {
        font-size: 1.1rem;
        padding: 16px 40px;
    }
}

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

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

.disclaimer-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(9, 38%, 59%) 0%, hsl(9, 38%, 49%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 4px 15px rgba(138, 83, 66, 0.2);
}

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

.disclaimer-title {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(9, 38%, 19%);
  text-align: center;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
}

.disclaimer-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333333;
  text-align: left;
  margin-bottom: 0;
}

.disclaimer-content p {
  margin-bottom: 20px;
}

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

.disclaimer-highlight {
  background: #fff3e0;
  border-left: 4px solid hsl(9, 38%, 59%);
  padding: 20px 25px;
  margin-top: 30px;
  border-radius: 6px;
}

.disclaimer-highlight p {
  margin: 0;
  font-size: 0.95rem;
  color: #555555;
  font-style: italic;
}

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

  .disclaimer-container {
    padding: 40px 25px;
    margin: 0 15px;
  }

  .disclaimer-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .disclaimer-content {
    font-size: 1rem;
  }

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

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

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

  .disclaimer-content {
    font-size: 0.95rem;
  }

  .disclaimer-highlight {
    padding: 15px 20px;
  }
}

@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(9, 38%, 34%);
    --secondary-color: hsl(9, 38%, 19%);
    --accent-color: hsl(9, 38%, 59%);
  }
  
  .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;
    color: var(--primary-color);
    font-weight: 700;
    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 a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
  }
  
  .effective-date {
    background-color: hsl(9, 38%, 95%);
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--secondary-color);
  }
  
  .contact-box {
    background-color: hsl(9, 38%, 97%);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
  }
  
  .contact-box h3 {
    margin-top: 0;
    color: var(--secondary-color);
  }
  
  .highlight-section {
    background-color: hsl(9, 38%, 98%);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
  }

@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(9, 38%, 34%);
    --secondary-color: hsl(9, 38%, 19%);
    --accent-color: hsl(9, 38%, 59%);
  }
  
  .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;
    color: var(--primary-color);
    font-weight: 700;
    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;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    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(--secondary-color);
    font-weight: 600;
  }
  
  .info-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.25rem;
  }
  
  .last-updated {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 0.9rem;
  }
  
  .section-card {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }