:root {
            --primary-color: hsl(308, 45%, 46%);
            --secondary-color: hsl(308, 45%, 31%);
            --accent-color: hsl(308, 45%, 71%);
        }
        
        body {
            font-family: 'Merriweather', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Lato', sans-serif;
            font-weight: 700;
            color: #222;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Lato', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Lato', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(169, 68, 140, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(169, 68, 140, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

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

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

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

  .about-section h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: hsl(308, 45%, 46%);
  }

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

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

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

  .about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }

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

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

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

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

  .value-card h3 {
    margin-top: 0;
    font-size: 1.4rem;
  }

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

  .stats-row {
    background: hsl(308, 45%, 31%);
    color: #ffffff;
    padding: 50px 0;
    margin: 60px 0;
    border-radius: 12px;
  }

  .stats-row h3 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .stats-row p {
    color: hsl(308, 45%, 90%);
    font-size: 1.1rem;
    margin-bottom: 0;
  }

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

  .mission-box h2 {
    color: #ffffff;
    margin-top: 0;
  }

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

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

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

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

    .about-intro {
      padding: 40px 0;
      margin-bottom: 40px;
    }

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

    .stats-row {
      padding: 35px 0;
      margin: 40px 0;
    }

    .mission-box {
      padding: 30px 20px;
    }
  }

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

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

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

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

  .filter-btn {
    padding: 10px 25px;
    border: 2px solid hsl(308, 45%, 46%);
    background: #fff;
    color: hsl(308, 45%, 46%);
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(308, 45%, 46%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(168, 70, 138, 0.3);
  }

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

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

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

  .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 {
    display: inline-block;
    padding: 5px 15px;
    background: hsl(308, 45%, 71%);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

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

  .view-details {
    display: inline-flex;
    align-items: center;
    color: hsl(308, 45%, 46%);
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .view-details:hover {
    color: hsl(308, 45%, 31%);
    gap: 8px;
  }

  .view-details::after {
    content: '→';
    margin-left: 5px;
    transition: margin-left 0.3s ease;
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(308, 45%, 46%) 0%, hsl(308, 45%, 31%) 100%);
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
  }

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

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

  .modal-body {
    padding: 30px;
  }

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

  .project-detail-section {
    margin-bottom: 25px;
  }

  .project-detail-section h5 {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: hsl(308, 45%, 31%);
    margin-bottom: 12px;
  }

  .project-detail-section p,
  .project-detail-section ul {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
  }

  .project-detail-section ul {
    padding-left: 20px;
  }

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

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

  .spec-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid hsl(308, 45%, 46%);
  }

  .spec-label {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 5px;
  }

  .spec-value {
    color: #666;
    font-size: 0.95rem;
  }

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

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

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

    .filter-buttons {
      gap: 10px;
    }

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

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

    .project-specs {
      grid-template-columns: 1fr;
    }
  }

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

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

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

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

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

  .advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(308, 45%, 46%) 0%, hsl(308, 45%, 31%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
  }

  .advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(308, 45%, 31%) 0%, hsl(308, 45%, 46%) 100%);
  }

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

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

  .advantage-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
  }

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

    #advantages h2 {
      font-size: 2rem;
    }

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

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

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

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

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

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(308, 45%, 46%) 0%, hsl(308, 45%, 71%) 100%);
  }

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

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

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

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

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

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

  #statistics .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, hsl(308, 45%, 46%) 0%, hsl(308, 45%, 71%) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  #statistics .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: hsl(308, 45%, 71%);
  }

  #statistics .stat-card:hover::before {
    transform: scaleX(1);
  }

  #statistics .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, hsl(308, 45%, 46%) 0%, hsl(308, 45%, 31%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #ffffff;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(168, 67, 139, 0.3);
  }

  #statistics .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(168, 67, 139, 0.4);
  }

  #statistics .stat-number {
    font-family: 'Lato', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: hsl(308, 45%, 46%);
    margin-bottom: 12px;
    line-height: 1;
  }

  #statistics .stat-label {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: #444;
    font-weight: 600;
    margin-bottom: 8px;
  }

  #statistics .stat-context {
    font-family: 'Merriweather', serif;
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
  }

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

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

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

    #statistics .stats-grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    #statistics .stat-card {
      padding: 35px 25px;
    }

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

    #statistics .stat-icon {
      width: 70px;
      height: 70px;
      font-size: 2rem;
    }
  }

  @media (min-width: 1400px) {
    #statistics .stats-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

footer {
    background: linear-gradient(135deg, hsl(308, 45%, 31%) 0%, hsl(308, 45%, 46%) 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    font-family: 'Merriweather', serif;
  }

  footer h5 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #ffffff;
  }

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

  footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
  }

  footer a:hover {
    color: hsl(308, 45%, 71%);
    padding-left: 5px;
  }

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

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

  footer .contact-info i {
    margin-right: 10px;
    color: hsl(308, 45%, 71%);
  }

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

  #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(308, 45%, 46%);
    font-family: 'Merriweather', serif;
  }

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

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

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

  #cookieNotice .cookie-category {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #333;
  }

  #cookieNotice .cookie-category strong {
    color: #222;
    font-weight: 600;
  }

  #cookieNotice .cookie-category.required {
    color: #666;
  }

  #cookieNotice .btn-accept-all {
    background: #28a745;
    border: none;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
    font-family: 'Lato', sans-serif;
  }

  #cookieNotice .btn-accept-all:hover {
    background: #218838;
    transform: translateY(-2px);
  }

  #cookieNotice .btn-reject {
    background: #6c757d;
    border: none;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
    font-family: 'Lato', sans-serif;
  }

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

  #cookieNotice .btn-manage {
    background: transparent;
    border: 2px solid hsl(308, 45%, 46%);
    color: hsl(308, 45%, 46%);
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
  }

  #cookieNotice .btn-manage:hover {
    background: hsl(308, 45%, 46%);
    color: #ffffff;
    transform: translateY(-2px);
  }

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

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

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

    #cookieNotice {
      padding: 20px 0;
    }

    #cookieNotice .btn-accept-all,
    #cookieNotice .btn-reject,
    #cookieNotice .btn-manage {
      width: 100%;
      margin-bottom: 10px;
    }
  }

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Merriweather, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(308, 45%, 46%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Lato, sans-serif; color: hsl(308, 45%, 31%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(308, 45%, 46%); }
.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(308, 45%, 31%); font-family: Lato, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(308, 45%, 31%); font-family: Lato, sans-serif; }
.blog-article a { color: hsl(308, 45%, 46%); }
.blog-article a:hover { color: hsl(308, 45%, 71%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(308, 45%, 46%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

.blog-page { padding: 4rem 0; }
.blog-page h1 { margin-bottom: 3rem; text-align: center; }
.blog-card { margin-bottom: 2rem; transition: transform 0.3s; overflow: hidden; }
.blog-card:hover { transform: translateY(-5px); }
.blog-card .card-img-top { height: 200px; object-fit: cover; }
.blog-meta { font-size: 0.9rem; color: #888; margin-bottom: 1rem; }

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

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

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

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

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

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

  #contact .form-control:focus,
  #contact .form-select:focus {
    border-color: hsl(308, 45%, 46%);
    box-shadow: 0 0 0 0.2rem rgba(179, 62, 142, 0.15);
    outline: none;
  }

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

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

  #contact .btn-submit:hover {
    background: hsl(308, 45%, 31%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 62, 142, 0.3);
  }

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

  #contact .contact-info-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
  }

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

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

  #contact .contact-icon {
    width: 45px;
    height: 45px;
    background: hsl(308, 45%, 71%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
  }

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

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

  #contact .contact-label {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    color: hsl(308, 45%, 31%);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
  }

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

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

  #contact .contact-value a:hover {
    color: hsl(308, 45%, 46%);
  }

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

  #contact .hours-list li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
  }

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

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

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

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

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

    #contact .contact-form-wrapper {
      padding: 30px 20px;
      margin-bottom: 30px;
    }

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

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

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

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

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

    #contact .btn-submit {
      padding: 12px 30px;
      font-size: 1rem;
    }
  }

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

  :root {
    --primary-color: hsl(308, 45%, 46%);
    --secondary-color: hsl(308, 45%, 31%);
    --accent-color: hsl(308, 45%, 71%);
  }

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

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

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

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

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

  .policy-content {
    max-width: 900px;
    background: #fff;
  }

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

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

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

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

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

  .intro-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(308, 45%, 85%) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
  }

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

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

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

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

  .cookie-type-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
  }

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

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

  strong {
    color: var(--secondary-color);
  }

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

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

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

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

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

.accordion-item:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.accordion-button {
  font-family: 'Lato', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  background: #ffffff;
  padding: 1.5rem 1.75rem;
  border: none;
  position: relative;
}

.accordion-button:not(.collapsed) {
  background: hsl(308, 45%, 46%);
  color: #ffffff;
  box-shadow: none;
}

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

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23222'%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");
  width: 1.5rem;
  height: 1.5rem;
}

.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");
}

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

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

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

.accordion-body strong {
  color: hsl(308, 45%, 31%);
  font-weight: 600;
}

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

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

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

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(308, 45%, 46%) 0%, hsl(308, 45%, 31%) 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-heading {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-input-wrapper {
  flex: 1;
  min-width: 250px;
}

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

.newsletter-email-input:focus {
  outline: none;
  border-color: #ffffff;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.newsletter-submit-btn {
  padding: 16px 40px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(308, 45%, 46%);
  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit-btn:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

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

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

  .newsletter-input-wrapper {
    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: 480px) {
  .newsletter-heading {
    font-size: 1.75rem;
  }

  .newsletter-email-input,
  .newsletter-submit-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }

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

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

  .hero-section h1 {
    font-family: 'Lato', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
    line-break: auto;
  }

  .hero-section h2 {
    font-family: 'Lato', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: hsl(308, 45%, 46%);
    margin-bottom: 2rem;
  }

  .hero-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
    text-align: justify;
  }

  .hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

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

  .advantages-list li {
    padding: 0.8rem 0;
    color: #333;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
  }

  .advantages-list li i {
    color: hsl(308, 45%, 46%);
    margin-right: 12px;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 3px;
  }

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

  .btn-primary-custom {
    background-color: hsl(308, 45%, 46%);
    border: 2px solid hsl(308, 45%, 46%);
    color: #fff;
    padding: 14px 32px;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .btn-primary-custom:hover {
    background-color: hsl(308, 45%, 31%);
    border-color: hsl(308, 45%, 31%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  }

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

  .btn-secondary-custom:hover {
    background-color: hsl(308, 45%, 46%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  }

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

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

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

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

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

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

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

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

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    gap: 25px;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(178, 66, 138, 0.2);
    border-color: hsl(308, 45%, 46%);
  }

  .service-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(308, 45%, 46%) 0%, hsl(308, 45%, 31%) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    transition: all 0.4s ease;
  }

  .service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, hsl(308, 45%, 31%) 0%, hsl(308, 45%, 46%) 100%);
  }

  .service-content {
    flex: 1;
  }

  .service-content h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.8rem;
  }

  .service-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  .service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid #e9ecef;
  }

  .service-price {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(308, 45%, 46%);
  }

  .service-terms {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
  }

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

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

    .service-card {
      flex-direction: column;
      text-align: center;
      padding: 25px;
    }

    .service-icon {
      margin: 0 auto;
    }

    .service-footer {
      flex-direction: column;
      text-align: center;
    }
  }

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

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

  .blog-preview-section .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    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.12);
  }

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

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

  .blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
  }

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

  .blog-meta-icon {
    width: 16px;
    height: 16px;
    fill: hsl(308, 45%, 46%);
  }

  .blog-card-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    line-height: 1.4;
  }

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

  .blog-card-title a:hover {
    color: hsl(308, 45%, 46%);
  }

  .blog-card-excerpt {
    font-size: 1rem;
    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;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    color: hsl(308, 45%, 46%);
    text-decoration: none;
    transition: gap 0.3s ease;
  }

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

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

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

  .btn-view-all:hover {
    background: hsl(308, 45%, 31%);
    color: #ffffff;
    transform: translateY(-2px);
  }

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

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

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

    .blog-card-body {
      padding: 1.5rem;
    }

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

    .blog-meta {
      gap: 1rem;
    }
  }

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

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

.credential-card {
  background: #fff;
  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: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

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

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

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

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

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

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, hsl(308, 45%, 46%) 0%, hsl(308, 45%, 31%) 100%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

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

.offer-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 3px solid hsl(308, 45%, 71%);
}

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

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

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

.calendar-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

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

.benefit-item {
    font-family: 'Merriweather', serif;
    font-size: 17px;
    color: #333;
    padding: 18px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, hsl(308, 45%, 71%) 0%, hsl(308, 45%, 46%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 18px;
}

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

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

.discount-text {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, hsl(308, 45%, 46%) 0%, hsl(308, 45%, 31%) 100%);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    color: #fff;
}

.offer-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.offer-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .offer-title {
        font-size: 38px;
    }
    
    .offer-card {
        padding: 35px;
    }
    
    .deadline-date {
        font-size: 34px;
    }
    
    .discount-percentage {
        font-size: 46px;
    }
    
    .offer-image-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .offer-section {
        padding: 60px 0;
    }
    
    .offer-title {
        font-size: 32px;
    }
    
    .offer-card {
        padding: 25px;
    }
    
    .deadline-date {
        font-size: 28px;
        flex-direction: column;
        gap: 10px;
    }
    
    .discount-percentage {
        font-size: 40px;
    }
    
    .offer-cta-btn {
        width: 100%;
        text-align: center;
    }
}

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

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

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

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  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(308, 45%, 46%);
}

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

.testimonial-card.style-2 {
  border-left: none;
  border-top: 4px solid hsl(308, 45%, 71%);
  background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
}

.testimonial-card.style-3 {
  border-left: none;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.rating-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 3px;
}

.rating-stars i {
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.testimonial-text {
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(308, 45%, 46%), hsl(308, 45%, 71%));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

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

.author-name {
  color: #222;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.author-location {
  color: #666;
  font-size: 0.9rem;
}

.testimonial-badge {
  display: inline-block;
  background: hsl(308, 45%, 46%);
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.testimonial-highlight {
  background: #fff9e6;
  border-left: 3px solid #ffc107;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 4px;
}

.testimonial-highlight p {
  margin: 0;
  color: #333;
  font-size: 0.95rem;
}

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

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

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

.disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(308, 45%, 46%);
}

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

.disclaimer-icon i {
  font-size: 3.5rem;
  color: hsl(308, 45%, 46%);
}

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

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .disclaimer-content {
    padding: 35px 25px;
  }
  
  .disclaimer-icon i {
    font-size: 3rem;
  }
  
  .disclaimer-text {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .disclaimer-section h2 {
    font-size: 1.75rem;
  }
  
  .disclaimer-content {
    padding: 30px 20px;
  }
  
  .disclaimer-icon i {
    font-size: 2.5rem;
  }
}

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

  :root {
    --primary-color: hsl(308, 45%, 46%);
    --secondary-color: hsl(308, 45%, 31%);
    --accent-color: hsl(308, 45%, 71%);
  }

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

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

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

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

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

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

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

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

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

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

  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(308, 45%, 85%) 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 strong {
    color: var(--secondary-color);
    font-family: 'Lato', sans-serif;
  }

  .last-updated {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
  }

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

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

  :root {
    --primary-color: hsl(308, 45%, 46%);
    --secondary-color: hsl(308, 45%, 31%);
    --accent-color: hsl(308, 45%, 71%);
  }

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

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

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

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

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

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

  .effective-date {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
  }

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

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

  .section-highlight {
    background-color: rgba(308, 45%, 71%, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
  }

  .important-notice {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
  }

:root {
    --primary-color: hsl(308, 45%, 46%);
    --secondary-color: hsl(308, 45%, 31%);
    --accent-color: hsl(308, 45%, 71%);
  }

  .thankyou-section {
    font-family: 'Merriweather', serif;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
  }

  .thankyou-section h1,
  .thankyou-section h2,
  .thankyou-section h3 {
    font-family: 'Lato', sans-serif;
  }

  .thankyou-container {
    max-width: 600px;
    text-align: center;
  }

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

  .success-icon svg {
    width: 60px;
    height: 60px;
    stroke: white;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: checkmark 0.6s ease-in-out 0.3s forwards;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }

  @keyframes scaleIn {
    from {
      transform: scale(0);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes checkmark {
    to {
      stroke-dashoffset: 0;
    }
  }

  .thankyou-heading {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }

  .thankyou-message {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
  }

  .info-card {
    background: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

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

  .info-card-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .info-card-title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }

  .info-card-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
  }

  .btn-home {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 0.875rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Lato', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

    .thankyou-message {
      font-size: 1rem;
    }

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