:root {
            --primary-color: hsl(355, 39%, 34%);
            --secondary-color: hsl(355, 39%, 19%);
            --accent-color: hsl(355, 39%, 59%);
        }
        
        body {
            font-family: 'Crimson Text', serif;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Work Sans', sans-serif;
        }
        
        .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: 15px;
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
            color: var(--primary-color);
            font-size: 1.25rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Crimson Text', serif;
            font-size: 1.1rem;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(142, 55, 66, 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%28142, 55, 66, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

.about-section h1, .about-section h2, .about-section h3 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(355, 39%, 34%);
  font-weight: 700;
}

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

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

.about-section h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

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

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

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

.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: 35px 30px;
  border-radius: 8px;
  border-left: 4px solid hsl(355, 39%, 59%);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border-left-color: hsl(355, 39%, 34%);
}

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

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

.timeline-item {
  position: relative;
  padding-left: 45px;
  margin-bottom: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  background: hsl(355, 39%, 59%);
  border-radius: 50%;
  border: 3px solid hsl(355, 39%, 34%);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 24px;
  width: 2px;
  height: calc(100% + 10px);
  background: hsl(355, 39%, 59%);
}

.timeline-item:last-child::after {
  display: none;
}

.stats-box {
  background: hsl(355, 39%, 34%);
  color: #ffffff;
  padding: 50px 40px;
  border-radius: 12px;
  margin: 50px 0;
  text-align: center;
}

.stats-box h3 {
  color: #ffffff;
  margin-bottom: 2rem;
}

.stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  flex: 1;
  min-width: 150px;
}

.stat-number {
  font-family: 'Work Sans', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(355, 39%, 59%);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: #f8f9fa;
}

.mission-box {
  background: linear-gradient(135deg, hsl(355, 39%, 59%) 0%, hsl(355, 39%, 34%) 100%);
  color: #ffffff;
  padding: 45px 40px;
  border-radius: 12px;
  margin: 40px 0;
}

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

.mission-box p {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-section h1 {
    font-size: 2rem;
  }
  
  .about-section h2 {
    font-size: 1.7rem;
  }
  
  .about-intro {
    padding: 40px 0;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
}

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

.portfolio-section h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(355, 39%, 34%);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

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

.filter-btn:hover,
.filter-btn.active {
  background: hsl(355, 39%, 34%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.85) 100%);
  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 {
  display: inline-block;
  background: hsl(355, 39%, 59%);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'Work Sans', sans-serif;
}

.portfolio-title {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(355, 39%, 34%);
  font-size: 1.4rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

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

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

.view-details:hover {
  gap: 12px;
  color: hsl(355, 39%, 59%);
}

.modal-content {
  border-radius: 15px;
  border: none;
  font-family: 'Crimson Text', serif;
}

.modal-header {
  background: hsl(355, 39%, 34%);
  color: #fff;
  border-radius: 15px 15px 0 0;
  padding: 25px 30px;
  border: none;
}

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

.modal-body {
  padding: 35px;
}

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

.modal-body h5 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(355, 39%, 34%);
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.modal-body p {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.modal-body ul {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
  padding-left: 25px;
}

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

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

.project-meta {
  display: flex;
  gap: 30px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: hsl(355, 39%, 34%);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.meta-value {
  color: #666;
  font-size: 1rem;
}

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

  .modal-body {
    padding: 25px;
  }

  .project-meta {
    gap: 20px;
  }
}

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

.advantages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(355, 39%, 34%), hsl(355, 39%, 59%));
}

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

.advantages-section .section-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(355, 39%, 19%);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.advantages-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: hsl(355, 39%, 59%);
}

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

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

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

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

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

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

.advantage-card:hover .advantage-icon {
  transform: rotate(360deg) scale(1.1);
}

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

.advantage-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: hsl(355, 39%, 19%);
  margin-bottom: 15px;
  text-align: center;
}

.advantage-description {
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  text-align: center;
}

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

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

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

  .advantage-card {
    margin-bottom: 25px;
  }
}

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

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

  .advantage-icon i {
    font-size: 28px;
  }

  .advantage-title {
    font-size: 1.2rem;
  }
}

.statistics-section {
  background: linear-gradient(135deg, hsl(355, 39%, 34%) 0%, hsl(355, 39%, 19%) 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"><rect width="2" height="2" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
  opacity: 0.3;
}

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

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

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

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

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

.stat-icon {
  width: 70px;
  height: 70px;
  background: hsl(355, 39%, 59%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

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

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

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

.stat-label {
  font-family: 'Crimson Text', serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-context {
  font-family: 'Crimson Text', serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}

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

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

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

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

  .statistics-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

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

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

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

  .stat-icon i {
    font-size: 1.7rem;
  }
}

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

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

footer {
  background: linear-gradient(135deg, hsl(355, 39%, 19%) 0%, hsl(355, 39%, 34%) 100%);
  color: #f8f9fa;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  font-family: 'Crimson Text', serif;
}

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

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

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

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

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

footer ul li {
  margin-bottom: 0.7rem;
}

.footer-contact-info {
  margin-bottom: 1rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: #ced4da;
  font-size: 0.95rem;
}

.footer-logo {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

#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: 2rem 0;
  border-top: 3px solid hsl(355, 39%, 34%);
}

#cookieNotice h4 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(355, 39%, 34%);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

#cookieNotice p {
  color: #333;
  font-family: 'Crimson Text', serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

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

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

.cookie-category strong {
  color: hsl(355, 39%, 34%);
  font-family: 'Work Sans', sans-serif;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.3rem;
}

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

.cookie-category .badge {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  margin-left: 0.5rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.cookie-buttons .btn {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

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

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

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

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

.btn-manage-settings {
  background: transparent;
  color: hsl(355, 39%, 34%);
  border: 2px solid hsl(355, 39%, 34%);
}

.btn-manage-settings:hover {
  background: hsl(355, 39%, 34%);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  footer {
    padding: 3rem 0 1.5rem;
  }

  footer h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

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

  .cookie-buttons .btn {
    width: 100%;
  }

  #cookieNotice {
    padding: 1.5rem 0;
  }
}

.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: Crimson Text, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(355, 39%, 34%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Work Sans, sans-serif; color: hsl(355, 39%, 19%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(355, 39%, 34%); }
.article-hero-img { width: 100%; height: auto; border-radius: 12px; margin-bottom: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.blog-article h2 { color: hsl(355, 39%, 19%); font-family: Work Sans, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(355, 39%, 19%); font-family: Work Sans, sans-serif; }
.blog-article a { color: hsl(355, 39%, 34%); }
.blog-article a:hover { color: hsl(355, 39%, 59%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(355, 39%, 34%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

.contact-section h2 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(355, 39%, 34%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

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

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

.contact-form-wrapper h3 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(355, 39%, 34%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-label {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.contact-form .form-control,
.contact-form .form-control:focus {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    color: #333;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: hsl(355, 39%, 59%);
    background: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(155, 84, 94, 0.15);
    outline: none;
}

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

.contact-form .btn-submit {
    background: hsl(355, 39%, 34%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Work Sans', sans-serif;
    width: 100%;
    margin-top: 1rem;
}

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

.contact-info-wrapper {
    background: hsl(355, 39%, 34%);
    color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    height: 100%;
}

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

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

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: hsl(355, 39%, 59%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

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

.contact-info-content h4 {
    font-family: 'Work Sans', sans-serif;
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info-content p {
    color: #f0f0f0;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

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

.contact-info-content a:hover {
    color: hsl(355, 39%, 59%);
}

.deadline-alert {
    background: hsl(355, 39%, 59%);
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

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

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(355, 39%, 34%);
    --secondary-color: hsl(355, 39%, 19%);
    --accent-color: hsl(355, 39%, 59%);
  }
  
  .policy-content {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1.25rem;
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    border-left: 5px solid var(--accent-color);
    padding-left: 1rem;
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .info-box {
    background: linear-gradient(135deg, rgba(155, 61, 71, 0.05) 0%, rgba(155, 61, 71, 0.1) 100%);
    border-left: 5px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }
  
  .contact-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-top: 3rem;
  }
  
  .contact-section h2 {
    color: white;
    border-left-color: var(--accent-color);
  }
  
  .contact-section a {
    color: var(--accent-color);
  }
  
  .contact-section a:hover {
    color: white;
  }
  
  .last-updated {
    font-style: italic;
    color: #666;
    font-size: 1rem;
    margin-top: 1rem;
  }
  
  .cookie-table {
    margin: 2rem 0;
  }
  
  .cookie-table th {
    background-color: var(--primary-color);
    color: white;
    font-family: 'Work Sans', sans-serif;
  }
  
  .cookie-table td {
    vertical-align: middle;
  }

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

.faq-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(355, 39%, 34%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.faq-section .lead {
  color: #555;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.2rem;
}

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

.accordion-button {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: hsl(355, 39%, 34%);
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  border: none;
}

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

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem hsla(355, 39%, 59%, 0.25);
  border-color: hsl(355, 39%, 59%);
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(25%) sepia(18%) saturate(1200%) hue-rotate(315deg);
}

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

.accordion-body {
  padding: 1.5rem;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  background-color: #fafafa;
}

.accordion-body strong {
  color: hsl(355, 39%, 34%);
  font-weight: 600;
}

.accordion-body ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

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

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-section h2 {
    font-size: 2rem;
  }
  
  .accordion-button {
    font-size: 1rem;
    padding: 1rem;
  }
  
  .accordion-body {
    font-size: 1rem;
    padding: 1rem;
  }
}

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

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

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

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

.newsletter-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: #f8f9fa;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    font-family: 'Crimson Text', serif;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: hsl(355, 39%, 59%);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

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

.newsletter-submit {
    font-family: 'Work Sans', sans-serif;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: hsl(355, 39%, 59%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.newsletter-note {
    font-family: 'Crimson Text', serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

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

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

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

    .newsletter-input,
    .newsletter-submit {
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
    }
}

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

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

    .newsletter-submit {
        padding: 0.9rem 1.5rem;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

:root {
  --primary: hsl(355, 39%, 34%);
  --secondary: hsl(355, 39%, 19%);
  --accent: hsl(355, 39%, 59%);
}

.hero-section {
  font-family: 'Crimson Text', serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, #f8f9fa 0%, transparent 100%);
  z-index: 1;
}

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

.hero-section h1 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: justify;
}

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

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

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

.advantages-list li {
  padding: 0.75rem 0 0.75rem 2.5rem;
  position: relative;
  font-size: 1.125rem;
  color: #222;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

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

.advantages-list li::after {
  content: '✓';
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

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

.btn-primary-custom {
  background-color: var(--primary);
  color: #fff;
  padding: 14px 32px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.btn-secondary-custom {
  background-color: transparent;
  color: var(--primary);
  padding: 14px 32px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  border: 2px solid var(--primary);
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.deadline-badge {
  display: inline-block;
  background-color: #dc3545;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

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

@media (max-width: 991px) {
  .hero-section {
    padding: 60px 0 40px;
  }
  
  .hero-section h1 {
    font-size: 2.25rem;
  }
  
  .hero-section h2 {
    font-size: 1.25rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .advantages-list li {
    font-size: 1rem;
  }
  
  .hero-image-wrapper {
    margin-top: 2rem;
  }
  
  .hero-section::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }
}

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

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

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

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

.offer-badge {
  background: hsl(355, 39%, 59%);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 24px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 24px;
}

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

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

.deadline-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.deadline-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.deadline-date {
  font-family: 'Work Sans', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: hsl(355, 39%, 34%);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.calendar-icon {
  width: 60px;
  height: 60px;
  background: hsl(355, 39%, 59%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-list li {
  background: rgba(255,255,255,0.1);
  border-left: 4px solid hsl(355, 39%, 59%);
  padding: 20px 24px;
  margin-bottom: 16px;
  border-radius: 8px;
  font-family: 'Crimson Text', serif;
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.benefits-list li:hover {
  background: rgba(255,255,255,0.15);
  transform: translateX(8px);
}

.benefits-list li i {
  color: hsl(355, 39%, 59%);
  font-size: 24px;
  flex-shrink: 0;
}

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

.offer-btn {
  background: hsl(355, 39%, 59%);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 18px 48px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.offer-btn:hover {
  background: hsl(355, 39%, 49%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.discount-highlight {
  background: hsl(355, 39%, 59%);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 72px;
  font-weight: 700;
  padding: 24px 40px;
  border-radius: 16px;
  display: inline-block;
  margin: 24px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .offer-section {
    padding: 60px 0;
  }
  
  .offer-title {
    font-size: 32px;
  }
  
  .offer-description {
    font-size: 18px;
  }
  
  .deadline-date {
    font-size: 36px;
    flex-direction: column;
  }
  
  .calendar-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
  
  .discount-highlight {
    font-size: 48px;
    padding: 16px 32px;
  }
  
  .benefits-list li {
    font-size: 16px;
    padding: 16px 20px;
  }
  
  .deadline-box {
    padding: 24px;
  }
}

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

  .blog-preview-section h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: hsl(355, 39%, 34%);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .blog-preview-section .section-subtitle {
    color: #555;
    font-size: 1.15rem;
    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: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

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

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

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

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

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

  .blog-card-meta i {
    color: hsl(355, 39%, 59%);
  }

  .blog-card h3 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    color: hsl(355, 39%, 34%);
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.4;
  }

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

  .blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(355, 39%, 34%);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease, gap 0.3s ease;
  }

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

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

  .btn-view-all {
    background: hsl(355, 39%, 34%);
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 8px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .btn-view-all:hover {
    background: hsl(355, 39%, 19%);
    color: #ffffff;
    transform: scale(1.05);
  }

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

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

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

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

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

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

.testimonials-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(355, 39%, 34%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

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

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

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

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

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

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

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(355, 39%, 59%) 0%, hsl(355, 39%, 34%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-card.featured .customer-avatar {
  background: #ffffff;
  color: hsl(355, 39%, 34%);
}

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

.customer-name {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 3px;
}

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

.customer-location i {
  font-size: 0.85rem;
}

.rating-stars {
  display: flex;
  gap: 3px;
  font-size: 1.1rem;
}

.rating-stars i {
  color: #ffc107;
}

.rating-stars i.far {
  color: #ddd;
}

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

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

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

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
  margin-top: auto;
}

.testimonial-card.featured .testimonial-footer {
  border-top-color: rgba(255,255,255,0.2);
}

.testimonial-date {
  font-size: 0.9rem;
  color: #999;
}

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

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: #28a745;
  font-weight: 600;
}

.testimonial-card.featured .verified-badge {
  color: #90EE90;
}

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

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

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

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

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

.services-section .section-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(355, 39%, 34%);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

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

.services-section .section-subtitle {
  font-size: 1.3rem;
  color: #555;
  max-width: 800px;
  margin: 30px auto 0;
  line-height: 1.8;
}

.services-section .service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

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

.services-section .service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border-color: hsl(355, 39%, 59%);
}

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

.services-section .service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, hsl(355, 39%, 34%), hsl(355, 39%, 59%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.services-section .service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

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

.services-section .service-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(355, 39%, 34%);
  margin-bottom: 18px;
  text-align: center;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-section .service-description {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: center;
}

.services-section .service-details {
  border-top: 1px solid #e9ecef;
  padding-top: 20px;
  margin-top: auto;
}

.services-section .service-price {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: hsl(355, 39%, 34%);
  text-align: center;
  margin-bottom: 15px;
}

.services-section .service-duration {
  font-size: 1rem;
  color: #666;
  text-align: center;
  margin-bottom: 20px;
}

.services-section .service-btn {
  display: block;
  width: 100%;
  padding: 14px 28px;
  background: hsl(355, 39%, 34%);
  color: #ffffff;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: 2px solid hsl(355, 39%, 34%);
}

.services-section .service-btn:hover {
  background: hsl(355, 39%, 59%);
  border-color: hsl(355, 39%, 59%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.services-section .deadline-banner {
  background: linear-gradient(135deg, hsl(355, 39%, 34%), hsl(355, 39%, 19%));
  color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 50px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.15);
}

.services-section .deadline-banner h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.services-section .deadline-banner p {
  font-size: 1.15rem;
  margin: 0;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .services-section .section-title {
    font-size: 2.2rem;
  }
  
  .services-section .section-subtitle {
    font-size: 1.1rem;
  }
  
  .services-section .service-card {
    margin-bottom: 30px;
  }
  
  .services-section .service-title {
    font-size: 1.3rem;
    min-height: auto;
  }
}

.credentials-section {
  background: #ffffff;
  padding: 60px 0;
  font-family: 'Crimson Text', serif;
}

.credentials-section .section-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: hsl(355, 39%, 34%);
  text-align: center;
  margin-bottom: 40px;
}

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

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

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

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

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

@media (min-width: 768px) and (max-width: 991px) {
  .credential-card {
    margin-bottom: 20px;
  }
}

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

.disclaimer-section .section-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(355, 39%, 34%);
  margin-bottom: 1rem;
  text-align: center;
}

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

.disclaimer-section .info-icon {
  font-size: 4rem;
  color: hsl(355, 39%, 59%);
  opacity: 0.9;
}

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

.disclaimer-section .disclaimer-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  text-align: justify;
  margin-bottom: 0;
}

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

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(355, 39%, 34%);
    --secondary-color: hsl(355, 39%, 19%);
    --accent-color: hsl(355, 39%, 59%);
  }
  
  .policy-content {
    font-family: 'Crimson Text', serif;
    color: var(--secondary-color);
    line-height: 1.8;
    font-size: 1.1rem;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Work Sans', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.4rem;
    color: var(--accent-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.8rem;
  }
  
  .policy-content strong {
    color: var(--primary-color);
    font-weight: 700;
  }
  
  .contact-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .contact-box h3 {
    color: white !important;
    margin-top: 0;
  }
  
  .contact-box a {
    color: white;
    border-bottom-color: var(--accent-color);
  }
  
  .contact-box a:hover {
    color: var(--accent-color);
  }
  
  .highlight-section {
    background-color: rgba(355, 39%, 59%, 0.05);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
  }
  
  .last-updated {
    font-style: italic;
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-top: 1rem;
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(355, 39%, 34%);
    --secondary-color: hsl(355, 39%, 19%);
    --accent-color: hsl(355, 39%, 59%);
  }
  
  .policy-content {
    font-family: 'Crimson Text', serif;
    color: #2c3e50;
    line-height: 1.8;
    font-size: 1.1rem;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
  }
  
  .policy-content a:hover {
    border-bottom-color: var(--accent-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.8rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .info-box {
    background: linear-gradient(135deg, rgba(142, 68, 73, 0.05) 0%, rgba(142, 68, 73, 0.1) 100%);
    border-left: 5px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
  }
  
  .contact-section h3 {
    color: white;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .contact-section a {
    color: var(--accent-color);
    font-weight: 600;
  }
  
  .contact-section a:hover {
    color: white;
  }
  
  .last-updated {
    font-style: italic;
    color: #6c757d;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #dee2e6;
  }