:root {
            --primary-color: hsl(10, 58%, 43%);
            --secondary-color: hsl(10, 58%, 28%);
            --accent-color: hsl(10, 58%, 68%);
        }
        
        body {
            font-family: 'Merriweather', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Lato', sans-serif;
            font-weight: 700;
            color: #222;
        }
        
        .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;
            font-family: 'Lato', sans-serif;
            font-weight: 900;
            font-size: 1.5rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Lato', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(185, 68, 44, 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(185, 68, 44, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

.about-section h1,
.about-section h2,
.about-section h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(10, 58%, 28%);
}

.about-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  margin-top: 3rem;
}

.about-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: hsl(10, 58%, 43%);
}

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

.about-intro {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 0;
  margin-bottom: 60px;
}

.about-image-wrapper {
  position: relative;
  margin: 40px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px 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(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

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

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

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

.value-card p {
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.expertise-box {
  background: hsl(10, 58%, 43%);
  color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  margin: 40px 0;
}

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

.expertise-box p {
  color: #ffffff;
  margin-bottom: 0.8rem;
}

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

.expertise-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: #ffffff;
  font-size: 1.05rem;
}

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

.mission-vision-row {
  margin: 50px 0;
}

.mission-box,
.vision-box {
  padding: 35px;
  border-radius: 8px;
  height: 100%;
}

.mission-box {
  background: linear-gradient(135deg, hsl(10, 58%, 28%) 0%, hsl(10, 58%, 38%) 100%);
  color: #ffffff;
}

.mission-box h3,
.mission-box p {
  color: #ffffff;
}

.vision-box {
  background: #f8f9fa;
  border: 2px solid hsl(10, 58%, 68%);
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-section h1 {
    font-size: 2.2rem;
  }
  
  .about-section h2 {
    font-size: 1.7rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-vision-row {
    margin: 30px 0;
  }
  
  .mission-box,
  .vision-box {
    margin-bottom: 20px;
  }
}

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

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

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

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

  .filter-btn {
    font-family: 'Lato', sans-serif;
    padding: 10px 25px;
    border: 2px solid hsl(10, 58%, 43%);
    background: transparent;
    color: hsl(10, 58%, 43%);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(10, 58%, 43%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 73, 50, 0.3);
  }

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

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

  .portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }

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

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

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-category {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    color: hsl(10, 58%, 43%);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

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

  .portfolio-description {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .view-details {
    font-family: 'Lato', sans-serif;
    color: hsl(10, 58%, 43%);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
  }

  .view-details:hover {
    gap: 12px;
    color: hsl(10, 58%, 28%);
  }

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

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

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

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

  .modal-body {
    padding: 30px;
  }

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

  .modal-category {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: hsl(10, 58%, 43%);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  .modal-description {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
  }

  .project-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
  }

  .project-details h5 {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
  }

  .project-details ul {
    font-family: 'Merriweather', serif;
    color: #555;
    line-height: 1.8;
    padding-left: 20px;
  }

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

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

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

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

    .filter-buttons {
      gap: 10px;
    }

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

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

  #advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(10, 58%, 43%, 0.05);
    border-radius: 50%;
    z-index: 0;
  }

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

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

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

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

  #advantages .section-subtitle {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
  }

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

  #advantages .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(10, 58%, 43%) 0%, hsl(10, 58%, 68%) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: hsl(10, 58%, 43%, 0.3);
  }

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

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

  #advantages .advantage-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(186, 73, 46, 0.3);
  }

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

  #advantages .advantage-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    transition: color 0.3s ease;
  }

  #advantages .advantage-card:hover .advantage-title {
    color: hsl(10, 58%, 43%);
  }

  #advantages .advantage-description {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
  }

  #advantages .row {
    margin-top: 40px;
  }

  #advantages .col-advantage {
    margin-bottom: 30px;
  }

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

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

    #advantages .section-subtitle {
      font-size: 1rem;
    }

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

    #advantages .icon-wrapper {
      width: 60px;
      height: 60px;
    }

    #advantages .icon-wrapper i {
      font-size: 28px;
    }

    #advantages .advantage-title {
      font-size: 1.15rem;
    }
  }

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

    #advantages .advantage-card {
      padding: 25px 18px;
    }
  }

#statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(10, 58%, 43%) 0%, hsl(10, 58%, 28%) 100%);
    position: relative;
    overflow: hidden;
  }

  #statistics::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" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
  }

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

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

  .statistics-header h2 {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
  }

  .statistics-header p {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

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

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

  .stat-icon {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s infinite;
  }

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

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

  .stat-label {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin-top: 10px;
  }

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

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

    .statistics-header h2 {
      font-size: 2rem;
    }

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

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

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

    .stat-box {
      padding: 30px 20px;
      margin-bottom: 20px;
    }
  }

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

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

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

footer {
  background: linear-gradient(135deg, hsl(10, 58%, 28%) 0%, hsl(10, 58%, 43%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Merriweather', serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer p, footer ul, footer a {
  font-size: 0.95rem;
  line-height: 1.8;
}

footer .company-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

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

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

footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

footer a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

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

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

footer .business-hours {
  background: rgba(0, 0, 0, 0.2);
  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;
}

#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: 0;
  border-top: 4px solid hsl(10, 58%, 43%);
  font-family: 'Merriweather', serif;
}

#cookieNotice .cookie-content {
  padding: 30px 20px;
}

#cookieNotice h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(10, 58%, 28%);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

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

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

#cookieNotice .cookie-category {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dee2e6;
}

#cookieNotice .cookie-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

#cookieNotice .cookie-category h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
  font-size: 1rem;
}

#cookieNotice .cookie-category p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: #666;
}

#cookieNotice .cookie-category .badge {
  font-size: 0.7rem;
  padding: 4px 8px;
  margin-left: 8px;
  font-weight: 600;
}

#cookieNotice .cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

#cookieNotice .btn {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
}

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

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

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

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

#cookieNotice .btn-settings {
  background: hsl(10, 58%, 43%);
  color: #ffffff;
}

#cookieNotice .btn-settings:hover {
  background: hsl(10, 58%, 38%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(189, 85, 60, 0.3);
  color: #ffffff;
}

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

  footer .row > div {
    margin-bottom: 30px;
  }

  footer a:hover {
    transform: none;
  }

  #cookieNotice .cookie-content {
    padding: 20px 15px;
  }

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

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

  #cookieNotice .btn {
    width: 100%;
    padding: 12px 20px;
  }
}

@media (max-width: 576px) {
  footer h5 {
    font-size: 1.1rem;
  }

  footer p, footer ul, footer a {
    font-size: 0.9rem;
  }

  #cookieNotice .cookie-categories {
    padding: 15px;
  }
}

.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: Merriweather, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(10, 58%, 43%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Lato, sans-serif; color: hsl(10, 58%, 28%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(10, 58%, 43%); }
.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, 58%, 28%); font-family: Lato, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(10, 58%, 28%); font-family: Lato, sans-serif; }
.blog-article a { color: hsl(10, 58%, 43%); }
.blog-article a:hover { color: hsl(10, 58%, 68%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(10, 58%, 43%); 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: 'Merriweather', serif;
}

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

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

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

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(10, 58%, 43%) 0%, hsl(10, 58%, 28%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #fff;
}

.contact-info-card h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #555;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

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

.form-label {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

.form-control:focus, .form-select:focus {
    border-color: hsl(10, 58%, 43%);
    box-shadow: 0 0 0 0.2rem rgba(184, 82, 57, 0.15);
}

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

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

.btn-submit {
    background: linear-gradient(135deg, hsl(10, 58%, 43%) 0%, hsl(10, 58%, 28%) 100%);
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 82, 57, 0.3);
}

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

.working-hours-list li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

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

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

.required-mark {
    color: hsl(10, 58%, 43%);
    margin-left: 2px;
}

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

@media (max-width: 576px) {
    .contact-section h2 {
        font-size: 1.75rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Merriweather:wght@300;400;700&display=swap');

  :root {
    --primary-color: hsl(10, 58%, 43%);
    --secondary-color: hsl(10, 58%, 28%);
    --accent-color: hsl(10, 58%, 68%);
  }

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

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

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

  h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }

  h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
  }

  .policy-content {
    background: linear-gradient(to bottom, #ffffff, #fdfbfa);
  }

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

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

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

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

  .policy-content li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
  }

  .info-box {
    background-color: #fef5f3;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

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

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

  .contact-box p {
    margin-bottom: 0.5rem;
    text-align: left;
  }

  .contact-box strong {
    color: var(--accent-color);
  }

  .cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
  }

  .table {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
  }

  .table thead {
    background-color: var(--primary-color);
    color: white;
  }

  .table-striped tbody tr:nth-of-type(odd) {
    background-color: #fef5f3;
  }

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

  strong {
    color: var(--secondary-color);
    font-weight: 700;
  }

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

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

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

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

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

.faq-accordion .accordion-button {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  background-color: #fff;
  padding: 20px 25px;
  border: none;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: hsl(10, 58%, 43%);
  color: #fff;
}

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

.faq-accordion .accordion-button::after {
  width: 1.5rem;
  height: 1.5rem;
  background-size: 1.5rem;
}

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

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

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

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

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

.faq-accordion .accordion-body li {
  margin-bottom: 8px;
  color: #444;
}

.faq-cta {
  margin-top: 60px;
  text-align: center;
  padding: 40px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.faq-cta h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 20px;
}

.faq-cta p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 25px;
}

.faq-cta .btn-primary {
  background-color: hsl(10, 58%, 43%);
  border: none;
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.faq-cta .btn-primary:hover {
  background-color: hsl(10, 58%, 28%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

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

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

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(10, 58%, 43%) 0%, hsl(10, 58%, 28%) 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.1)"/></svg>');
    opacity: 0.3;
  }

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

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

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

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

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

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

  .newsletter-email-input:focus {
    outline: none;
    border-color: hsl(10, 58%, 68%);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
  }

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

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

  .newsletter-submit-btn:hover {
    background: hsl(10, 58%, 68%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

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

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

  .newsletter-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
  }

  .newsletter-benefit-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

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

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

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

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

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

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

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

    .newsletter-benefits {
      gap: 20px;
    }

    .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;
      gap: 15px;
    }
  }

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

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

  .hero-section h1 {
    font-family: 'Lato', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Lato', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: hsl(10, 58%, 43%);
    margin-bottom: 2rem;
  }

  .hero-description {
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

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

  .hero-advantages li {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: #333;
    padding: 0.8rem 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
  }

  .hero-advantages li i {
    position: absolute;
    left: 0;
    top: 0.9rem;
    color: hsl(10, 58%, 43%);
    font-size: 1.3rem;
  }

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

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

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

  .hero-btn-primary {
    font-family: 'Lato', sans-serif;
    background: hsl(10, 58%, 43%);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid hsl(10, 58%, 43%);
    display: inline-block;
  }

  .hero-btn-primary:hover {
    background: hsl(10, 58%, 28%);
    border-color: hsl(10, 58%, 28%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

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

  .hero-btn-secondary:hover {
    background: hsl(10, 58%, 43%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .decorative-element {
    position: absolute;
    width: 300px;
    height: 300px;
    background: hsl(10, 58%, 68%);
    opacity: 0.1;
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
  }

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

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

    .hero-image-wrapper img {
      transform: translateY(0);
      margin-top: 3rem;
    }

    .hero-cta-buttons {
      justify-content: center;
    }
  }

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

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

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

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

    .hero-btn-primary,
    .hero-btn-secondary {
      width: 100%;
      text-align: center;
      padding: 0.9rem 2rem;
      font-size: 1rem;
    }

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

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

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

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

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

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

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

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

.offer-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  margin: 0 auto;
}

.deadline-box {
  background: linear-gradient(135deg, hsl(10, 58%, 68%) 0%, hsl(10, 58%, 43%) 100%);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin-bottom: 40px;
}

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

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

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

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.benefit-text {
  font-family: 'Merriweather', serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding-top: 8px;
}

.discount-highlight {
  background: hsl(10, 58%, 43%);
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 40px;
}

.discount-text {
  font-family: 'Lato', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

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

.cta-button {
  display: inline-block;
  background: hsl(10, 58%, 43%);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 700;
  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);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: hsl(10, 58%, 28%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

  .offer-title {
    font-size: 36px;
  }

  .offer-description {
    font-size: 16px;
  }

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

  .deadline-date {
    font-size: 32px;
    flex-direction: column;
  }

  .discount-text {
    font-size: 24px;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
  }

  .benefit-item:hover {
    transform: translateY(-5px);
  }

  .cta-button {
    font-size: 18px;
    padding: 15px 40px;
  }
}

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

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

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

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
  }

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

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(185, 74, 48, 0.15);
    border-color: hsl(10, 58%, 43%);
  }

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

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

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

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

  .service-card h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
    transition: color 0.3s ease;
  }

  .service-card:hover h3 {
    color: hsl(10, 58%, 43%);
  }

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

  .service-details {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
    margin-top: auto;
  }

  .service-price {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(10, 58%, 43%);
    text-align: center;
    margin-bottom: 0.5rem;
  }

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

  .services-grid {
    margin-top: 3rem;
  }

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

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

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

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

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

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

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

.testimonials-section .section-subtitle {
  font-size: 1.1rem;
  color: #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;
  border-left: 4px solid hsl(10, 58%, 43%);
}

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

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(10, 58%, 43%), hsl(10, 58%, 68%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

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

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

.testimonial-location {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
}

.testimonial-rating {
  display: flex;
  gap: 3px;
}

.star {
  color: #ffc107;
  font-size: 1rem;
}

.star.empty {
  color: #ddd;
}

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

.testimonial-date {
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
  text-align: right;
}

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(10, 58%, 43%) 0%, hsl(10, 58%, 28%) 100%);
  border-left: none;
  color: #ffffff;
}

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

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

.testimonial-card.featured .testimonial-avatar {
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
}

.testimonial-card.compact {
  padding: 20px;
}

.testimonial-card.compact .testimonial-avatar {
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
}

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

.testimonial-badge {
  display: inline-block;
  background: hsl(10, 58%, 68%);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 10px;
  font-family: 'Lato', sans-serif;
}

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

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

  #credentials h2 {
    font-family: 'Lato', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 15px;
  }

  #credentials .subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: hsl(10, 58%, 43%);
  }

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

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

  .credential-card p {
    font-size: 0.85rem;
    color: #777;
    margin: 8px 0 0 0;
    line-height: 1.3;
  }

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

    #credentials h2 {
      font-size: 1.9rem;
    }

    .credential-card {
      margin-bottom: 20px;
    }
  }

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

    #credentials h2 {
      font-size: 1.7rem;
    }

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

    .credential-card h3 {
      font-size: 0.95rem;
    }
  }

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

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

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

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

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

  .blog-card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
  }

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

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

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

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

  .blog-card h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #222;
    font-size: 1.5rem;
    margin-bottom: 15px;
    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, 58%, 43%);
  }

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

  .blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(10, 58%, 43%);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
  }

  .blog-card-link:hover {
    color: hsl(10, 58%, 28%);
    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 {
    display: inline-block;
    padding: 16px 40px;
    background: hsl(10, 58%, 43%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    border: 2px solid hsl(10, 58%, 43%);
  }

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

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

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

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

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

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

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

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

.disclaimer-section .container {
  max-width: 900px;
}

.disclaimer-header {
  text-align: center;
  margin-bottom: 50px;
}

.disclaimer-icon {
  font-size: 3.5rem;
  color: hsl(10, 58%, 43%);
  margin-bottom: 25px;
  display: inline-block;
}

.disclaimer-title {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.disclaimer-content {
  background: #ffffff;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid hsl(10, 58%, 43%);
}

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

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

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

  .disclaimer-title {
    font-size: 2rem;
  }

  .disclaimer-content {
    padding: 30px 20px;
  }

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

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

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Merriweather:wght@300;400;700&display=swap');

  :root {
    --primary-color: hsl(10, 58%, 43%);
    --secondary-color: hsl(10, 58%, 28%);
    --accent-color: hsl(10, 58%, 68%);
  }

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

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

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

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

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

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

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

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

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

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

  .policy-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 0.5rem;
  }

  .policy-section {
    background: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent-color);
  }

  .contact-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(10, 58%, 78%) 100%);
    padding: 2rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
    border: 2px solid var(--primary-color);
  }

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

  .highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0.25rem;
  }

  .date-updated {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Merriweather:wght@300;400;700&display=swap');

  :root {
    --primary-color: hsl(10, 58%, 43%);
    --secondary-color: hsl(10, 58%, 28%);
    --accent-color: hsl(10, 58%, 68%);
  }

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

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }

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

  .policy-content h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-left: 1rem;
    border-left: 5px solid var(--primary-color);
  }

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

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

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

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

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

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

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

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

  .contact-box p {
    margin-bottom: 0.5rem;
    text-align: left;
  }

  .highlight-box {
    background-color: #fff5f2;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
  }

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