:root {
            --primary-color: hsl(273, 31%, 42%);
            --secondary-color: hsl(273, 31%, 27%);
            --accent-color: hsl(273, 31%, 67%);
        }
        
        body {
            font-family: 'Lora', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            color: #222;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Lora', serif;
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem hsla(273, 31%, 42%, 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='hsl(273, 31%, 42%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lora:wght@400;500;600;700&display=swap');

  #about {
    font-family: 'Lora', serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  #about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(273, 31%, 67%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }

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

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

  #about .section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(273, 31%, 27%);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  #about .section-header .underline {
    width: 80px;
    height: 4px;
    background: hsl(273, 31%, 42%);
    margin: 0 auto 25px;
  }

  #about .section-header p {
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
  }

  #about .about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
  }

  #about .about-image {
    flex: 0 0 45%;
    position: relative;
  }

  #about .about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
  }

  #about .about-image img:hover {
    transform: scale(1.03);
  }

  #about .about-text {
    flex: 1;
  }

  #about .about-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: hsl(273, 31%, 27%);
    margin-bottom: 25px;
  }

  #about .about-text p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
  }

  #about .about-content.reverse {
    flex-direction: row-reverse;
  }

  #about .values-section {
    background: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: 60px;
  }

  #about .values-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(273, 31%, 27%);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
  }

  #about .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
  }

  #about .value-item {
    background: linear-gradient(135deg, hsl(273, 31%, 42%) 0%, hsl(273, 31%, 27%) 100%);
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  #about .value-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.5s ease;
  }

  #about .value-item:hover::before {
    top: -20%;
    right: -20%;
  }

  #about .value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  }

  #about .value-item h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
  }

  #about .value-item p {
    font-size: 1rem;
    color: #f0f0f0;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
  }

  #about .stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
  }

  #about .stat-box {
    background: hsl(273, 31%, 67%, 0.15);
    padding: 30px 20px;
    border-radius: 10px;
    border: 2px solid hsl(273, 31%, 67%, 0.3);
  }

  #about .stat-box .number {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: hsl(273, 31%, 42%);
    display: block;
    margin-bottom: 10px;
  }

  #about .stat-box .label {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
  }

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

    #about .section-header h2 {
      font-size: 2.3rem;
    }

    #about .about-content {
      flex-direction: column;
      gap: 35px;
    }

    #about .about-content.reverse {
      flex-direction: column;
    }

    #about .about-image {
      flex: 0 0 100%;
    }

    #about .values-section {
      padding: 35px 25px;
    }

    #about .values-grid {
      gap: 25px;
    }
  }

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

    #about .section-header h2 {
      font-size: 1.9rem;
    }

    #about .about-text h3 {
      font-size: 1.6rem;
    }

    #about .about-text p {
      font-size: 1rem;
    }

    #about .values-section h3 {
      font-size: 1.8rem;
    }

    #about .value-item {
      padding: 25px 20px;
    }

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

    #about .stat-box .label {
      font-size: 1rem;
    }
  }

.portfolio-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.portfolio-section h2 {
  font-family: 'Oswald', sans-serif;
  color: hsl(273, 31%, 27%);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio-section .section-subtitle {
  font-family: 'Lora', serif;
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.filter-btn {
  font-family: 'Oswald', sans-serif;
  padding: 10px 25px;
  border: 2px solid hsl(273, 31%, 42%);
  background: transparent;
  color: hsl(273, 31%, 42%);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
  background: hsl(273, 31%, 42%);
  color: #fff;
}

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

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

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

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

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

.portfolio-content {
  padding: 25px;
}

.portfolio-category {
  font-family: 'Oswald', sans-serif;
  color: hsl(273, 31%, 42%);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.portfolio-item h3 {
  font-family: 'Oswald', sans-serif;
  color: hsl(273, 31%, 27%);
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

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

.view-details {
  font-family: 'Oswald', sans-serif;
  color: hsl(273, 31%, 42%);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.view-details:hover {
  color: hsl(273, 31%, 27%);
}

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

.modal-header {
  background: hsl(273, 31%, 42%);
  color: #fff;
  border-radius: 12px 12px 0 0;
  padding: 20px 30px;
}

.modal-header .modal-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
}

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

.modal-body {
  padding: 30px;
}

.modal-body .project-category {
  font-family: 'Oswald', sans-serif;
  color: hsl(273, 31%, 42%);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

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

.modal-body h5 {
  font-family: 'Oswald', sans-serif;
  color: hsl(273, 31%, 27%);
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.modal-body p,
.modal-body ul {
  font-family: 'Lora', serif;
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
}

.modal-body ul {
  padding-left: 20px;
}

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

.project-stats {
  display: flex;
  gap: 30px;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

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

.stat-value {
  font-family: 'Oswald', sans-serif;
  color: hsl(273, 31%, 42%);
  font-size: 2rem;
  font-weight: 600;
}

.stat-label {
  font-family: 'Lora', serif;
  color: #666;
  font-size: 0.9rem;
}

@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: 0.5rem;
  }
  
  .filter-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .project-stats {
    gap: 20px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lora:wght@400;500;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

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

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

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

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

#advantages .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(273, 31%, 27%);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

#advantages .advantage-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 5px 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;
}

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

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

#advantages .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(273, 31%, 67%);
}

#advantages .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(273, 31%, 42%), hsl(273, 31%, 67%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
}

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

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

#advantages .advantage-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(273, 31%, 27%);
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

@media (max-width: 768px) {
    #advantages {
        padding: 60px 0;
    }
    
    #advantages .section-title {
        font-size: 2.2rem;
    }
    
    #advantages .section-subtitle {
        font-size: 1rem;
    }
    
    #advantages .advantage-card {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    #advantages .section-title {
        font-size: 1.8rem;
    }
    
    #advantages .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    #advantages .icon-wrapper i {
        font-size: 1.8rem;
    }
}

.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(273, 31%, 42%) 0%, hsl(273, 31%, 27%) 100%);
    position: relative;
    overflow: hidden;
}

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

.statistics-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.statistics-section .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.statistics-section .section-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    position: relative;
    z-index: 1;
}

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

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

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
    background: #ffffff;
}

.stat-icon i {
    font-size: 2rem;
    color: hsl(273, 31%, 27%);
}

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

.stat-label {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    line-height: 1.4;
}

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

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

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

footer {
  background: linear-gradient(135deg, hsl(273, 31%, 27%) 0%, hsl(273, 31%, 42%) 100%);
  color: #ffffff;
  padding: 60px 0 30px;
  font-family: 'Lora', serif;
  margin-top: 80px;
}

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

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

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

footer a:hover {
  color: hsl(273, 31%, 67%);
  padding-left: 5px;
}

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

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

.footer-description {
  margin-bottom: 25px;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

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

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

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

#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: 30px 0;
  border-top: 3px solid hsl(273, 31%, 42%);
}

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

#cookieNotice h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: hsl(273, 31%, 27%);
  margin-bottom: 15px;
  font-weight: 600;
}

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

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

.cookie-category {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-family: 'Lora', serif;
  color: #333333;
  font-size: 0.9rem;
}

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

.cookie-category strong {
  color: hsl(273, 31%, 27%);
  min-width: 180px;
  font-weight: 600;
}

.cookie-category-required {
  color: #28a745;
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 8px;
}

.cookie-category-optional {
  color: #6c757d;
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 8px;
}

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

.cookie-buttons .btn {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.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 {
  background: transparent;
  color: hsl(273, 31%, 42%);
  border: 2px solid hsl(273, 31%, 42%);
}

.btn-manage:hover {
  background: hsl(273, 31%, 42%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(106, 72, 133, 0.3);
}

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

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

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

  .footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
  }

  #cookieNotice {
    padding: 20px 0;
  }

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

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

  .cookie-buttons .btn {
    width: 100%;
    padding: 14px 20px;
  }

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

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

.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: Lora, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(273, 31%, 42%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Oswald, sans-serif; color: hsl(273, 31%, 27%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(273, 31%, 42%); }
.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(273, 31%, 27%); font-family: Oswald, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(273, 31%, 27%); font-family: Oswald, sans-serif; }
.blog-article a { color: hsl(273, 31%, 42%); }
.blog-article a:hover { color: hsl(273, 31%, 67%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(273, 31%, 42%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lora:wght@400;500;600;700&display=swap');

  #contact {
    font-family: 'Lora', serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  #contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsla(273, 31%, 67%, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
  }

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

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

  #contact .section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  #contact .section-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

  #contact .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
  }

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

  #contact .contact-form-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(273, 31%, 42%);
    margin-bottom: 30px;
    text-transform: uppercase;
  }

  #contact .form-group {
    margin-bottom: 25px;
  }

  #contact .form-group label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  #contact .form-group label span {
    color: hsl(273, 31%, 42%);
  }

  #contact .form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #333;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  #contact .form-control:focus {
    outline: none;
    border-color: hsl(273, 31%, 42%);
    background: #ffffff;
    box-shadow: 0 0 0 4px hsla(273, 31%, 42%, 0.1);
  }

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

  #contact .btn-submit {
    width: 100%;
    padding: 16px 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: hsl(273, 31%, 42%);
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
  }

  #contact .btn-submit:hover {
    background: hsl(273, 31%, 27%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px hsla(273, 31%, 42%, 0.3);
  }

  #contact .contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  #contact .info-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-left: 4px solid hsl(273, 31%, 42%);
    transition: all 0.3s ease;
  }

  #contact .info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  }

  #contact .info-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  #contact .info-item {
    display: flex;
    align-items: start;
    margin-bottom: 18px;
    gap: 15px;
  }

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

  #contact .info-icon {
    width: 45px;
    height: 45px;
    background: hsl(273, 31%, 67%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: #ffffff;
  }

  #contact .info-content {
    flex: 1;
  }

  #contact .info-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
  }

  #contact .info-value {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
  }

  #contact .info-value a {
    color: hsl(273, 31%, 42%);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  #contact .info-value a:hover {
    color: hsl(273, 31%, 27%);
    text-decoration: underline;
  }

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

  #contact .hours-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

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

  #contact .hours-day {
    font-weight: 600;
    color: #333;
  }

  #contact .hours-time {
    color: #666;
  }

  #contact .hours-closed {
    color: #999;
    font-style: italic;
  }

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

    #contact .contact-wrapper {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    #contact .section-header h2 {
      font-size: 2.2rem;
    }

    #contact .contact-form-box {
      padding: 35px;
    }
  }

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

    #contact .section-header h2 {
      font-size: 1.8rem;
    }

    #contact .section-header p {
      font-size: 1rem;
    }

    #contact .contact-form-box {
      padding: 25px;
    }

    #contact .contact-form-box h3 {
      font-size: 1.5rem;
    }

    #contact .info-card {
      padding: 25px;
    }

    #contact .info-card h4 {
      font-size: 1.1rem;
    }

    #contact .hours-list li {
      flex-direction: column;
      align-items: start;
      gap: 5px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lora:wght@400;500;600;700&display=swap');
  
  :root {
    --primary-color: hsl(273, 31%, 42%);
    --secondary-color: hsl(273, 31%, 27%);
    --accent-color: hsl(273, 31%, 67%);
  }
  
  .policy-content {
    font-family: 'Lora', serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Oswald', sans-serif;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .policy-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 3rem;
    position: relative;
    padding-left: 1.5rem;
  }
  
  .policy-content h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background: var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-intro {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .policy-intro p {
    margin-bottom: 0;
    font-size: 1.1rem;
    text-align: left;
  }
  
  .contact-box {
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
  }
  
  .contact-box strong {
    color: var(--secondary-color);
  }
  
  .cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
  }
  
  .cookie-table table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .cookie-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
  }
  
  .cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
  }
  
  .cookie-table tr:hover {
    background-color: #f8f9fa;
  }
  
  .highlight-box {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-weight: 500;
  }
  
  .last-updated {
    font-style: italic;
    color: #6c757d;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #dee2e6;
  }

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lora:wght@400;500;600;700&display=swap');

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

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

  .faq-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(273, 31%, 27%);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .faq-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

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

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

  .faq-accordion .accordion-button {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: hsl(273, 31%, 27%);
    background-color: #ffffff;
    padding: 20px 25px;
    border: none;
    transition: all 0.3s ease;
  }

  .faq-accordion .accordion-button:not(.collapsed) {
    background-color: hsl(273, 31%, 42%);
    color: #ffffff;
    box-shadow: none;
  }

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

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

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

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

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

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

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

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

  .faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: hsl(273, 31%, 67%);
    border-radius: 12px;
  }

  .faq-cta h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
  }

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

  .faq-cta .btn-contact {
    font-family: 'Oswald', sans-serif;
    background-color: hsl(273, 31%, 27%);
    color: #ffffff;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .faq-cta .btn-contact:hover {
    background-color: hsl(273, 31%, 20%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  }

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

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

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

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

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

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

    .faq-cta p {
      font-size: 1rem;
    }
  }

.newsletter-section {
  background: linear-gradient(135deg, hsl(273, 31%, 42%) 0%, hsl(273, 31%, 27%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

.newsletter-submit-btn {
  padding: 16px 40px;
  background: hsl(273, 31%, 67%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lora:wght@400;500;600;700&display=swap');

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

  .hero-section h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(273, 31%, 27%);
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
  }

  .hero-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: hsl(273, 31%, 42%);
    margin-bottom: 35px;
    text-align: center;
  }

  .hero-content {
    max-width: 720px;
    margin: 0 auto;
  }

  .hero-image-wrapper {
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .hero-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 35px;
    text-align: left;
  }

  .hero-advantages {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
  }

  .hero-advantages li {
    padding: 12px 0 12px 40px;
    position: relative;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
  }

  .hero-advantages li::before {
    content: "\f26b";
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: hsl(273, 31%, 42%);
    font-size: 1.3rem;
    top: 10px;
  }

  .hero-cta {
    text-align: center;
    margin-top: 45px;
  }

  .hero-cta .btn {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    padding: 14px 40px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin: 8px;
    text-decoration: none;
    display: inline-block;
  }

  .btn-primary-hero {
    background-color: hsl(273, 31%, 42%);
    color: #ffffff;
    border: 2px solid hsl(273, 31%, 42%);
  }

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

  .btn-secondary-hero {
    background-color: transparent;
    color: hsl(273, 31%, 42%);
    border: 2px solid hsl(273, 31%, 42%);
  }

  .btn-secondary-hero:hover {
    background-color: hsl(273, 31%, 67%);
    border-color: hsl(273, 31%, 67%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

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

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

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

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

    .hero-advantages li {
      font-size: 1rem;
      padding-left: 35px;
    }

    .hero-cta .btn {
      font-size: 1rem;
      padding: 12px 30px;
      display: block;
      margin: 10px auto;
      max-width: 280px;
    }
  }

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

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

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

.testimonials-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: hsl(273, 31%, 27%);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials-section .subtitle {
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 60px;
  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(273, 31%, 67%);
}

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

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(273, 31%, 42%), hsl(273, 31%, 67%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 600;
  flex-shrink: 0;
}

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

.testimonial-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 5px;
  font-weight: 500;
}

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

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

.testimonial-rating .empty-star {
  color: #ddd;
}

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

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

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

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(273, 31%, 42%), hsl(273, 31%, 27%));
  border-left: 4px solid hsl(273, 31%, 67%);
}

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

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

.testimonial-highlight {
  background: hsl(273, 31%, 67%);
  color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  text-align: center;
}

.testimonial-highlight .stat {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 5px;
}

.testimonial-highlight .label {
  color: #ffffff;
  font-size: 1rem;
}

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

.credentials-section {
  background: #f8f9fa;
  padding: 60px 0;
  font-family: 'Lora', serif;
}

.credentials-section h2 {
  font-family: 'Oswald', sans-serif;
  color: hsl(273, 31%, 27%);
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
}

.credential-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

.blog-preview h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(273, 31%, 27%);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

.blog-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 3px solid hsl(273, 31%, 42%);
}

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

.blog-meta {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #777;
}

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

.blog-meta i {
    color: hsl(273, 31%, 42%);
}

.blog-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(273, 31%, 27%);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.blog-read-more:hover {
    gap: 0.8rem;
    color: hsl(273, 31%, 27%);
}

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

.btn-view-all {
    display: inline-block;
    padding: 14px 40px;
    background: hsl(273, 31%, 42%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

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

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

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

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

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

    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.offer-section {
  background: linear-gradient(135deg, hsl(273, 31%, 42%) 0%, hsl(273, 31%, 27%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(273, 31%, 67%);
  opacity: 0.1;
  border-radius: 50%;
}

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

.offer-badge {
  display: inline-block;
  background: hsl(273, 31%, 67%);
  color: hsl(273, 31%, 27%);
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.offer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.offer-description {
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 1.8;
  color: #f8f9fa;
  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-box {
  background: linear-gradient(135deg, hsl(273, 31%, 67%) 0%, hsl(273, 31%, 42%) 100%);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
}

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

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

.calendar-icon {
  font-size: 38px;
  color: #fff;
}

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

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

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

.benefit-icon {
  color: hsl(273, 31%, 42%);
  font-size: 24px;
  flex-shrink: 0;
}

.discount-highlight {
  background: hsl(273, 31%, 42%);
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 40px;
}

.discount-text {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
}

.offer-cta-btn {
  background: hsl(273, 31%, 42%);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 18px 50px;
  border: none;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.offer-cta-btn:hover {
  background: hsl(273, 31%, 27%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #fff;
}

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

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

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

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

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

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

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

  .benefits-list li {
    font-size: 15px;
  }
}

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

.services-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    color: hsl(273, 31%, 27%);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(108, 73, 130, 0.25);
    border-color: hsl(273, 31%, 67%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(273, 31%, 42%) 0%, hsl(273, 31%, 27%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(273, 31%, 27%) 0%, hsl(273, 31%, 42%) 100%);
}

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

.service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    color: hsl(273, 31%, 27%);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-description {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-price {
    text-align: center;
    padding: 20px 0;
    border-top: 2px solid hsl(273, 31%, 67%);
    margin-top: auto;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: hsl(273, 31%, 42%);
    font-weight: 700;
}

.service-terms {
    background: hsl(273, 31%, 67%);
    color: #222;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    margin-top: 15px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-section h2 {
        font-size: 2.2rem;
    }
    
    .service-card {
        margin-bottom: 30px;
        padding: 35px 25px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
}

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

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

.disclaimer-icon {
  font-size: 3rem;
  color: hsl(273, 31%, 42%);
  margin-bottom: 1.5rem;
}

.disclaimer-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.disclaimer-content {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 4px solid hsl(273, 31%, 42%);
}

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

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-title {
    font-size: 2rem;
  }
  
  .disclaimer-content {
    padding: 1.5rem;
  }
  
  .disclaimer-text {
    font-size: 1rem;
  }
  
  .disclaimer-icon {
    font-size: 2.5rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Lora:wght@400;500;600&display=swap');
  
  :root {
    --primary-color: hsl(273, 31%, 42%);
    --secondary-color: hsl(273, 31%, 27%);
    --accent-color: hsl(273, 31%, 67%);
  }
  
  .policy-content {
    font-family: 'Lora', serif;
    color: #2c3e50;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Oswald', sans-serif;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--accent-color);
  }
  
  .policy-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-intro {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(273, 31%, 85%) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .policy-intro p {
    margin-bottom: 0;
    color: var(--secondary-color);
    font-weight: 500;
  }
  
  .contact-box {
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
  }
  
  .contact-box strong {
    color: var(--primary-color);
  }
  
  .section-divider {
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 3rem 0;
    border: none;
  }
  
  .highlight-box {
    background-color: hsl(273, 31%, 95%);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 2px solid var(--accent-color);
  }
  
  .last-updated {
    font-style: italic;
    color: #6c757d;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #dee2e6;
  }

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lora:wght@400;500;600;700&display=swap');
  
  :root {
    --primary-color: hsl(273, 31%, 42%);
    --secondary-color: hsl(273, 31%, 27%);
    --accent-color: hsl(273, 31%, 67%);
  }
  
  .policy-content {
    font-family: 'Lora', serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .policy-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(273, 31%, 75%) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .info-box p {
    margin-bottom: 0.5rem;
    text-align: left;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    margin: 2rem 0;
  }
  
  .effective-date {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
  }