:root {
--primary-color: hsl(342, 50%, 36%);
--secondary-color: hsl(342, 50%, 21%);
  --accent-color: hsl(342, 50%, 61%);
}
* {
  margin: 0;
    padding: 0;
  box-sizing: border-box;
}
body {
font-family: 'Playfair Display', serif;
  color: #333;
    background: #fff;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Ubuntu', sans-serif;
}
.navbar {
  background: #fff;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 0.8rem 0;
}
.navbar-brand {
  display: flex;
align-items: center;
    gap: 12px;
  font-family: 'Ubuntu', sans-serif;
font-weight: 700;
  font-size: 1.5rem;
    color: var(--primary-color);
}
.navbar-brand:hover {
color: var(--accent-color);
}
.navbar-brand img {
  transition: transform 0.3s ease;
}
.navbar-brand:hover img {
transform: scale(1.05);
}
.nav-link {
  font-family: 'Playfair Display', serif;
font-size: 1.05rem;
    color: #333;
  padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}
.nav-link:hover {
color: var(--primary-color);
}
.navbar-toggler {
border: none;
  padding: 0.25rem 0.5rem;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.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='%23A62D52' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width: 991px) {
.navbar-collapse {
    background: #fff;
  padding: 1rem;
  margin-top: 0.5rem;
    border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
  .nav-link {
    padding: 0.7rem 1rem;
  }
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }
  
  .about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsla(342, 50%, 61%, 0.08) 0%, transparent 70%);
    border-radius: 50%;
  }

  .about-section h2 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(342, 50%, 21%);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .about-section h3 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(342, 50%, 36%);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }

  .about-content {
    font-family: 'Playfair Display', serif;
    color: #333;
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .about-text-block {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    margin-bottom: 20px;
    border-left: 4px solid hsl(342, 50%, 61%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .about-text-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }

  .about-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    margin-bottom: 25px;
    transition: transform 0.4s ease;
  }

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

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

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

  .value-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 3px solid hsl(342, 50%, 61%);
  }

  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border-top-color: hsl(342, 50%, 36%);
  }

  .value-icon {
    font-size: 2.5rem;
    color: hsl(342, 50%, 36%);
    margin-bottom: 15px;
  }

  .value-card h4 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(342, 50%, 21%);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .value-card p {
    font-family: 'Playfair Display', serif;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
  }

  .highlight-box {
    background: linear-gradient(135deg, hsl(342, 50%, 36%) 0%, hsl(342, 50%, 21%) 100%);
    color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

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

  .highlight-box p {
    color: #f8f9fa;
    margin-bottom: 0;
  }

  .stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 20px;
  }

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

  .stat-number {
    font-family: 'Ubuntu', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: hsl(342, 50%, 36%);
    display: block;
    line-height: 1;
  }

  .stat-label {
    font-family: 'Playfair Display', serif;
    color: #666;
    font-size: 1rem;
    margin-top: 8px;
  }

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

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

    .about-section h3 {
      font-size: 1.4rem;
    }

    .about-text-block {
      padding: 20px;
    }

    .values-grid {
      grid-template-columns: 1fr;
    }

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

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

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

  .portfolio-section h2 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: hsl(342, 50%, 36%);
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-align: center;
  }

  .portfolio-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
    color: #333;
    font-size: 1.05rem;
    line-height: 1.6;
  }

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

  .filter-btn {
    padding: 10px 26px;
    background: #fff;
    border: 2px solid hsl(342, 50%, 36%);
    color: hsl(342, 50%, 36%);
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(342, 50%, 36%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(165, 42, 74, 0.25);
  }

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

  .portfolio-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px 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(165, 42, 74, 0.2);
  }

  .portfolio-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 260px;
  }

  .portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .portfolio-item:hover .portfolio-img-wrapper img {
    transform: scale(1.1);
  }

  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(165, 42, 74, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
  }

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

  .overlay-icon {
    color: #fff;
    font-size: 1.8rem;
    margin-left: auto;
  }

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-category {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.85rem;
    color: hsl(342, 50%, 61%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

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

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

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

  .modal-header {
    background: linear-gradient(135deg, hsl(342, 50%, 36%) 0%, hsl(342, 50%, 21%) 100%);
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
    border: none;
  }

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

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

  .modal-body {
    padding: 35px 30px;
  }

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

  .modal-category {
    display: inline-block;
    background: hsl(342, 50%, 61%);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .modal-details h5 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(342, 50%, 36%);
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 25px;
  }

  .modal-details p,
  .modal-details ul {
    color: #333;
    line-height: 1.7;
    font-size: 1rem;
  }

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

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

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

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

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

    .filter-buttons {
      gap: 8px;
    }

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

    .modal-body {
      padding: 25px 20px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&family=Playfair+Display:wght@400;500;600;700&display=swap');
  
  #advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Playfair Display', serif;
  }
  
  #advantages .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  #advantages .section-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(342, 50%, 36%);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }
  
  #advantages .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(342, 50%, 61%);
    border-radius: 2px;
  }
  
  #advantages .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .advantage-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }
  
  .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, hsl(342, 50%, 36%), hsl(342, 50%, 61%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  
  .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(165, 42, 83, 0.2);
    border-color: hsl(342, 50%, 61%);
  }
  
  .advantage-card:hover::before {
    transform: scaleX(1);
  }
  
  .advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(342, 50%, 36%), hsl(342, 50%, 21%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
  }
  
  .advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(342, 50%, 61%), hsl(342, 50%, 36%));
  }
  
  .advantage-icon i {
    font-size: 2.2rem;
    color: #ffffff;
  }
  
  .advantage-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(342, 50%, 21%);
    margin-bottom: 18px;
    text-align: center;
  }
  
  .advantage-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    #advantages {
      padding: 60px 0;
    }
    
    #advantages .section-title {
      font-size: 2.2rem;
    }
    
    .advantage-card {
      margin-bottom: 30px;
      padding: 35px 25px;
    }
  }
  
  @media (max-width: 576px) {
    #advantages .section-title {
      font-size: 1.9rem;
    }
    
    .advantage-icon {
      width: 70px;
      height: 70px;
    }
    
    .advantage-icon i {
      font-size: 1.9rem;
    }
  }

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

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

  #statistics::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(342, 50%, 61%, 0.08);
    border-radius: 50%;
    z-index: 0;
  }

  #statistics::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(342, 50%, 36%, 0.05);
    border-radius: 50%;
    z-index: 0;
  }

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

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

  .stats-header h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(342, 50%, 21%);
    margin-bottom: 15px;
  }

  .stats-header p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-top: 50px;
  }

  .stat-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
  }

  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: hsl(342, 50%, 61%);
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, hsl(342, 50%, 36%) 0%, hsl(342, 50%, 61%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    transition: transform 0.3s ease;
  }

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

  .stat-number {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(342, 50%, 36%);
    margin-bottom: 10px;
    line-height: 1;
  }

  .stat-label {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 8px;
  }

  .stat-context {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
  }

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

    .stats-header h2 {
      font-size: 2.2rem;
    }

    .stats-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 25px;
    }

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

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

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

  @media (max-width: 576px) {
    .stats-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .stats-header h2 {
      font-size: 1.9rem;
    }
  }

footer {
background: hsl(342, 50%, 21%);
color: #f8f9fa;
padding: 60px 0 20px;
font-family: 'Playfair Display', serif;
}

footer h5 {
font-family: 'Ubuntu', sans-serif;
color: hsl(342, 50%, 61%);
margin-bottom: 20px;
font-size: 1.2rem;
}

footer p, footer li, footer a {
font-size: 0.95rem;
line-height: 1.7;
}

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

footer a:hover {
color: hsl(342, 50%, 61%);
}

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

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

.footer-logo {
font-family: 'Ubuntu', sans-serif;
font-size: 1.8rem;
font-weight: bold;
color: hsl(342, 50%, 61%);
margin-bottom: 15px;
}

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

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

.contact-item i {
margin-right: 10px;
color: hsl(342, 50%, 61%);
min-width: 20px;
}

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

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

#cookieNotice h4 {
font-family: 'Ubuntu', sans-serif;
color: hsl(342, 50%, 36%);
margin-bottom: 15px;
font-size: 1.4rem;
}

#cookieNotice p {
color: #333;
font-size: 0.95rem;
margin-bottom: 15px;
}

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

.cookie-category {
padding: 8px 0;
color: #333;
font-size: 0.9rem;
}

.cookie-category strong {
color: hsl(342, 50%, 36%);
display: block;
margin-bottom: 3px;
}

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

.btn-accept-all {
background: #28a745;
color: #fff;
border: none;
padding: 12px 30px;
border-radius: 6px;
font-family: 'Ubuntu', sans-serif;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

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

.btn-reject {
background: #6c757d;
color: #fff;
border: none;
padding: 12px 30px;
border-radius: 6px;
font-family: 'Ubuntu', sans-serif;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

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

.btn-manage {
background: transparent;
color: hsl(342, 50%, 36%);
border: 2px solid hsl(342, 50%, 36%);
padding: 12px 30px;
border-radius: 6px;
font-family: 'Ubuntu', sans-serif;
font-weight: 600;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
}

.btn-manage:hover {
background: hsl(342, 50%, 36%);
color: #fff;
transform: translateY(-2px);
}

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

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

.cookie-buttons button,
.cookie-buttons a {
width: 100%;
text-align: center;
}
}

.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: Playfair Display, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(342, 50%, 36%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Ubuntu, sans-serif; color: hsl(342, 50%, 21%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(342, 50%, 36%); }
.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(342, 50%, 21%); font-family: Ubuntu, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(342, 50%, 21%); font-family: Ubuntu, sans-serif; }
.blog-article a { color: hsl(342, 50%, 36%); }
.blog-article a:hover { color: hsl(342, 50%, 61%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(342, 50%, 36%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

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

  #contact .section-title {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: hsl(342, 50%, 21%);
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-align: center;
  }

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

  #contact .contact-wrapper {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
  }

  #contact .contact-info-side {
    background: linear-gradient(135deg, hsl(342, 50%, 36%) 0%, hsl(342, 50%, 21%) 100%);
    padding: 50px 40px;
    color: #ffffff;
    position: relative;
  }

  #contact .contact-info-side::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="white" opacity="0.1"/></svg>');
    opacity: 0.3;
  }

  #contact .info-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
  }

  #contact .contact-item {
    margin-bottom: 35px;
    position: relative;
    padding-left: 50px;
  }

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

  #contact .contact-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }

  #contact .contact-label {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.9;
  }

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

  #contact .contact-value a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
  }

  #contact .contact-value a:hover {
    opacity: 0.8;
  }

  #contact .form-side {
    padding: 50px 40px;
  }

  #contact .form-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.6rem;
    color: hsl(342, 50%, 21%);
    margin-bottom: 30px;
    font-weight: 600;
  }

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

  #contact .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 18px;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s;
    font-size: 1rem;
  }

  #contact .form-control:focus {
    border-color: hsl(342, 50%, 61%);
    box-shadow: 0 0 0 0.2rem rgba(169, 42, 73, 0.15);
    outline: none;
  }

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

  #contact .submit-btn {
    background: linear-gradient(135deg, hsl(342, 50%, 36%) 0%, hsl(342, 50%, 21%) 100%);
    color: #ffffff;
    border: none;
    padding: 15px 45px;
    border-radius: 10px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 10px;
  }

  #contact .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(169, 42, 73, 0.3);
  }

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

  #contact .working-hours-list li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
  }

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

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

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

    #contact .contact-info-side {
      padding: 40px 30px;
    }

    #contact .form-side {
      padding: 40px 30px;
    }
  }

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

    #contact .contact-item {
      padding-left: 45px;
      margin-bottom: 30px;
    }

    #contact .contact-icon {
      width: 35px;
      height: 35px;
      font-size: 1rem;
    }
  }

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

  :root {
    --primary-color: hsl(342, 50%, 36%);
    --secondary-color: hsl(342, 50%, 21%);
    --accent-color: hsl(342, 50%, 61%);
  }

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

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

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

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

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

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

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

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

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

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

  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }

  .intro-box {
    background: linear-gradient(135deg, rgba(168, 50, 85, 0.05) 0%, rgba(168, 50, 85, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
  }

  .contact-box {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
  }

  .contact-box h2 {
    color: white;
    border-left-color: var(--accent-color);
  }

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

  .contact-box a:hover {
    color: white;
  }

  .cookie-type-card {
    background-color: #f8f9fa;
    border-left: 3px solid var(--accent-color);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 0.375rem;
    transition: transform 0.2s ease;
  }

  .cookie-type-card:hover {
    transform: translateX(5px);
  }

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

  .table-responsive {
    margin: 1.5rem 0;
  }

  .table {
    font-family: 'Playfair Display', serif;
  }

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

  .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(168, 50, 85, 0.05);
  }

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

  .faq-section h2 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(342, 50%, 21%);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }

  .faq-intro {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  .faq-accordion .accordion-button {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: hsl(342, 50%, 21%);
    background: #fff;
    padding: 1.5rem 1.8rem;
    border: none;
    box-shadow: none;
  }

  .faq-accordion .accordion-button:not(.collapsed) {
    background: hsl(342, 50%, 36%);
    color: #fff;
  }

  .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='%23a32147'%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='%23fff'%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 {
    font-family: 'Playfair Display', serif;
    color: #444;
    padding: 1.5rem 1.8rem;
    font-size: 1.05rem;
    line-height: 1.7;
    background: #fff;
  }

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

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

  .faq-accordion .accordion-body strong {
    color: hsl(342, 50%, 36%);
  }

  .faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: hsl(342, 50%, 36%);
    border-radius: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-cta h3 {
    font-family: 'Ubuntu', sans-serif;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .faq-cta p {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .faq-cta .btn-light {
    font-family: 'Ubuntu', sans-serif;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    background: #fff;
    color: hsl(342, 50%, 36%);
    border: none;
    transition: all 0.3s ease;
  }

  .faq-cta .btn-light:hover {
    background: hsl(342, 50%, 61%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

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

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

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

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

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(342, 50%, 36%) 0%, hsl(342, 50%, 21%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    z-index: 1;
  }
  
  .newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    z-index: 1;
  }
  
  .newsletter-container {
    position: relative;
    z-index: 2;
  }
  
  .newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }
  
  .newsletter-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    backdrop-filter: blur(10px);
  }
  
  .newsletter-icon svg {
    width: 35px;
    height: 35px;
    fill: #fff;
  }
  
  .newsletter-heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
  }
  
  .newsletter-description {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    line-height: 1.6;
  }
  
  .newsletter-form {
    max-width: 550px;
    margin: 0 auto;
  }
  
  .newsletter-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
  }
  
  .newsletter-email-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .newsletter-email-input::placeholder {
    color: rgba(255,255,255,0.6);
  }
  
  .newsletter-email-input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.1);
  }
  
  .newsletter-submit-btn {
    padding: 16px 40px;
    background: #fff;
    color: hsl(342, 50%, 36%);
    border: none;
    border-radius: 50px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .newsletter-submit-btn:hover {
    background: hsl(342, 50%, 61%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  
  .newsletter-privacy {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-top: 12px;
  }
  
  .newsletter-privacy a {
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
  }
  
  .newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  
  .newsletter-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
  }
  
  .newsletter-benefit-icon {
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .newsletter-benefit-icon svg {
    width: 12px;
    height: 12px;
    fill: #fff;
  }
  
  @media (max-width: 768px) {
    .newsletter-section {
      padding: 60px 0;
    }
    
    .newsletter-heading {
      font-size: 2rem;
    }
    
    .newsletter-description {
      font-size: 1rem;
    }
    
    .newsletter-input-group {
      flex-direction: column;
    }
    
    .newsletter-submit-btn {
      width: 100%;
    }
    
    .newsletter-benefits {
      gap: 20px;
    }
  }
  
  @media (max-width: 576px) {
    .newsletter-heading {
      font-size: 1.75rem;
    }
    
    .newsletter-icon {
      width: 60px;
      height: 60px;
    }
    
    .newsletter-icon svg {
      width: 30px;
      height: 30px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&family=Playfair+Display:wght@400;500;600&display=swap');
  
  .hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0 60px;
    overflow: hidden;
    position: relative;
  }
  
  .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: hsl(342, 50%, 61%, 0.08);
    border-radius: 50%;
    z-index: 0;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero-section h1 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
    color: hsl(342, 50%, 21%);
    margin-bottom: 18px;
    line-height: 1.2;
  }
  
  .hero-section h2 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    color: hsl(342, 50%, 36%);
    margin-bottom: 24px;
  }
  
  .hero-description {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 28px;
  }
  
  .hero-advantages {
    list-style: none;
    padding: 0;
    margin: 32px 0;
  }
  
  .hero-advantages li {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #222;
    padding: 10px 0 10px 40px;
    position: relative;
    line-height: 1.6;
  }
  
  .hero-advantages li::before {
    content: '\f26b';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: hsl(342, 50%, 36%);
    font-size: 1.3rem;
    font-weight: bold;
  }
  
  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 35px;
  }
  
  .btn-hero-primary {
    font-family: 'Ubuntu', sans-serif;
    background: hsl(342, 50%, 36%);
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .btn-hero-primary:hover {
    background: hsl(342, 50%, 21%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    color: #fff;
  }
  
  .btn-hero-secondary {
    font-family: 'Ubuntu', sans-serif;
    background: transparent;
    color: hsl(342, 50%, 36%);
    padding: 14px 32px;
    border: 2px solid hsl(342, 50%, 36%);
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
  }
  
  .btn-hero-secondary:hover {
    background: hsl(342, 50%, 36%);
    color: #fff;
    transform: translateY(-2px);
  }
  
  .hero-image-wrapper {
    position: relative;
    z-index: 1;
  }
  
  .hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
  }
  
  .hero-image:hover {
    transform: scale(1.02);
  }
  
  .stats-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    animation: float 3s ease-in-out infinite;
  }
  
  .stats-badge h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.8rem;
    color: hsl(342, 50%, 36%);
    margin: 0;
    font-weight: 700;
  }
  
  .stats-badge p {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: #555;
    margin: 0;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  @media (max-width: 768px) {
    .hero-section {
      padding: 50px 0 40px;
    }
    
    .hero-section h1 {
      font-size: 2.2rem;
    }
    
    .hero-section h2 {
      font-size: 1.3rem;
    }
    
    .hero-buttons {
      flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
      width: 100%;
      justify-content: center;
    }
    
    .stats-badge {
      left: 50%;
      transform: translateX(-50%);
    }
  }

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

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

#services::before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 500px;
height: 500px;
background: hsl(342, 50%, 61%, 0.08);
border-radius: 50%;
z-index: 0;
}

#services::after {
content: '';
position: absolute;
bottom: -30%;
left: -5%;
width: 400px;
height: 400px;
background: hsl(342, 50%, 36%, 0.05);
border-radius: 50%;
z-index: 0;
}

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

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

.services-header h2 {
font-family: 'Ubuntu', sans-serif;
font-size: 2.8rem;
font-weight: 700;
color: hsl(342, 50%, 21%);
margin-bottom: 20px;
position: relative;
display: inline-block;
}

.services-header h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: hsl(342, 50%, 61%);
border-radius: 2px;
}

.services-header p {
font-family: 'Playfair Display', serif;
font-size: 1.1rem;
color: #555;
max-width: 700px;
margin: 30px auto 0;
line-height: 1.7;
}

.service-card {
background: #ffffff;
border-radius: 16px;
padding: 45px 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;
}

.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(90deg, hsl(342, 50%, 36%), hsl(342, 50%, 61%));
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s ease;
}

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

.service-card:hover {
transform: translateY(-12px);
box-shadow: 0 12px 40px rgba(169, 46, 77, 0.2);
border-color: hsl(342, 50%, 61%);
}

.service-icon {
width: 90px;
height: 90px;
background: linear-gradient(135deg, hsl(342, 50%, 36%), hsl(342, 50%, 61%));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
transition: all 0.4s ease;
position: relative;
}

.service-card:hover .service-icon {
transform: rotate(360deg) scale(1.1);
box-shadow: 0 8px 25px rgba(169, 46, 77, 0.35);
}

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

.service-card h3 {
font-family: 'Ubuntu', sans-serif;
font-size: 1.6rem;
font-weight: 600;
color: hsl(342, 50%, 21%);
margin-bottom: 18px;
text-align: center;
}

.service-card p {
font-family: 'Playfair Display', serif;
font-size: 1rem;
color: #666;
line-height: 1.7;
margin-bottom: 25px;
text-align: center;
}

.service-features {
list-style: none;
padding: 0;
margin: 25px 0;
}

.service-features li {
font-family: 'Playfair Display', serif;
font-size: 0.95rem;
color: #555;
padding: 8px 0;
position: relative;
padding-left: 28px;
}

.service-features li::before {
content: '✓';
position: absolute;
left: 0;
color: hsl(342, 50%, 61%);
font-weight: bold;
font-size: 1.1rem;
}

.service-price {
text-align: center;
margin: 25px 0 20px;
padding-top: 20px;
border-top: 1px solid #e9ecef;
}

.price-amount {
font-family: 'Ubuntu', sans-serif;
font-size: 2.2rem;
font-weight: 700;
color: hsl(342, 50%, 36%);
display: block;
}

.price-period {
font-family: 'Playfair Display', serif;
font-size: 0.9rem;
color: #888;
display: block;
margin-top: 5px;
}

.service-btn {
display: block;
width: 100%;
padding: 14px 30px;
background: hsl(342, 50%, 36%);
color: #ffffff;
text-decoration: none;
border-radius: 8px;
font-family: 'Ubuntu', sans-serif;
font-weight: 500;
font-size: 1rem;
text-align: center;
transition: all 0.3s ease;
border: 2px solid hsl(342, 50%, 36%);
}

.service-btn:hover {
background: hsl(342, 50%, 61%);
border-color: hsl(342, 50%, 61%);
color: #ffffff;
transform: scale(1.03);
box-shadow: 0 6px 20px rgba(169, 46, 77, 0.3);
}

.service-duration {
text-align: center;
font-family: 'Playfair Display', serif;
font-size: 0.9rem;
color: #777;
margin-top: 15px;
font-style: italic;
}

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

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

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

.service-card {
padding: 35px 25px;
margin-bottom: 30px;
}

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

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

.service-card h3 {
font-size: 1.4rem;
}

.price-amount {
font-size: 1.9rem;
}
}

.credentials-section {
    padding: 50px 0;
    background: #ffffff;
  }
  
  .credentials-section .section-title {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(342, 50%, 36%);
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .credentials-section .section-subtitle {
    font-family: 'Playfair Display', serif;
    color: #666;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .credential-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px 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: 12px;
  }
  
  .credential-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    .credentials-section {
      padding: 35px 0;
    }
    
    .credentials-section .section-title {
      font-size: 1.6rem;
    }
    
    .credential-card {
      padding: 18px 12px;
    }
    
    .credential-icon {
      font-size: 2rem;
    }
  }

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

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

.testimonials-section::before {
content: '';
    position: absolute;
    top: -50%;
left: -10%;
  width: 500px;
  height: 500px;
    background: hsl(342, 50%, 61%, 0.08);
  border-radius: 50%;
    z-index: 0;
}

.testimonials-section h2 {
  font-family: 'Ubuntu', sans-serif;
font-size: 2.8rem;
  font-weight: 700;
  color: hsl(342, 50%, 21%);
  text-align: center;
    margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.testimonials-section .subtitle {
font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
color: #555;
  text-align: center;
  margin-bottom: 60px;
    position: relative;
z-index: 1;
}

.testimonial-card {
  background: #ffffff;
    border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
    position: relative;
  z-index: 1;
}

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

.testimonial-card.card-style-1 {
  border-left: 4px solid hsl(342, 50%, 36%);
}

.testimonial-card.card-style-2 {
border-top: 4px solid hsl(342, 50%, 61%);
}

.testimonial-card.card-style-3 {
  background: linear-gradient(135deg, #ffffff 0%, #fef8f9 100%);
}

.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(342, 50%, 61%) 0%, hsl(342, 50%, 36%) 100%);
  display: flex;
    align-items: center;
  justify-content: center;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.5rem;
    font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-info h4 {
font-family: 'Ubuntu', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
    color: #222;
  margin: 0 0 5px 0;
}

.testimonial-location {
  font-family: 'Playfair Display', serif;
font-size: 0.9rem;
  color: #666;
    display: flex;
  align-items: center;
  gap: 5px;
}

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

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

.star.empty {
    color: #ddd;
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  line-height: 1.7;
    color: #333;
  margin-bottom: 15px;
}

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

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

.testimonial-badge {
display: inline-block;
  padding: 5px 12px;
    background: hsl(342, 50%, 95%);
  color: hsl(342, 50%, 36%);
  border-radius: 20px;
  font-family: 'Ubuntu', sans-serif;
    font-size: 0.8rem;
font-weight: 500;
  margin-top: 10px;
}

.testimonial-date {
  font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
  color: #999;
  margin-top: 10px;
}

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

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

  .blog-preview-section h2 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(342, 50%, 21%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

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

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

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

  .blog-card-img-wrapper {
    overflow: hidden;
    position: relative;
  }

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

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

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

  .blog-meta-item i {
    color: hsl(342, 50%, 61%);
  }

  .blog-card-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(342, 50%, 21%);
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .blog-card-title a:hover {
    color: hsl(342, 50%, 36%);
  }

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

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

  .blog-read-more:hover {
    color: hsl(342, 50%, 21%);
    gap: 12px;
  }

  .blog-read-more i {
    transition: transform 0.3s ease;
  }

  .blog-read-more:hover i {
    transform: translateX(4px);
  }

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

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

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

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

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

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

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

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

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

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

.offer-section {
  background: linear-gradient(135deg, hsl(342, 50%, 36%) 0%, hsl(342, 50%, 21%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(342, 50%, 61%);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(342, 50%, 61%);
  border-radius: 50%;
  opacity: 0.08;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

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

.offer-badge {
  display: inline-block;
  background: hsl(342, 50%, 61%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

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

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

.offer-description {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #f8f9fa;
  line-height: 1.7;
  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;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, hsl(342, 50%, 36%), hsl(342, 50%, 61%));
}

.deadline-wrapper {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-radius: 15px;
  border: 2px dashed hsl(342, 50%, 61%);
}

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

.deadline-date {
  font-family: 'Ubuntu', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: hsl(342, 50%, 36%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

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

.discount-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: hsl(342, 50%, 36%);
  color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Ubuntu', sans-serif;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.discount-number {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.discount-text {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
  font-family: 'Playfair Display', serif;
  color: #333;
  font-size: 17px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-item:hover {
  padding-left: 10px;
  background: #f8f9fa;
  margin: 0 -10px;
  padding-left: 20px;
  padding-right: 10px;
  border-radius: 8px;
}

.benefit-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, hsl(342, 50%, 36%), hsl(342, 50%, 61%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  margin-top: 2px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, hsl(342, 50%, 36%), hsl(342, 50%, 61%));
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(162, 41, 72, 0.3);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(162, 41, 72, 0.4);
  color: #fff;
}

.cta-button:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .offer-section {
    padding: 60px 0;
  }
  
  .offer-heading {
    font-size: 36px;
  }
  
  .offer-description {
    font-size: 16px;
  }
  
  .offer-card {
    padding: 35px 25px;
  }
  
  .deadline-date {
    font-size: 32px;
    flex-direction: column;
    gap: 10px;
  }
  
  .discount-badge {
    width: 80px;
    height: 80px;
    top: 20px;
    right: 20px;
  }
  
  .discount-number {
    font-size: 26px;
  }
  
  .discount-text {
    font-size: 12px;
  }
  
  .benefit-item {
    font-size: 15px;
  }
  
  .cta-button {
    font-size: 16px;
    padding: 15px 40px;
  }
}

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

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

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

.disclaimer-icon-wrapper {
  text-align: center;
  margin-bottom: 25px;
}

.disclaimer-icon {
  font-size: 48px;
  color: hsl(342, 50%, 36%);
  opacity: 0.9;
}

.disclaimer-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: hsl(342, 50%, 21%);
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

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

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

.disclaimer-highlight {
  background: #fff3f7;
  border-left: 4px solid hsl(342, 50%, 61%);
  padding: 20px 25px;
  margin: 25px 0;
  border-radius: 6px;
}

.disclaimer-highlight p {
  margin: 0;
  font-weight: 500;
  color: #222222;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 50px 0;
  }
  
  .disclaimer-container {
    padding: 35px 25px;
    margin: 0 15px;
  }
  
  .disclaimer-title {
    font-size: 1.8rem;
  }
  
  .disclaimer-content {
    font-size: 1rem;
    text-align: left;
  }
  
  .disclaimer-icon {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .disclaimer-title {
    font-size: 1.6rem;
  }
  
  .disclaimer-container {
    padding: 30px 20px;
  }
}

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

  :root {
    --primary-color: hsl(342, 50%, 36%);
    --secondary-color: hsl(342, 50%, 21%);
    --accent-color: hsl(342, 50%, 61%);
  }

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

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

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

  .policy-content h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    position: relative;
    padding-left: 20px;
  }

  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background-color: var(--accent-color);
    border-radius: 3px;
  }

  .policy-content h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.35rem;
  }

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

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

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

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

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

  .info-box {
    background: linear-gradient(135deg, rgba(175, 47, 77, 0.05) 0%, rgba(175, 47, 77, 0.1) 100%);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }

  .info-box strong {
    color: var(--primary-color);
    font-family: 'Ubuntu', sans-serif;
  }

  .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: 'Ubuntu', sans-serif;
    font-size: 0.95rem;
  }

  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    margin: 3rem 0;
    border: none;
  }

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

  :root {
    --primary-color: hsl(342, 50%, 36%);
    --secondary-color: hsl(342, 50%, 21%);
    --accent-color: hsl(342, 50%, 61%);
  }

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

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

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

  .policy-content h2 {
    font-size: 1.85rem;
    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(--secondary-color);
    margin-top: 1.5rem;
  }

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

  .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-bottom: 1.5rem;
    padding-left: 2rem;
  }

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

  .policy-content strong {
    color: var(--primary-color);
    font-weight: 600;
  }

  .highlight-box {
    background: linear-gradient(135deg, rgba(178, 51, 89, 0.05) 0%, rgba(178, 51, 89, 0.1) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .contact-info {
    background: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  .contact-info h3 {
    color: white;
    margin-top: 0;
    font-size: 1.6rem;
  }

  .contact-info a {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
  }

  .contact-info a:hover {
    color: white;
    border-bottom-color: white;
  }

  .effective-date {
    background: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }

  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    margin: 2.5rem 0;
    border: none;
  }

.thank-you-section {
    font-family: 'Playfair Display', serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(342, 50%, 96%) 0%, hsl(342, 50%, 98%) 100%);
    padding: 2rem 1rem;
  }

  .thank-you-container {
    max-width: 600px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    text-align: center;
  }

  .success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, hsl(342, 50%, 36%) 0%, hsl(342, 50%, 21%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
  }

  .success-icon svg {
    width: 50px;
    height: 50px;
  }

  @keyframes scaleIn {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  .thank-you-heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(342, 50%, 21%);
    margin-bottom: 1.5rem;
  }

  .thank-you-message {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
  }

  .thank-you-message strong {
    color: hsl(342, 50%, 36%);
    font-weight: 600;
  }

  .info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .info-card {
    background: hsl(342, 50%, 98%);
    border-left: 4px solid hsl(342, 50%, 61%);
    padding: 1.25rem;
    border-radius: 8px;
    text-align: left;
  }

  .info-card-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: hsl(342, 50%, 21%);
    margin-bottom: 0.5rem;
  }

  .info-card-text {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
  }

  .btn-home {
    background: linear-gradient(135deg, hsl(342, 50%, 36%) 0%, hsl(342, 50%, 21%) 100%);
    color: white;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.875rem 2.5rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px hsla(342, 50%, 36%, 0.3);
  }

  .btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(342, 50%, 36%, 0.4);
    color: white;
  }

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

  @media (min-width: 576px) {
    .thank-you-container {
      padding: 4rem 3rem;
    }

    .info-cards {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 575px) {
    .thank-you-heading {
      font-size: 2rem;
    }

    .success-icon {
      width: 80px;
      height: 80px;
    }

    .success-icon svg {
      width: 40px;
      height: 40px;
    }
  }