:root {
            --primary-color: hsl(250, 33%, 32%);
            --secondary-color: hsl(250, 33%, 17%);
            --accent-color: hsl(250, 33%, 57%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Merriweather', serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Lato', sans-serif;
            font-weight: 700;
            color: var(--secondary-color);
            line-height: 1.3;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 15px;
            font-family: 'Lato', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Lato', sans-serif;
            font-weight: 500;
            color: var(--primary-color);
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(103, 84, 142, 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%28103, 84, 142, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: #ffffff;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }
        }

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

.about-section h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(250, 33%, 32%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

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

.about-intro {
  background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 50px;
}

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

.about-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  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-top: 40px;
}

.value-card {
  background: white;
  padding: 35px;
  border-radius: 10px;
  border-left: 4px solid hsl(250, 33%, 57%);
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

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

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

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

.expertise-box {
  background: linear-gradient(135deg, hsl(250, 33%, 32%) 0%, hsl(250, 33%, 17%) 100%);
  color: white;
  padding: 45px;
  border-radius: 12px;
  margin-top: 40px;
}

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

.expertise-box p {
  color: #f0f0f0;
}

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

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

  .portfolio-intro {
    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;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
  }

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

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(250, 33%, 32%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  }

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

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

  .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  }

  .portfolio-image {
    width: 100%;
    height: 300px;
    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 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
  }

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

  .portfolio-content {
    padding: 25px;
  }

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

  .portfolio-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(250, 33%, 32%);
    margin-bottom: 12px;
  }

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

  .view-details-btn {
    font-family: 'Lato', sans-serif;
    display: inline-block;
    padding: 8px 20px;
    background: hsl(250, 33%, 32%);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }

  .view-details-btn:hover {
    background: hsl(250, 33%, 57%);
    color: #fff;
    transform: translateX(5px);
  }

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

  .modal-header {
    background: hsl(250, 33%, 32%);
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
  }

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

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

  .modal-body {
    padding: 30px;
  }

  .modal-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 25px;
  }

  .modal-category {
    font-family: 'Lato', sans-serif;
    display: inline-block;
    padding: 6px 15px;
    background: hsl(250, 33%, 57%);
    color: #fff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .modal-description {
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    color: #333;
    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.3rem;
    color: hsl(250, 33%, 32%);
    margin-bottom: 15px;
    font-weight: 700;
  }

  .detail-item {
    font-family: 'Merriweather', serif;
    display: flex;
    margin-bottom: 12px;
    font-size: 0.95rem;
  }

  .detail-label {
    font-weight: 700;
    color: hsl(250, 33%, 32%);
    min-width: 120px;
  }

  .detail-value {
    color: #555;
  }

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

    .portfolio-image {
      height: 250px;
    }

    .modal-title {
      font-size: 1.5rem;
    }
  }

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

  #advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(250, 33%, 32%), hsl(250, 33%, 57%));
  }

  #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: hsl(250, 33%, 17%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

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

  #advantages .advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    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;
  }

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

  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: hsl(250, 33%, 57%);
  }

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

  #advantages .icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(250, 33%, 32%), hsl(250, 33%, 57%));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(85, 68, 119, 0.3);
  }

  #advantages .advantage-card:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 6px 25px rgba(85, 68, 119, 0.5);
  }

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

  #advantages .advantage-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(250, 33%, 17%);
    margin-bottom: 18px;
    text-align: center;
  }

  #advantages .advantage-description {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    text-align: center;
  }

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

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

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

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

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

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

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

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

    #advantages .icon-wrapper i {
      font-size: 2rem;
    }

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

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

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

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

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

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

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, hsl(250, 33%, 57%), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: hsl(250, 33%, 57%);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(250, 33%, 57%), hsl(250, 33%, 47%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

@media (max-width: 767px) {
  .statistics-title {
    font-size: 1.75rem;
  }
  
  .stat-number {
    font-size: 2.3rem;
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
  }
  
  .stat-icon i {
    font-size: 28px;
  }
}

footer {
  background: hsl(250, 33%, 17%);
  color: #f8f9fa;
  padding: 60px 0 30px;
  font-family: 'Merriweather', serif;
}

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

footer p, footer ul, footer address {
  color: #e0e0e0;
  line-height: 1.8;
  font-size: 0.95rem;
}

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

footer a:hover {
  color: hsl(250, 33%, 57%);
  padding-left: 5px;
}

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

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

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

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

footer address {
  font-style: normal;
}

.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;
  color: #b0b0b0;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: hsl(250, 33%, 57%);
  margin: 0 10px;
}

.footer-bottom a:hover {
  color: #ffffff;
  padding-left: 0;
}

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

#cookieNotice .container {
  max-width: 1200px;
}

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

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

.cookie-categories {
  margin: 20px 0;
}

.cookie-category {
  background: #f8f9fa;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 6px;
  border-left: 3px solid hsl(250, 33%, 57%);
}

.cookie-category strong {
  color: hsl(250, 33%, 32%);
  font-family: 'Lato', sans-serif;
  display: block;
  margin-bottom: 5px;
}

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

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

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

#cookieNotice .btn {
  font-family: 'Lato', sans-serif;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 5px;
  font-size: 0.95rem;
}

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

#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;
  border: none;
}

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

#cookieNotice .btn-manage {
  background: transparent;
  color: hsl(250, 33%, 32%);
  border: 2px solid hsl(250, 33%, 32%);
}

#cookieNotice .btn-manage:hover {
  background: hsl(250, 33%, 32%);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  footer h5 {
    margin-top: 30px;
  }
  
  #cookieNotice {
    padding: 20px 0;
  }
  
  #cookieNotice .btn {
    display: block;
    width: 100%;
    margin: 8px 0;
  }
  
  .cookie-categories {
    margin: 15px 0;
  }
}

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid #eee; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.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-page { padding: 4rem 0; }
.blog-page h1 { margin-bottom: 3rem; text-align: center; }
.blog-card { margin-bottom: 2rem; transition: transform 0.3s; overflow: hidden; }
.blog-card:hover { transform: translateY(-5px); }
.blog-card .card-img-top { height: 200px; object-fit: cover; }
.blog-meta { font-size: 0.9rem; color: #888; margin-bottom: 1rem; }

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

.contact-section h2 {
    font-family: 'Lato', sans-serif;
    color: hsl(250, 33%, 32%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

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

.contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    border-left: 4px solid hsl(250, 33%, 57%);
}

.contact-info-card h3 {
    font-family: 'Lato', sans-serif;
    color: hsl(250, 33%, 32%);
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, hsl(250, 33%, 32%) 0%, hsl(250, 33%, 57%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

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

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

.contact-details h4 {
    font-family: 'Lato', sans-serif;
    color: hsl(250, 33%, 32%);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-details a {
    color: hsl(250, 33%, 57%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: hsl(250, 33%, 32%);
}

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

.contact-form-card h3 {
    font-family: 'Lato', sans-serif;
    color: hsl(250, 33%, 32%);
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

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

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

.form-control:focus, .form-select:focus {
    border-color: hsl(250, 33%, 57%);
    box-shadow: 0 0 0 0.2rem rgba(123, 97, 166, 0.15);
}

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

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

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

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(80, 53, 107, 0.3);
}

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

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

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

.hours-list strong {
    color: hsl(250, 33%, 32%);
    font-weight: 600;
}

@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-info-card, .contact-form-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .contact-section h2 {
        font-size: 1.75rem;
    }
    
    .contact-info-card, .contact-form-card {
        padding: 25px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.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.5rem;
  font-weight: 700;
  color: hsl(250, 33%, 32%);
  margin-bottom: 1rem;
  text-align: center;
}

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

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

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

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

.faq-accordion .accordion-button {
  font-family: 'Lato', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: hsl(250, 33%, 32%);
  background-color: #ffffff;
  padding: 1.5rem 1.75rem;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

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

.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;
  transition: transform 0.3s ease;
}

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

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

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

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

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

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

.faq-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  vertical-align: middle;
}

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

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

  .faq-section .lead-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

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

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

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

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

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

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

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

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

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

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

.form-group-newsletter {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-input {
  flex: 1;
  min-width: 280px;
  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-input:focus {
  outline: none;
  border-color: hsl(250, 33%, 57%);
  box-shadow: 0 0 0 4px rgba(123, 104, 159, 0.2);
}

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

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

.newsletter-submit:hover {
  background: hsl(250, 33%, 47%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.benefit-icon::after {
  content: '✓';
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
}

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

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

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

  .form-group-newsletter {
    flex-direction: column;
    gap: 12px;
  }

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

  .newsletter-submit {
    width: 100%;
  }

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

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

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

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

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

  .hero-section h1 {
    font-family: 'Lato', sans-serif;
    color: hsl(250, 33%, 17%);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Lato', sans-serif;
    color: hsl(250, 33%, 32%);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
  }

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

  .hero-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  }

  .hero-content {
    padding: 40px 40px 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

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

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

  .advantages-list li i {
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: hsl(250, 33%, 57%);
    font-size: 1.3rem;
  }

  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary-hero {
    font-family: 'Lato', sans-serif;
    background-color: hsl(250, 33%, 32%);
    color: #ffffff;
    padding: 14px 36px;
    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 15px rgba(0, 0, 0, 0.1);
  }

  .btn-primary-hero:hover {
    background-color: hsl(250, 33%, 17%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

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

  .btn-secondary-hero:hover {
    background-color: hsl(250, 33%, 32%);
    color: #ffffff;
    transform: translateY(-2px);
  }

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

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

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

    .hero-content {
      padding: 40px 20px;
    }

    .hero-image-wrapper {
      min-height: 400px;
      margin-bottom: 30px;
    }
  }

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

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

    .hero-section p {
      font-size: 1rem;
    }

    .hero-image-wrapper {
      min-height: 300px;
    }

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

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

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

.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.5rem;
    font-weight: 700;
    color: hsl(250, 33%, 32%);
    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 ease;
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(88, 74, 119, 0.15);
    border-color: hsl(250, 33%, 57%);
  }

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(250, 33%, 32%) 0%, hsl(250, 33%, 57%) 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 {
    transform: rotate(360deg);
    background: linear-gradient(135deg, hsl(250, 33%, 57%) 0%, hsl(250, 33%, 32%) 100%);
  }

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

  .service-card h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(250, 33%, 32%);
    margin-bottom: 1rem;
  }

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

  .service-price {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(250, 33%, 57%);
    margin-bottom: 0.5rem;
  }

  .service-terms {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin-bottom: 1rem;
  }

  .service-card .btn {
    background: hsl(250, 33%, 32%);
    color: #ffffff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
  }

  .service-card .btn:hover {
    background: hsl(250, 33%, 57%);
    transform: scale(1.05);
    color: #ffffff;
  }

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

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

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

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

.blog-preview h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(250, 33%, 32%);
  margin-bottom: 1rem;
  text-align: center;
}

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

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

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

.blog-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

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

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

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

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: hsl(250, 33%, 57%);
}

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

.blog-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(250, 33%, 32%);
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-card h3 a {
  color: hsl(250, 33%, 32%);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.blog-read-more {
  color: hsl(250, 33%, 57%);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
  font-family: 'Lato', sans-serif;
}

.blog-read-more:hover {
  gap: 12px;
  color: hsl(250, 33%, 32%);
}

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

.btn-view-all {
  background: hsl(250, 33%, 32%);
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid hsl(250, 33%, 32%);
}

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

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

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

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

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

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

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

.testimonials-section h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(250, 33%, 17%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.testimonials-section .subtitle {
  color: hsl(250, 33%, 32%);
  text-align: center;
  font-size: 1.1rem;
  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(250, 33%, 57%);
}

.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(250, 33%, 32%) 0%, hsl(250, 33%, 17%) 100%);
  color: #ffffff;
  border-left: 4px solid hsl(250, 33%, 57%);
}

.testimonial-card.featured .stars i {
  color: #ffc107;
}

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

.testimonial-card.compact {
  padding: 25px;
  border-left: 4px solid hsl(250, 33%, 57%);
}

.testimonial-card.detailed {
  padding: 35px;
  background: #f8f9fa;
  border: 2px solid hsl(250, 33%, 90%);
  border-left: 5px solid hsl(250, 33%, 57%);
}

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

.stars i {
  color: #ffc107;
}

.stars i.empty {
  color: #dee2e6;
}

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

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

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

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

.customer-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(250, 33%, 57%) 0%, hsl(250, 33%, 32%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-card.featured .customer-avatar {
  background: #ffffff;
  color: hsl(250, 33%, 32%);
}

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

.customer-name {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: hsl(250, 33%, 17%);
  margin-bottom: 3px;
}

.customer-location {
  font-size: 0.9rem;
  color: hsl(250, 33%, 57%);
  display: flex;
  align-items: center;
  gap: 5px;
}

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

.project-tag {
  display: inline-block;
  background: hsl(250, 33%, 95%);
  color: hsl(250, 33%, 32%);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-top: 10px;
  font-family: 'Lato', sans-serif;
}

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

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

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

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

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

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

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

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

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

.offer-heading {
  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 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}

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

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

.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: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.discount-banner {
  background: hsl(250, 33%, 32%);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 35px;
}

.discount-percentage {
  font-family: 'Lato', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.discount-text {
  font-family: 'Merriweather', serif;
  font-size: 16px;
  opacity: 0.9;
}

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

.benefits-list li {
  font-family: 'Merriweather', serif;
  font-size: 16px;
  color: #333;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

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

.benefit-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, hsl(250, 33%, 57%) 0%, hsl(250, 33%, 42%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.btn-offer {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, hsl(250, 33%, 57%) 0%, hsl(250, 33%, 42%) 100%);
  border: none;
  padding: 18px 50px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-offer:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, hsl(250, 33%, 47%) 0%, hsl(250, 33%, 32%) 100%);
  color: #fff;
}

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

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

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

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

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

  .discount-percentage {
    font-size: 42px;
  }

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

#credentials {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
    position: relative;
  }

  #credentials .section-title {
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: hsl(250, 33%, 32%);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
  }

  #credentials .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(250, 33%, 57%);
  }

  .credential-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    border-color: hsl(250, 33%, 57%);
  }

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

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

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

    #credentials .section-title {
      font-size: 1.75rem;
      margin-bottom: 2.5rem;
    }

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

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

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

    #credentials .section-title {
      font-size: 1.5rem;
      margin-bottom: 2rem;
    }

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

    .credential-icon {
      font-size: 2rem;
      margin-bottom: 12px;
    }

    .credential-title {
      font-size: 0.9rem;
    }
  }

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

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

.disclaimer-icon {
  width: 80px;
  height: 80px;
  background: hsl(250, 33%, 32%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.disclaimer-title {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(250, 33%, 17%);
  text-align: center;
  margin-bottom: 40px;
}

.disclaimer-content {
  background: #ffffff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(250, 33%, 57%);
}

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

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

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

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

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

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

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