:root {
            --primary-color: hsl(153, 45%, 47%);
            --secondary-color: hsl(153, 45%, 32%);
            --accent-color: hsl(153, 45%, 72%);
        }
        
        body {
            font-family: 'Playfair Display', serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Ubuntu', sans-serif;
            font-weight: 700;
        }
        
        .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: 'Ubuntu', sans-serif;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--secondary-color);
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Ubuntu', sans-serif;
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(82, 169, 138, 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(82, 169, 138, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

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

  .about-section h3 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(153, 45%, 47%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
  }

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

  .about-intro {
    background: linear-gradient(135deg, hsl(153, 45%, 47%) 0%, hsl(153, 45%, 32%) 100%);
    padding: 60px 0;
    margin-bottom: 60px;
  }

  .about-intro h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 0;
  }

  .about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    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(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
  }

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

  .value-card:hover {
    background: hsl(153, 45%, 72%);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .value-card h4 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(153, 45%, 32%);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
  }

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

  .stats-row {
    background: hsl(153, 45%, 72%);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
  }

  .stat-item {
    text-align: center;
    padding: 20px;
  }

  .stat-number {
    font-family: 'Ubuntu', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: hsl(153, 45%, 32%);
    display: block;
    margin-bottom: 10px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

.filter-btn:hover,
.filter-btn.active {
    background: hsl(153, 45%, 47%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 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: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    cursor: pointer;
}

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

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

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

.portfolio-description {
    font-size: 0.95rem;
    color: #f0f0f0;
    line-height: 1.5;
}

.view-details-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: hsl(153, 45%, 47%);
    color: #fff;
    border-radius: 25px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.view-details-btn:hover {
    background: hsl(153, 45%, 32%);
    color: #fff;
}

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

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

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

.modal-body {
    padding: 30px;
    font-family: 'Playfair Display', serif;
    color: #333;
}

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

.modal-body h5 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(153, 45%, 32%);
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.modal-body ul {
    list-style: none;
    padding-left: 0;
}

.modal-body ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #444;
}

.modal-body ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(153, 45%, 47%);
    font-weight: bold;
    font-size: 1.2rem;
}

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

@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-section h2 {
        font-size: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}

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

.advantages-section h2 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(153, 45%, 32%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

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

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

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

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(68, 138, 109, 0.2);
    border-color: hsl(153, 45%, 72%);
}

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

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(153, 45%, 32%), hsl(153, 45%, 47%));
}

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

.advantage-card h3 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(153, 45%, 32%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.advantage-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 0;
}

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

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

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

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

.statistics-section .section-subtitle {
    font-family: 'Playfair Display', serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: #ffffff;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(153, 45%, 72%) 0%, hsl(153, 45%, 47%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(153, 45%, 47%) 0%, hsl(153, 45%, 32%) 100%);
}

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

.stat-number {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(153, 45%, 32%);
    margin-bottom: 10px;
    line-height: 1.2;
}

.stat-label {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    line-height: 1.4;
}

.stat-context {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: #777;
    margin-top: 8px;
    font-style: italic;
}

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

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

footer {
  background: linear-gradient(135deg, hsl(153, 45%, 32%) 0%, hsl(153, 45%, 47%) 100%);
  color: #ffffff;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  font-family: 'Playfair Display', serif;
}

footer h5 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

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

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

footer a:hover {
  color: hsl(153, 45%, 72%);
  transform: translateX(5px);
}

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

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

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

.footer-contact-item i {
  margin-right: 0.8rem;
  color: hsl(153, 45%, 72%);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-policy-links {
  margin-top: 1rem;
}

.footer-policy-links a {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 1rem;
  font-size: 0.85rem;
}

.footer-policy-links a:hover {
  color: hsl(153, 45%, 72%);
  transform: none;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 2rem 0;
  border-top: 3px solid hsl(153, 45%, 47%);
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-notice-content h4 {
  font-family: 'Ubuntu', sans-serif;
  color: #222;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cookie-notice-content p {
  color: #555;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

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

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

.cookie-category-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category-desc {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  font-family: 'Playfair Display', serif;
}

.cookie-badge {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
}

.badge-required {
  background: hsl(153, 45%, 47%);
  color: #ffffff;
}

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

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

.btn-accept-all {
  background: hsl(153, 45%, 47%);
  color: #ffffff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 150px;
}

.btn-accept-all:hover {
  background: hsl(153, 45%, 32%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-reject-optional {
  background: #6c757d;
  color: #ffffff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 150px;
}

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

.btn-manage {
  background: transparent;
  color: hsl(153, 45%, 47%);
  border: 2px solid hsl(153, 45%, 47%);
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 150px;
  text-align: center;
  display: inline-block;
}

.btn-manage:hover {
  background: hsl(153, 45%, 47%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

  #cookieNotice {
    padding: 1.5rem 0;
  }

  .cookie-notice-content h4 {
    font-size: 1.2rem;
  }

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

  .btn-accept-all,
  .btn-reject-optional,
  .btn-manage {
    width: 100%;
    min-width: 100%;
  }

  .footer-policy-links a {
    display: block;
    margin: 0.5rem 0;
  }
}

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

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

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

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

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

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-info-wrapper {
    background: linear-gradient(135deg, hsl(153, 45%, 47%) 0%, hsl(153, 45%, 32%) 100%);
    border-radius: 15px;
    padding: 40px;
    color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-form-wrapper h3 {
    color: hsl(153, 45%, 32%);
}

.contact-info-wrapper h3 {
    color: #ffffff;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group label .required {
    color: hsl(153, 45%, 47%);
    margin-left: 3px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-control:focus {
    outline: none;
    border-color: hsl(153, 45%, 47%);
    box-shadow: 0 0 0 3px hsla(153, 45%, 47%, 0.1);
}

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

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

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

.submit-btn:hover {
    background: hsl(153, 45%, 32%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

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

.contact-info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

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

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

.contact-info-content p,
.contact-info-content a {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-info-content a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-info-content a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

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

.working-hours-list li {
    padding: 0.4rem 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
}

.working-hours-list li strong {
    color: #ffffff;
    margin-right: 1rem;
}

.map-wrapper {
    margin-top: 4rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-placeholder {
    background: linear-gradient(135deg, hsl(153, 45%, 72%) 0%, hsl(153, 45%, 47%) 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.2rem;
}

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

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px 20px;
    }
    
    .contact-section h2 {
        font-size: 1.75rem;
    }
    
    .submit-btn {
        padding: 12px 30px;
    }
}

@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(153, 45%, 47%);
    --secondary-color: hsl(153, 45%, 32%);
    --accent-color: hsl(153, 45%, 72%);
  }

  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;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
  }

  .policy-content h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }

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

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

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

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

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

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

  .policy-intro {
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(255,255,255,0.5) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
  }

  .policy-section {
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .policy-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  }

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

  .contact-box h3 {
    color: white;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
  }

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

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

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

  .cookie-type {
    background: white;
    border: 2px solid var(--accent-color);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
  }

  .cookie-type h4 {
    color: var(--primary-color);
    margin-top: 0;
    font-size: 1.2rem;
  }

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

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

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

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

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

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

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

.accordion-button {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  border: none;
  transition: all 0.3s ease;
}

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

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

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

.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 {
  font-family: 'Playfair Display', serif;
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
  padding: 1.5rem;
  background-color: #fafafa;
}

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

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

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

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

.faq-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
  color: hsl(153, 45%, 47%);
}

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

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

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(153, 45%, 47%) 0%, hsl(153, 45%, 32%) 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%;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

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

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

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

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

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

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

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

.newsletter-email-input::placeholder {
    color: #666;
    font-family: 'Playfair Display', serif;
}

.newsletter-submit-btn {
    padding: 16px 40px;
    background: #ffffff;
    color: hsl(153, 45%, 32%);
    border: 2px solid #ffffff;
    border-radius: 8px;
    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: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.newsletter-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-family: 'Playfair Display', 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-input-group {
        flex-direction: column;
        gap: 15px;
    }

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

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

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

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

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(153, 45%, 72%, 0.1);
  border-radius: 50%;
  z-index: 0;
}

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

.hero-section h1 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(153, 45%, 32%);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: hsl(153, 45%, 47%);
  margin-bottom: 2rem;
}

.hero-description {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: justify;
}

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

.hero-advantages li {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #222;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.hero-advantages li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background: hsl(153, 45%, 47%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-advantages li i {
  position: absolute;
  left: 5px;
  top: 10px;
  color: #fff;
  font-size: 0.7rem;
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

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

.hero-image-wrapper img:hover {
  transform: scale(1.02);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 15px 40px;
  background: hsl(153, 45%, 47%);
  color: #fff;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(72, 150, 120, 0.3);
}

.btn-hero-primary:hover {
  background: hsl(153, 45%, 32%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(72, 150, 120, 0.4);
  color: #fff;
}

.btn-hero-secondary {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 15px 40px;
  background: transparent;
  color: hsl(153, 45%, 32%);
  border: 2px solid hsl(153, 45%, 47%);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: hsl(153, 45%, 47%);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section h2 {
    font-size: 1.3rem;
  }
  
  .hero-image-wrapper {
    margin-top: 3rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 50px 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section h2 {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }
}

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

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

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

.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(153, 45%, 47%);
}

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

.testimonial-card.style-1 {
  border-left-color: hsl(153, 45%, 47%);
}

.testimonial-card.style-2 {
  border-left-color: hsl(153, 45%, 32%);
  background: linear-gradient(to bottom right, #ffffff 0%, #f8f9fa 100%);
}

.testimonial-card.style-3 {
  border-left-color: hsl(153, 45%, 72%);
}

.testimonial-card.style-4 {
  border-left-color: hsl(153, 45%, 47%);
  background: #fafbfc;
}

.testimonial-card.style-5 {
  border-left-color: hsl(153, 45%, 32%);
}

.rating {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.rating .star {
  color: #ffc107;
}

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

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

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(153, 45%, 47%) 0%, hsl(153, 45%, 32%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  flex-shrink: 0;
}

.author-info h5 {
  font-family: 'Ubuntu', sans-serif;
  color: #222;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.author-info p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.testimonial-highlight {
  background: hsl(153, 45%, 95%);
  border-left: 3px solid hsl(153, 45%, 47%);
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  font-style: italic;
  color: #444;
}

.course-mention {
  display: inline-block;
  background: hsl(153, 45%, 92%);
  color: hsl(153, 45%, 25%);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0.2rem 0;
}

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

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

  .testimonial-card {
    padding: 1.5rem;
  }

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

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

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

.blog-preview .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: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #e9ecef;
}

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

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

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

.blog-meta {
  display: flex;
  gap: 1.25rem;
  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-item i {
  color: hsl(153, 45%, 47%);
  font-size: 0.95rem;
}

.blog-card h3 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 1rem;
  line-height: 1.4;
}

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

.blog-card h3 a:hover {
  color: hsl(153, 45%, 47%);
}

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

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(153, 45%, 47%);
  text-decoration: none;
  font-weight: 600;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  color: hsl(153, 45%, 32%);
  gap: 0.75rem;
}

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

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

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

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

.btn-view-all:hover {
  background: hsl(153, 45%, 32%);
  border-color: hsl(153, 45%, 32%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 100, 0.3);
}

@media (max-width: 768px) {
  .blog-preview {
    padding: 60px 0;
  }
  
  .blog-preview h2 {
    font-size: 2rem;
  }
  
  .blog-card {
    margin-bottom: 2rem;
  }
  
  .blog-card-image {
    height: 200px;
  }
  
  .blog-card h3 {
    font-size: 1.25rem;
  }
}

.credentials-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

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

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

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

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

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

@media (max-width: 768px) {
  .credentials-section {
    padding: 40px 0;
  }
  
  .credentials-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .credential-card {
    padding: 20px 10px;
  }
  
  .credential-icon {
    font-size: 2rem;
  }
}

.promo-offer-section {
  font-family: 'Playfair Display', serif;
  padding: 80px 0;
  background: linear-gradient(135deg, hsl(153, 45%, 47%) 0%, hsl(153, 45%, 32%) 100%);
  position: relative;
  overflow: hidden;
}

.promo-offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.promo-offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.promo-offer-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.promo-offer-section .offer-badge {
  display: inline-block;
  background: #fff;
  color: hsl(153, 45%, 32%);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-content-box {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  margin-top: 2rem;
}

.offer-description {
  font-size: 1.15rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.deadline-block {
  background: linear-gradient(135deg, hsl(153, 45%, 72%) 0%, hsl(153, 45%, 47%) 100%);
  padding: 30px;
  border-radius: 15px;
  margin: 2.5rem 0;
  text-align: center;
}

.deadline-label {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 500;
}

.deadline-date {
  font-family: 'Ubuntu', sans-serif;
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  font-size: 2.5rem;
}

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

.offer-benefits li {
  padding: 15px 0;
  font-size: 1.1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #e9ecef;
}

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

.offer-benefits i {
  color: hsl(153, 45%, 47%);
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

.offer-cta-btn:hover {
  background: hsl(153, 45%, 32%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.discount-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: #ff6b6b;
  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;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
  transform: rotate(15deg);
}

.discount-badge .percentage {
  font-size: 2rem;
  line-height: 1;
}

.discount-badge .text {
  font-size: 0.75rem;
  text-transform: uppercase;
}

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

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

  .offer-content-box {
    padding: 30px 20px;
  }

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

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

  .offer-benefits li {
    font-size: 1rem;
  }

  .discount-badge {
    width: 80px;
    height: 80px;
    right: 20px;
  }

  .discount-badge .percentage {
    font-size: 1.5rem;
  }

  .offer-cta-btn {
    padding: 15px 35px;
    font-size: 1rem;
  }
}

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

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

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

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(63, 132, 109, 0.15);
    border-color: hsl(153, 45%, 47%);
  }

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

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

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

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

  .service-description {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  .service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    margin-top: auto;
  }

  .service-price {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(153, 45%, 32%);
  }

  .service-duration {
    font-size: 0.9rem;
    color: #666;
    background: hsl(153, 45%, 95%);
    padding: 0.4rem 1rem;
    border-radius: 20px;
  }

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

  .filter-btn {
    font-family: 'Ubuntu', sans-serif;
    padding: 0.6rem 1.5rem;
    border: 2px solid hsl(153, 45%, 47%);
    background: transparent;
    color: hsl(153, 45%, 32%);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(153, 45%, 47%);
    color: #ffffff;
  }

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

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

    .service-card {
      padding: 1.5rem;
    }

    .service-meta {
      flex-direction: column;
      gap: 0.8rem;
      align-items: flex-start;
    }
  }

.disclaimer-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 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);
  border-left: 5px solid hsl(153, 45%, 47%);
}

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

.disclaimer-icon {
  font-size: 48px;
  color: hsl(153, 45%, 47%);
}

.disclaimer-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}

.disclaimer-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  text-align: justify;
  margin-bottom: 0;
}

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

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

@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(153, 45%, 47%);
    --secondary-color: hsl(153, 45%, 32%);
    --accent-color: hsl(153, 45%, 72%);
  }

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

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

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

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

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

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

  .policy-content p {
    margin-bottom: 1.2rem;
    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(--secondary-color);
    border-bottom-color: var(--accent-color);
  }

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

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

  .policy-intro {
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(255,255,255,0.3) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    border-left: 5px solid var(--primary-color);
  }

  .contact-box {
    background-color: #f8f9fa;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
  }

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

  .contact-item {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
  }

  .contact-item strong {
    color: var(--secondary-color);
    min-width: 100px;
    font-family: 'Ubuntu', sans-serif;
  }

  .highlight-box {
    background-color: rgba(78, 168, 129, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.2rem;
    margin: 1.5rem 0;
    border-radius: 5px;
  }

  .last-updated {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
  }

@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(153, 45%, 47%);
    --secondary-color: hsl(153, 45%, 32%);
    --accent-color: hsl(153, 45%, 72%);
  }

  .policy-content {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    line-height: 1.8;
  }

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

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

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

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

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

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

  .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(--secondary-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.8rem;
    line-height: 1.7;
  }

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

  .contact-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .contact-box h3 {
    color: white !important;
    margin-bottom: 1rem;
  }

  .contact-box p {
    margin-bottom: 0.5rem;
    color: white;
  }

  .contact-box a {
    color: white;
    border-bottom: 2px solid white;
  }

  .contact-box a:hover {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
  }

  .highlight-box {
    background-color: rgba(153, 45%, 47%, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
  }

  .last-updated {
    font-style: italic;
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-top: 1rem;
  }