:root {
            --primary-color: hsl(116, 33%, 33%);
            --secondary-color: hsl(116, 33%, 18%);
            --accent-color: hsl(116, 33%, 58%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Playfair Display', serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Ubuntu', sans-serif;
        }
        
        .navbar {
            background-color: #ffffff;
            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.5rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--accent-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(72, 99, 72, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(116, 33%%, 33%%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.about-section {
  font-family: 'Playfair Display', serif;
  color: #333;
  background-color: #fff;
}

.about-section h1,
.about-section h2,
.about-section h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(116, 33%, 33%);
}

.about-hero {
  background: linear-gradient(135deg, hsl(116, 33%, 33%) 0%, hsl(116, 33%, 18%) 100%);
  padding: 80px 0 60px;
  color: #fff;
  text-align: center;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.about-hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}

.about-content {
  padding: 80px 0;
}

.story-block {
  margin-bottom: 60px;
}

.story-block h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.story-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

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

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

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

.mission-vision {
  background-color: #f8f9fa;
  padding: 60px 0;
  margin: 60px 0;
}

.mission-box,
.vision-box {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: 100%;
  border-left: 5px solid hsl(116, 33%, 58%);
}

.mission-box h3,
.vision-box h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.mission-box p,
.vision-box p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}

.values-section {
  padding: 40px 0;
}

.values-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 600;
}

.value-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  border-color: hsl(116, 33%, 58%);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.value-card h4 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(116, 33%, 33%);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.expertise-block {
  background: linear-gradient(135deg, hsl(116, 33%, 33%) 0%, hsl(116, 33%, 18%) 100%);
  padding: 60px 0;
  color: #fff;
  margin-top: 60px;
}

.expertise-block h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #fff;
  font-weight: 600;
}

.expertise-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }
  
  .about-hero p {
    font-size: 1.1rem;
  }
  
  .story-block h2,
  .values-section h2,
  .expertise-block h2 {
    font-size: 2rem;
  }
  
  .mission-box,
  .vision-box {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
}

.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;
    color: hsl(116, 33%, 18%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.portfolio-section .section-subtitle {
    color: #555;
    font-size: 1.1rem;
    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(116, 33%, 33%);
    background: transparent;
    color: hsl(116, 33%, 33%);
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: hsl(116, 33%, 33%);
    color: #fff;
}

.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 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 25px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
}

.portfolio-category {
    display: inline-block;
    padding: 5px 15px;
    background: hsl(116, 33%, 58%);
    color: #fff;
    font-size: 0.85rem;
    font-family: 'Ubuntu', sans-serif;
    border-radius: 15px;
    margin-bottom: 10px;
}

.portfolio-title {
    font-family: 'Ubuntu', sans-serif;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

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

.modal-header {
    background: hsl(116, 33%, 33%);
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 20px 30px;
}

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

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

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

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

.project-details {
    margin-top: 20px;
}

.project-details h5 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(116, 33%, 18%);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.project-details p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.project-meta {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.meta-item {
    flex: 1;
}

.meta-label {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(116, 33%, 33%);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

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

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

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

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

    .project-meta {
        flex-direction: column;
        gap: 15px;
    }

    .filter-buttons {
        gap: 10px;
    }

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

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

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

  #advantages .section-title {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(116, 33%, 18%);
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

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

  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: hsl(116, 33%, 58%);
  }

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

  #advantages .icon-wrapper {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, hsl(116, 33%, 33%), hsl(116, 33%, 58%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
  }

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

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

  #advantages .advantage-title {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: hsl(116, 33%, 18%);
    margin-bottom: 15px;
    text-align: center;
  }

  #advantages .advantage-description {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    text-align: center;
  }

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

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

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

.statistics-section {
    background: linear-gradient(135deg, hsl(116, 33%, 33%) 0%, hsl(116, 33%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><text x="10" y="50" font-size="60" fill="rgba(255,255,255,0.03)" font-family="Arial">Deutsch</text></svg>');
    opacity: 0.5;
}

.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;
    position: relative;
    z-index: 1;
}

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

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

.stat-icon {
    width: 70px;
    height: 70px;
    background: hsl(116, 33%, 58%);
    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 {
    background: #ffffff;
    transform: rotate(360deg);
}

.stat-icon i {
    font-size: 32px;
    color: hsl(116, 33%, 18%);
}

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

.stat-label {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
    font-weight: 500;
}

.stat-context {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
}

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

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

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

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

footer {
  background: linear-gradient(135deg, hsl(116, 33%, 18%) 0%, hsl(116, 33%, 33%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Playfair Display', serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
  font-size: 1.3rem;
  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(116, 33%, 58%);
  transform: translateX(5px);
}

.footer-description {
  max-width: 350px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.85);
}

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

.footer-contact-item i {
  color: hsl(116, 33%, 58%);
  margin-right: 12px;
  margin-top: 4px;
  font-size: 1.1rem;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding-left: 15px;
}

.footer-links a:before {
  content: "→";
  position: absolute;
  left: 0;
  color: hsl(116, 33%, 58%);
  transition: all 0.3s ease;
}

.footer-links a:hover:before {
  left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 50px;
  padding-top: 25px;
  text-align: center;
}

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

.business-hours {
  background: rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

.business-hours p {
  margin: 5px 0;
  font-size: 0.9rem;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 30px 0;
  border-top: 4px solid hsl(116, 33%, 33%);
  animation: slideUp 0.5s ease;
}

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

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

.cookie-content p {
  color: #555;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  line-height: 1.7;
}

.cookie-categories {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

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

.cookie-category-icon {
  width: 40px;
  height: 40px;
  background: hsl(116, 33%, 33%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.cookie-category-icon.optional {
  background: #6c757d;
}

.cookie-category-icon svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.cookie-category-content h6 {
  font-family: 'Ubuntu', sans-serif;
  color: #222;
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.cookie-category-content p {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

.cookie-badge {
  display: inline-block;
  background: hsl(116, 33%, 33%);
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-family: 'Ubuntu', sans-serif;
  margin-left: 8px;
  font-weight: 500;
}

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

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

.btn-cookie-accept {
  background: hsl(116, 33%, 33%);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-cookie-accept:hover {
  background: hsl(116, 33%, 28%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-cookie-reject {
  background: #6c757d;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

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

.btn-cookie-settings {
  background: transparent;
  color: hsl(116, 33%, 33%);
  border: 2px solid hsl(116, 33%, 33%);
  padding: 10px 28px;
  border-radius: 8px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: inline-block;
}

.btn-cookie-settings:hover {
  background: hsl(116, 33%, 33%);
  color: #ffffff;
  transform: translateY(-2px);
}

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

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

  .btn-cookie-accept,
  .btn-cookie-reject,
  .btn-cookie-settings {
    width: 100%;
    text-align: center;
  }

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

  footer {
    padding: 40px 0 20px;
  }
}

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

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

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

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(116, 33%, 33%, 0.05);
  border-radius: 50%;
  z-index: 0;
}

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

.contact-heading {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(116, 33%, 18%);
  margin-bottom: 1rem;
  text-align: center;
}

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

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

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

.contact-form-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: hsl(116, 33%, 18%);
  margin-bottom: 1.5rem;
}

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

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

.contact-form .form-control:focus {
  border-color: hsl(116, 33%, 58%);
  box-shadow: 0 0 0 0.2rem hsla(116, 33%, 58%, 0.25);
  outline: none;
}

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

.contact-form .required-mark {
  color: hsl(116, 33%, 33%);
  margin-left: 2px;
}

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

.contact-submit-btn:hover {
  background: hsl(116, 33%, 18%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, hsl(116, 33%, 33%) 0%, hsl(116, 33%, 58%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1.4rem;
}

.contact-info-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: hsl(116, 33%, 18%);
  margin-bottom: 0.8rem;
}

.contact-info-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0.3rem;
}

.contact-info-link {
  color: hsl(116, 33%, 33%);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info-link:hover {
  color: hsl(116, 33%, 58%);
  text-decoration: underline;
}

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

.contact-hours-list li {
  padding: 8px 0;
  color: #555;
  font-size: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

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

.contact-hours-day {
  font-weight: 600;
  color: #333;
  display: inline-block;
  min-width: 100px;
}

@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-heading {
    font-size: 2.2rem;
  }
  
  .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-heading {
    font-size: 1.9rem;
  }
  
  .contact-subheading {
    font-size: 1rem;
  }
  
  .contact-form-wrapper {
    padding: 25px;
  }
  
  .contact-info-card {
    padding: 25px;
  }
}

@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(116, 33%, 33%);
    --secondary-color: hsl(116, 33%, 18%);
    --accent-color: hsl(116, 33%, 58%);
  }

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

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

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

  .policy-content h2 {
    font-size: 1.85rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    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: 70%;
    background-color: var(--accent-color);
    border-radius: 3px;
  }

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

  .policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
  }

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

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

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

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

  .info-box {
    background-color: hsl(116, 33%, 95%);
    border-left: 5px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }

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

  .contact-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
  }

  .contact-section h2 {
    color: white;
    padding-left: 0;
  }

  .contact-section h2::before {
    display: none;
  }

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

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

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

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

.faq-section h2 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(116, 33%, 18%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.faq-section .section-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

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

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

.faq-accordion .accordion-button {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(116, 33%, 18%);
    background-color: #ffffff;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

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

.faq-highlight {
    color: hsl(116, 33%, 33%);
    font-weight: 600;
}

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

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

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

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(116, 33%, 33%) 0%, hsl(116, 33%, 18%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><text x="10" y="50" font-size="40" fill="rgba(255,255,255,0.03)">Deutsch</text></svg>') repeat;
  opacity: 0.5;
}

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

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

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

.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: hsl(116, 33%, 58%);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.newsletter-submit-btn {
  padding: 16px 40px;
  background: hsl(116, 33%, 58%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

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

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

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

.newsletter-benefit-icon {
  width: 20px;
  height: 20px;
  background: hsl(116, 33%, 58%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

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

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

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

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

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

  .newsletter-submit-btn {
    width: 100%;
    padding: 14px 30px;
  }

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

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

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

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

.hero-section h1 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: hsl(116, 33%, 18%);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.hero-section .description {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-content {
  position: relative;
  z-index: 3;
  background-color: #f8f9fa;
  padding: 3rem;
  border-radius: 12px;
  margin-top: -80px;
  margin-left: -40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

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

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

.advantages-list li i {
  color: hsl(116, 33%, 33%);
  margin-right: 1rem;
  font-size: 1.3rem;
  margin-top: 0.2rem;
}

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

.btn-primary-custom {
  background-color: hsl(116, 33%, 33%);
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: hsl(116, 33%, 18%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary-custom:hover {
  background-color: hsl(116, 33%, 33%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.decorative-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  background-color: hsl(116, 33%, 58%);
  border-radius: 50%;
  opacity: 0.15;
  z-index: 1;
}

.accent-1 {
  top: -40px;
  right: -40px;
}

.accent-2 {
  bottom: 60px;
  left: -60px;
  width: 180px;
  height: 180px;
}

@media (max-width: 991px) {
  .hero-content {
    margin-top: 2rem;
    margin-left: 0;
    padding: 2rem;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section h2 {
    font-size: 1.5rem;
  }
}

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

.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;
    color: hsl(116, 33%, 18%);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
  }

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

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

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(116, 116, 96, 0.15);
    border-color: hsl(116, 33%, 58%);
  }

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(116, 33%, 33%) 0%, hsl(116, 33%, 48%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
  }

  .service-card:hover .service-icon {
    background: linear-gradient(135deg, hsl(116, 33%, 58%) 0%, hsl(116, 33%, 33%) 100%);
    transform: rotate(360deg);
  }

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

  .service-card h3 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(116, 33%, 18%);
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
  }

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

  .service-price {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(116, 33%, 33%);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .service-term {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .service-card .btn {
    background: hsl(116, 33%, 33%);
    color: #ffffff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
  }

  .service-card .btn:hover {
    background: hsl(116, 33%, 18%);
    transform: scale(1.05);
  }

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

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

    .service-card {
      margin-bottom: 1.5rem;
    }
  }

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

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

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

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

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

.blog-card-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

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

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

.blog-card-meta {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: flex;
  gap: 15px;
}

.blog-meta-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #333;
  font-weight: 500;
}

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

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

.blog-card-title a {
  color: hsl(116, 33%, 18%);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: hsl(116, 33%, 33%);
}

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

.blog-read-more {
  display: inline-flex;
  align-items: center;
  color: hsl(116, 33%, 33%);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  margin-top: auto;
}

.blog-read-more:hover {
  color: hsl(116, 33%, 18%);
}

.blog-read-more::after {
  content: '→';
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.blog-read-more:hover::after {
  margin-left: 12px;
}

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

.view-all-btn:hover {
  background: hsl(116, 33%, 18%);
  color: #ffffff;
  transform: translateY(-2px);
}

.blog-cta-wrapper {
  text-align: center;
}

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

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

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

  .blog-card-content {
    padding: 25px;
  }

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

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

  #credentials {
    padding: 50px 0;
    background-color: #f8f9fa;
  }

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

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

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

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

  #credentials .trust-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin: 0;
  }

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

    #credentials .section-title {
      font-size: 1.6rem;
      margin-bottom: 30px;
    }

    #credentials .trust-card {
      padding: 20px 12px;
    }

    #credentials .trust-icon {
      font-size: 2rem;
    }

    #credentials .trust-title {
      font-size: 0.95rem;
    }
  }

.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: hsl(116, 33%, 18%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(116, 33%, 33%) 0%, hsl(116, 33%, 18%) 100%);
  color: #ffffff;
  border-left: 4px solid hsl(116, 33%, 58%);
}

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

.testimonial-card.featured .stars i {
  color: hsl(116, 33%, 58%);
}

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

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: hsl(116, 33%, 58%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Ubuntu', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

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

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

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

.customer-location {
  color: #666;
  font-size: 0.95rem;
}

.stars {
  margin-bottom: 15px;
}

.stars i {
  color: hsl(116, 33%, 58%);
  font-size: 1.1rem;
  margin-right: 3px;
}

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

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

.review-date {
  color: #999;
  font-size: 0.85rem;
  font-style: italic;
  margin-top: auto;
}

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

.testimonial-card.compact {
  padding: 25px;
}

.testimonial-card.compact .review-text {
  font-size: 0.95rem;
}

.testimonial-card.detailed {
  padding: 35px;
}

.testimonial-card.detailed .review-text {
  font-size: 1.05rem;
}

.rating-summary {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin-bottom: 50px;
}

.rating-summary h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(116, 33%, 33%);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.rating-summary .total-reviews {
  color: #666;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .testimonial-header {
    flex-direction: column;
    text-align: center;
  }
  
  .customer-info {
    text-align: center;
  }
}

.offer-section {
  background: linear-gradient(135deg, hsl(116, 33%, 33%) 0%, hsl(116, 33%, 18%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.offer-badge {
  display: inline-block;
  background: hsl(116, 33%, 58%);
  color: hsl(116, 33%, 18%);
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

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

.offer-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}

.deadline-box {
  background: linear-gradient(135deg, hsl(116, 33%, 58%) 0%, hsl(116, 33%, 33%) 100%);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
}

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

.deadline-date {
  font-family: 'Ubuntu', 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 {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: hsl(116, 33%, 95%);
  transform: translateX(5px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: hsl(116, 33%, 33%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.benefit-text {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding-top: 5px;
}

.discount-highlight {
  background: hsl(116, 33%, 33%);
  color: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 35px;
}

.discount-percentage {
  font-family: 'Ubuntu', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: hsl(116, 33%, 58%);
  line-height: 1;
  margin-bottom: 8px;
}

.discount-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #f8f9fa;
  margin: 0;
}

.offer-cta-btn {
  display: inline-block;
  background: hsl(116, 33%, 33%);
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 3px solid hsl(116, 33%, 33%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-cta-btn:hover {
  background: transparent;
  color: hsl(116, 33%, 33%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

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

  .offer-card {
    padding: 35px 25px;
  }

  .deadline-date {
    font-size: 32px;
    flex-direction: column;
  }

  .discount-percentage {
    font-size: 44px;
  }

  .benefit-item {
    padding: 15px;
  }

  .benefit-text {
    font-size: 15px;
  }
}

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

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

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

.disclaimer-section .icon-wrapper i {
  font-size: 3.5rem;
  color: hsl(116, 33%, 33%);
  opacity: 0.9;
}

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

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

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

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

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

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

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

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

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

@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(116, 33%, 33%);
    --secondary-color: hsl(116, 33%, 18%);
    --accent-color: hsl(116, 33%, 58%);
  }

  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(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

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

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

  .policy-content h3 {
    font-size: 1.35rem;
    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(--accent-color);
    text-decoration: underline;
  }

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

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

  .policy-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
  }

  .policy-header h1 {
    color: white;
    border-bottom: none;
    margin-bottom: 0.5rem;
  }

  .last-updated {
    background-color: hsl(116, 33%, 95%);
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0.25rem;
    font-style: italic;
  }

  .contact-box {
    background-color: hsl(116, 33%, 96%);
    border: 2px solid var(--accent-color);
    border-radius: 0.5rem;
    padding: 2rem;
    margin-top: 2rem;
  }

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

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

  .highlight-box {
    background-color: hsl(116, 33%, 97%);
    border-left: 4px solid var(--primary-color);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0.25rem;
  }

@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(116, 33%, 33%);
    --secondary-color: hsl(116, 33%, 18%);
    --accent-color: hsl(116, 33%, 58%);
  }
  
  .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(--primary-color);
    font-weight: 700;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--secondary-color);
    position: relative;
    padding-left: 20px;
  }
  
  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background-color: var(--accent-color);
    border-radius: 3px;
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }
  
  .policy-content a:hover {
    color: var(--accent-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.75rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .effective-date {
    background-color: hsl(116, 33%, 95%);
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
    font-style: italic;
  }
  
  .contact-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-box h3 {
    color: white;
    margin-bottom: 1.25rem;
  }
  
  .contact-box p {
    margin-bottom: 0.5rem;
    text-align: left;
  }
  
  .contact-box a {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
  }
  
  .contact-box a:hover {
    color: white;
    border-bottom-color: white;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    margin: 2.5rem 0;
  }

@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: hsl(116, 33%, 33%);
  --secondary: hsl(116, 33%, 18%);
  --accent: hsl(116, 33%, 58%);
}

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

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

.success-icon-wrapper {
  margin-bottom: 2rem;
  animation: scaleIn 0.6s ease-out;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 25px rgba(74, 103, 74, 0.3);
}

.success-icon::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border: 3px solid var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

.checkmark {
  width: 50px;
  height: 50px;
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  animation: drawCheck 0.8s ease-out 0.3s forwards;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.thank-you-heading {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.thank-you-subheading {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.thank-you-message {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

.info-card {
  background: linear-gradient(135deg, rgba(74, 103, 74, 0.05) 0%, rgba(74, 103, 74, 0.1) 100%);
  border-left: 4px solid var(--accent);
  padding: 1.25rem;
  border-radius: 10px;
  text-align: left;
}

.info-card-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 0.75rem;
  vertical-align: middle;
}

.info-card-text {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 500;
  width: calc(100% - 40px);
}

.btn-home {
  font-family: 'Ubuntu', sans-serif;
  background: var(--primary);
  color: #ffffff;
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 103, 74, 0.3);
  animation: fadeInUp 0.6s ease-out 0.6s backwards;
}

.btn-home:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 103, 74, 0.4);
  color: #ffffff;
}

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }
}

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

@media (min-width: 768px) {
  .thank-you-container {
    padding: 4rem 3rem;
  }
  
  .thank-you-heading {
    font-size: 3rem;
  }
  
  .info-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .thank-you-heading {
    font-size: 2rem;
  }
  
  .thank-you-subheading {
    font-size: 1.125rem;
  }
  
  .thank-you-message {
    font-size: 1rem;
  }
  
  .success-icon {
    width: 80px;
    height: 80px;
  }
  
  .success-icon::before {
    width: 100px;
    height: 100px;
  }
  
  .checkmark {
    width: 40px;
    height: 40px;
  }
}