:root {
            --primary: hsl(164, 67%, 46%);
            --secondary: hsl(164, 67%, 31%);
            --accent: hsl(164, 67%, 71%);
            --text-dark: #333;
            --text-light: #fff;
            --bg-light: #ffffff;
            --bg-gray: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Nunito', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--bg-light);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            line-height: 1.3;
        }

        header {
            background-color: var(--bg-light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

        .logo-wrapper img {
            display: block;
        }

        .company-name {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary);
            text-decoration: none;
        }

        nav {
            display: flex;
            align-items: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: none;
            border: none;
            padding: 5px;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background-color: var(--secondary);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        @media (max-width: 968px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--bg-light);
                flex-direction: column;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                max-height: 600px;
            }

            .nav-links li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid #eee;
            }

            .nav-links a {
                display: block;
                padding: 1rem;
            }

            .nav-links a::after {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .company-name {
                font-size: 1.2rem;
            }

            .logo-wrapper {
                gap: 10px;
            }

            .logo-wrapper img {
                width: 40px;
                height: 40px;
            }
        }

:root {
    --primary: hsl(164, 67%, 46%);
    --secondary: hsl(164, 67%, 31%);
    --accent: hsl(164, 67%, 71%);
    --text-dark: #222;
    --text-light: #555;
    --bg-light: #f8f9fa;
    --white: #ffffff;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .about-section {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    padding: 80px 20px;
  }

  .about-container {
    max-width: 1200px;
    margin: 0 auto;
  }

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

  .about-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
  }

  .about-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
  }

  .about-text {
    padding: 20px;
  }

  .about-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 25px;
    font-weight: 600;
  }

  .about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
  }

  .about-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

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

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

  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
    padding: 50px 0;
    background: var(--bg-light);
    padding: 50px 30px;
    border-radius: 12px;
  }

  .value-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

  .value-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--secondary);
  }

  .value-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
  }

  .value-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
  }

  .mission-vision {
    display: flex;
    gap: 40px;
    margin-top: 60px;
  }

  .mission-box,
  .vision-box {
    flex: 1;
    padding: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
  }

  .mission-box h2,
  .vision-box h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .mission-box p,
  .vision-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
  }

  @media (max-width: 992px) {
    .about-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .values-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }

    .mission-vision {
      flex-direction: column;
      gap: 30px;
    }

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

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

    .about-header h1 {
      font-size: 1.9rem;
    }

    .about-header p {
      font-size: 1.05rem;
    }

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

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

    .mission-box,
    .vision-box {
      padding: 30px 25px;
    }
  }

:root {
  --primary: hsl(164, 67%, 46%);
  --secondary: hsl(164, 67%, 31%);
  --accent: hsl(164, 67%, 71%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.portfolio-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  font-family: 'Nunito', sans-serif;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.portfolio-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.portfolio-header p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.filter-btn {
  padding: 12px 28px;
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.portfolio-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
}

.portfolio-item.hidden {
  display: none;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.portfolio-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
}

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

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.portfolio-category {
  background: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

.portfolio-content {
  padding: 28px;
}

.portfolio-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.portfolio-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.98rem;
  margin-bottom: 20px;
}

.view-details {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.view-details:hover {
  gap: 12px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: var(--white);
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s ease;
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: var(--primary);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.modal-body {
  padding: 40px;
}

.modal-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.modal-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.modal-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.modal-meta-item strong {
  color: var(--primary);
  font-weight: 600;
}

.modal-description {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.modal-details {
  background: var(--bg-light);
  padding: 28px;
  border-radius: 12px;
  margin-bottom: 28px;
}

.modal-details h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 600;
}

.modal-details ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.modal-details li {
  padding-left: 28px;
  position: relative;
  color: var(--text-light);
  line-height: 1.6;
}

.modal-details li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

.modal-results {
  border-top: 2px solid var(--bg-light);
  padding-top: 28px;
}

.modal-results h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 600;
}

.modal-results p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.02rem;
}

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

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

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

  .filter-buttons {
    gap: 8px;
  }

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

  .modal-content {
    margin: 20px;
  }

  .modal-image {
    height: 250px;
  }

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

  .modal-body h3 {
    font-size: 1.6rem;
  }

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

@media (max-width: 480px) {
  .portfolio-header h2 {
    font-size: 1.8rem;
  }

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

  .filter-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-btn {
    width: 100%;
  }
}

:root {
  --primary: hsl(164, 67%, 46%);
  --secondary: hsl(164, 67%, 31%);
  --accent: hsl(164, 67%, 71%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #fff;
  --shadow: rgba(0, 0, 0, 0.08);
}

.advantages-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
  font-family: 'Nunito', sans-serif;
}

.advantages-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.advantages-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.advantages-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.advantage-card {
  background: var(--white);
  padding: 36px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--shadow);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

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

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

.advantage-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.35s ease;
}

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

.advantage-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.advantage-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.advantage-card p {
  font-size: 0.975rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

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

  .advantages-header {
    margin-bottom: 40px;
  }

  .advantages-header h2 {
    font-size: 1.875rem;
  }

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

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

  .advantage-card {
    padding: 28px 20px;
  }

  .advantage-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }

  .advantage-icon svg {
    width: 28px;
    height: 28px;
  }

  .advantage-card h3 {
    font-size: 1.125rem;
  }

  .advantage-card p {
    font-size: 0.938rem;
  }
}

@media (max-width: 480px) {
  .advantages-section {
    padding: 50px 12px;
  }

  .advantages-header h2 {
    font-size: 1.625rem;
  }
}

:root {
  --primary: hsl(164, 67%, 46%);
  --secondary: hsl(164, 67%, 31%);
  --accent: hsl(164, 67%, 71%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

.statistics-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  font-family: 'Nunito', sans-serif;
}

.statistics-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.statistics-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.statistics-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.stat-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--primary);
}

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

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.stat-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-number span {
  font-size: 1.8rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 600;
  line-height: 1.4;
}

.stat-context {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 8px;
  font-style: italic;
}

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

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

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

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

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

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

  .stat-number span {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .statistics-grid {
    grid-template-columns: 1fr;
  }

  .statistics-header h2 {
    font-size: 1.75rem;
  }
}

:root {
  --primary: hsl(164, 67%, 46%);
  --secondary: hsl(164, 67%, 31%);
  --accent: hsl(164, 67%, 71%);
  --text-dark: #222;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

footer {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a4d4d 100%);
  color: var(--white);
  padding: 60px 20px 20px;
  font-family: 'Nunito', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about h3,
.footer-contact h3,
.footer-links h3,
.footer-hours h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.footer-about p {
  line-height: 1.7;
  color: #e0e0e0;
  font-size: 0.95rem;
}

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

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  flex-shrink: 0;
  fill: var(--accent);
  margin-top: 2px;
}

.footer-contact-item a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--accent);
}

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

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

.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.footer-links a:before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-links a:hover:before {
  transform: translateX(5px);
}

.footer-hours-list {
  color: #e0e0e0;
  line-height: 1.8;
}

.footer-hours-list p {
  margin: 8px 0;
  display: flex;
  justify-content: space-between;
}

.footer-hours-list strong {
  color: var(--accent);
  min-width: 120px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-policies {
  margin-bottom: 20px;
}

.footer-policies a {
  color: #e0e0e0;
  text-decoration: none;
  margin: 0 15px;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-policies a:hover {
  color: var(--accent);
}

.footer-copyright {
  color: #b0b0b0;
  font-size: 0.9rem;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 30px 20px;
  z-index: 9999;
  display: none;
  animation: slideUp 0.4s ease;
}

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

.cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cookie-header h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin: 0 0 10px 0;
}

.cookie-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  padding: 12px;
  background: var(--bg-light);
  border-radius: 6px;
  border-left: 3px solid var(--primary);
}

.cookie-category-icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  flex-shrink: 0;
  fill: var(--primary);
  margin-top: 2px;
}

.cookie-category-content h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  margin: 0 0 5px 0;
}

.cookie-category-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.cookie-category.required {
  opacity: 0.7;
}

.cookie-category.required h5:after {
  content: ' (Always Active)';
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: normal;
}

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

.cookie-btn {
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cookie-btn-accept {
  background: var(--primary);
  color: var(--white);
  flex: 1;
  min-width: 150px;
}

.cookie-btn-accept:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 188, 156, 0.3);
}

.cookie-btn-reject {
  background: #6c757d;
  color: var(--white);
  flex: 1;
  min-width: 150px;
}

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

.cookie-btn-manage {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--primary);
  flex: 1;
  min-width: 150px;
}

.cookie-btn-manage:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

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

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-policies a {
    display: block;
    margin: 10px 0;
  }

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

  .cookie-btn {
    width: 100%;
  }

  .footer-hours-list p {
    flex-direction: column;
    gap: 5px;
  }
}

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

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Nunito, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(164, 67%, 46%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Poppins, sans-serif; color: hsl(164, 67%, 31%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(164, 67%, 46%); }
.article-hero-img { width: 100%; height: auto; border-radius: 12px; margin-bottom: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.blog-article h2 { color: hsl(164, 67%, 31%); font-family: Poppins, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(164, 67%, 31%); font-family: Poppins, sans-serif; }
.blog-article a { color: hsl(164, 67%, 46%); }
.blog-article a:hover { color: hsl(164, 67%, 71%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(164, 67%, 46%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

:root {
  --primary: hsl(164, 67%, 46%);
  --secondary: hsl(164, 67%, 31%);
  --accent: hsl(164, 67%, 71%);
  --text-dark: #222;
  --text-gray: #555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border: #e0e0e0;
}

.contact-section {
  font-family: 'Nunito', sans-serif;
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
  padding: 5rem 2rem;
  color: var(--text-dark);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-header p {
  font-size: 1.15rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  transition: border-color 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(27, 182, 139, 0.3);
}

.submit-btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(27, 182, 139, 0.4);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary);
}

.info-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.info-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.1rem;
}

.info-card p {
  color: var(--text-gray);
  line-height: 1.8;
  margin: 0.5rem 0;
  font-size: 1rem;
}

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

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

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

.hours-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  color: var(--text-gray);
}

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

.hours-day {
  font-weight: 600;
  color: var(--text-dark);
}

.contact-note {
  background: var(--accent);
  padding: 1.8rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 2rem;
}

.contact-note p {
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .contact-section {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .contact-header h2 {
    font-size: 1.8rem;
  }

  .contact-form-wrapper,
  .info-card {
    padding: 1.5rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem;
  }

  .hours-list li {
    flex-direction: column;
    gap: 0.3rem;
  }
}

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

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

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

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

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

  h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 2.5rem;
    padding-left: 15px;
    border-left: 4px solid var(--primary-color);
  }

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

  .policy-content {
    max-width: 1000px;
    background: #ffffff;
  }

  .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: color 0.3s ease;
  }

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

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

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

  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(164, 67%, 85%) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
  }

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

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

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

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

  .last-updated {
    background: var(--accent-color);
    padding: 1rem;
    border-radius: 5px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 2rem;
  }

  .cookie-table {
    margin: 2rem 0;
  }

  .cookie-table th {
    background: var(--primary-color);
    color: white;
    font-family: 'Poppins', sans-serif;
  }

  .cookie-table td {
    vertical-align: middle;
  }

  strong {
    color: var(--secondary-color);
    font-weight: 700;
  }

:root {
  --primary: hsl(164, 67%, 46%);
  --secondary: hsl(164, 67%, 31%);
  --accent: hsl(164, 67%, 71%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

.faq-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  font-family: 'Nunito', sans-serif;
}

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

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

.faq-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.faq-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: var(--white);
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: background 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question-text {
  flex: 1;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--white);
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
}

.faq-item.active .faq-icon {
  background: var(--secondary);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-content {
  padding: 0 28px 24px 28px;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 800px;
}

.faq-answer-content p {
  margin: 0 0 12px 0;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-answer-content strong {
  color: var(--text-dark);
  font-weight: 700;
}

.faq-cta {
  margin-top: 50px;
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 12px;
  color: var(--white);
}

.faq-cta h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.faq-cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.95;
}

.faq-cta-button {
  display: inline-block;
  padding: 14px 35px;
  background: var(--white);
  color: var(--secondary);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

  .faq-question {
    padding: 20px 20px;
    font-size: 1rem;
  }

  .faq-answer-content {
    padding: 0 20px 20px 20px;
    font-size: 0.95rem;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
  }

  .faq-cta {
    padding: 30px 20px;
  }

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

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

@media (max-width: 480px) {
  .faq-header h2 {
    font-size: 1.75rem;
  }

  .faq-question {
    padding: 18px 16px;
    font-size: 0.95rem;
  }

  .faq-answer-content {
    padding: 0 16px 18px 16px;
  }
}

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

  .newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
  }

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

  .newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .newsletter-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
  }

  .newsletter-icon svg {
    width: 35px;
    height: 35px;
    fill: #ffffff;
  }

  .newsletter-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
  }

  .newsletter-description {
    font-family: 'Nunito', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 40px 0;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .newsletter-input-wrapper {
    flex: 1;
    min-width: 280px;
    position: relative;
  }

  .newsletter-input {
    width: 100%;
    padding: 18px 25px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    color: #333333;
    transition: all 0.3s ease;
    box-sizing: border-box;
  }

  .newsletter-input::placeholder {
    color: #999999;
  }

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

  .newsletter-button {
    padding: 18px 45px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: hsl(164, 67%, 31%);
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

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

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

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

  .newsletter-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
  }

  .newsletter-benefit svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    flex-shrink: 0;
  }

  .newsletter-privacy {
    font-family: 'Nunito', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 25px;
    line-height: 1.6;
  }

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

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

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

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

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

    .newsletter-button {
      width: 100%;
      padding: 16px 35px;
    }

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

    .newsletter-benefit {
      font-size: 0.875rem;
    }
  }

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

    .newsletter-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 25px;
    }

    .newsletter-icon svg {
      width: 30px;
      height: 30px;
    }

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

:root {
  --primary: hsl(164, 67%, 46%);
  --secondary: hsl(164, 67%, 31%);
  --accent: hsl(164, 67%, 71%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-section {
  font-family: 'Nunito', sans-serif;
  background-color: var(--white);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 40px;
}

.hero-content {
  padding: 20px 0;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 25px;
  line-height: 1.4;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 35px;
}

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

.hero-advantages li {
  font-size: 1.05rem;
  color: var(--text-dark);
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  line-height: 1.6;
}

.hero-advantages li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-advantages li::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero-btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
}

.hero-btn-primary:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 188, 156, 0.4);
}

.hero-btn-secondary {
  background-color: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.hero-btn-secondary:hover {
  background-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: block;
}

.hero-decorative-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
  top: -50px;
  right: -50px;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 60px 30px;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .hero-content h2 {
    font-size: 1.4rem;
  }

  .hero-image-wrapper {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 40px 20px;
  }

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

  .hero-content h2 {
    font-size: 1.2rem;
  }

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

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

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

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .hero-decorative-circle {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content h2 {
    font-size: 1.1rem;
  }

  .hero-btn {
    font-size: 1rem;
    padding: 14px 30px;
  }
}

:root {
  --primary: hsl(164, 67%, 46%);
  --secondary: hsl(164, 67%, 31%);
  --accent: hsl(164, 67%, 71%);
  --trust-green: #28a745;
  --light-bg: #f8f9fa;
  --text-dark: #333;
  --border-color: #e0e0e0;
}

.credentials-section {
  padding: 3rem 1rem;
  background-color: #ffffff;
}

.credentials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.credentials-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.credential-card {
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.credential-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
}

.credential-text {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .credentials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .credentials-section {
    padding: 2.5rem 1rem;
  }

  .credentials-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .credential-card {
    padding: 1.25rem 0.75rem;
  }

  .credential-icon {
    width: 40px;
    height: 40px;
  }

  .credential-text {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
}

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

  .blog-preview__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .blog-preview__header {
    text-align: center;
    margin-bottom: 60px;
  }

  .blog-preview__title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
  }

  .blog-preview__subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.125rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .blog-preview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
  }

  .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;
    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-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
  }

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

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

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

  .blog-card__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.875rem;
    color: #777;
  }

  .blog-card__date,
  .blog-card__reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .blog-card__date::before {
    content: "📅";
    font-size: 0.875rem;
  }

  .blog-card__reading-time::before {
    content: "⏱";
    font-size: 0.875rem;
  }

  .blog-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
  }

  .blog-card__excerpt {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
  }

  .blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: hsl(164, 67%, 46%);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, gap 0.3s ease;
  }

  .blog-card__link::after {
    content: "→";
    font-size: 1.25rem;
    transition: transform 0.3s ease;
  }

  .blog-card__link:hover {
    color: hsl(164, 67%, 31%);
    gap: 12px;
  }

  .blog-card__link:hover::after {
    transform: translateX(4px);
  }

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

  .blog-preview__button {
    display: inline-block;
    padding: 16px 45px;
    background: hsl(164, 67%, 46%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(35, 178, 139, 0.3);
  }

  .blog-preview__button:hover {
    background: hsl(164, 67%, 31%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(35, 178, 139, 0.4);
  }

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

    .blog-preview__title {
      font-size: 2rem;
    }

    .blog-preview__subtitle {
      font-size: 1rem;
    }

    .blog-preview__grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .blog-card__title {
      font-size: 1.25rem;
    }

    .blog-card__content {
      padding: 25px;
    }

    .blog-preview__button {
      padding: 14px 35px;
      font-size: 1rem;
    }
  }

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

    .blog-card__meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .blog-card__image-wrapper {
      height: 200px;
    }
  }

:root {
  --primary: hsl(164, 67%, 46%);
  --secondary: hsl(164, 67%, 31%);
  --accent: hsl(164, 67%, 71%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.testimonials-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.testimonials-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

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

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border-left: 4px solid var(--primary);
}

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

.testimonial-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-left: none;
  color: var(--white);
}

.testimonial-card.featured .customer-name,
.testimonial-card.featured .customer-location,
.testimonial-card.featured .review-text {
  color: var(--white);
}

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

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

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

.star.empty {
  color: #ddd;
}

.review-text {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
}

.review-text.short {
  font-size: 1.1rem;
  font-weight: 600;
}

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

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.testimonial-card.featured .customer-info {
  border-top-color: rgba(255, 255, 255, 0.3);
}

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.testimonial-card.featured .customer-avatar {
  background: var(--white);
  color: var(--primary);
}

.customer-details {
  flex: 1;
}

.customer-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
  font-size: 1.05rem;
}

.customer-location {
  color: var(--text-light);
  font-size: 0.9rem;
}

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

.review-highlight {
  background: var(--accent);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  color: var(--secondary);
}

.testimonial-card.featured .review-highlight {
  background: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.review-date {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 10px;
  font-style: italic;
}

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

.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
  padding: 40px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
}

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

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.95rem;
}

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

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

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

  .testimonial-card.featured {
    grid-column: span 1;
  }

  .testimonials-stats {
    gap: 30px;
    padding: 30px 20px;
  }

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

@media (max-width: 480px) {
  .testimonials-header h2 {
    font-size: 1.75rem;
  }

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

  .customer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

:root {
  --primary: hsl(164, 67%, 46%);
  --secondary: hsl(164, 67%, 31%);
  --accent: hsl(164, 67%, 71%);
}

.promo-offer {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  font-family: 'Nunito', sans-serif;
}

.promo-container {
  max-width: 1200px;
  margin: 0 auto;
}

.promo-content {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.promo-content::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.promo-badge {
  display: inline-block;
  background: #fff;
  color: var(--secondary);
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.promo-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.promo-description {
  font-size: 18px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: center;
}

.promo-deadline {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.deadline-date {
  display: flex;
  align-items: center;
  gap: 15px;
}

.calendar-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.date-text {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.promo-benefits {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}

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

.benefit-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.cta-button {
  display: inline-block;
  background: #fff;
  color: var(--secondary);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: #f8f9fa;
}

@media (max-width: 968px) {
  .promo-offer {
    padding: 60px 20px;
  }

  .promo-content {
    padding: 40px 30px;
  }

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

  .promo-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .date-text {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .promo-offer {
    padding: 40px 15px;
  }

  .promo-content {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .promo-heading {
    font-size: 28px;
  }

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

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

  .calendar-icon {
    width: 40px;
    height: 40px;
  }

  .cta-button {
    font-size: 16px;
    padding: 15px 40px;
  }
}

:root {
  --primary: hsl(164, 67%, 46%);
  --secondary: hsl(164, 67%, 31%);
  --accent: hsl(164, 67%, 71%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

.services-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
  font-family: 'Nunito', sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.services-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.services-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--accent);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

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

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 15px;
}

.price-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
}

.price-period {
  color: var(--text-light);
  font-size: 0.9rem;
}

.service-terms {
  background: var(--bg-light);
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  border-left: 3px solid var(--accent);
}

.services-note {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--accent);
}

.services-note p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .services-header h2 {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 60px 15px;
  }
  
  .services-header h2 {
    font-size: 1.75rem;
  }
  
  .services-header p {
    font-size: 1rem;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
  }
  
  .price-amount {
    font-size: 1.75rem;
  }
}

:root {
  --primary: hsl(164, 67%, 46%);
  --secondary: hsl(164, 67%, 31%);
  --accent: hsl(164, 67%, 71%);
}

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

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

.disclaimer-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--accent);
}

.disclaimer-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.disclaimer-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--primary);
}

.disclaimer-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #222;
  margin: 0;
}

.disclaimer-content {
  color: #444;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}

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

.disclaimer-content p:last-child {
  margin-bottom: 0;
}

.disclaimer-highlight {
  background: #f0f9f7;
  border-left: 4px solid var(--primary);
  padding: 20px 25px;
  margin-top: 25px;
  border-radius: 6px;
}

.disclaimer-highlight p {
  margin: 0;
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

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

  .disclaimer-container {
    padding: 35px 25px;
  }

  .disclaimer-title {
    font-size: 26px;
  }

  .disclaimer-icon {
    width: 40px;
    height: 40px;
  }

  .disclaimer-content {
    font-size: 15px;
  }

  .disclaimer-highlight {
    padding: 15px 20px;
  }

  .disclaimer-highlight p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .disclaimer-title {
    font-size: 22px;
  }

  .disclaimer-header {
    gap: 12px;
  }

  .disclaimer-icon {
    width: 36px;
    height: 36px;
  }
}

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

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

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

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

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

  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
  }

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

  .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 p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
  }

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

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

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

  .intro-box p {
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 400;
  }

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

  .contact-info-box strong {
    color: var(--secondary-color);
  }

  .section-card {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-top: 3px solid var(--accent-color);
  }

  .effective-date {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
  }

  .highlight-text {
    background-color: var(--accent-color);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
  }

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Nunito:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(164, 67%, 46%);
    --secondary-color: hsl(164, 67%, 31%);
    --accent-color: hsl(164, 67%, 71%);
  }
  
  body {
    font-family: 'Nunito', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--secondary-color);
    position: relative;
    padding-left: 1rem;
  }
  
  .policy-content h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background-color: var(--primary-color);
    border-radius: 3px;
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  .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 p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
  }
  
  .policy-content ul, .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
  }
  
  .last-updated {
    background-color: var(--accent-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  .contact-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .contact-box h3 {
    color: white;
    margin-bottom: 1.5rem;
  }
  
  .contact-box a {
    color: white;
    text-decoration: underline;
  }
  
  .contact-box a:hover {
    color: var(--accent-color);
  }
  
  .section-highlight {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .badge-custom {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
  }

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

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

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

  .success-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .success-icon {
    width: 100px;
    height: 100px;
    background: hsl(164, 67%, 46%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
    box-shadow: 0 4px 20px hsla(164, 67%, 46%, 0.3);
  }

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

  .checkmark {
    animation: drawCheck 0.5s ease-out 0.3s forwards;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
  }

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

  .thank-you-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(164, 67%, 31%);
    margin: 0 0 1rem 0;
    line-height: 1.2;
  }

  .thank-you-subheading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(164, 67%, 46%);
    margin: 0 0 1.5rem 0;
  }

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

  .thank-you-message p {
    margin: 0 0 1rem 0;
  }

  .thank-you-message p:last-child {
    margin-bottom: 0;
  }

  .info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
  }

  .info-card {
    background: hsl(164, 67%, 96%);
    border-radius: 12px;
    padding: 1.25rem;
    border-left: 4px solid hsl(164, 67%, 46%);
    text-align: left;
  }

  .info-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: hsl(164, 67%, 31%);
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

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

  .icon-small {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .button-wrapper {
    margin-top: 2.5rem;
  }

  .home-button {
    display: inline-block;
    background: hsl(164, 67%, 46%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px hsla(164, 67%, 46%, 0.3);
  }

  .home-button:hover {
    background: hsl(164, 67%, 31%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(164, 67%, 46%, 0.4);
  }

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

  @media (max-width: 768px) {
    .thank-you-container {
      padding: 2rem 1.5rem;
    }

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

    .home-button {
      font-size: 1rem;
      padding: 0.875rem 2.5rem;
    }
  }

  @media (max-width: 480px) {
    .thank-you-section {
      padding: 1rem 0.75rem;
    }

    .thank-you-container {
      padding: 1.5rem 1rem;
      border-radius: 12px;
    }

    .thank-you-heading {
      font-size: 1.75rem;
    }

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

    .info-card {
      padding: 1rem;
    }

    .home-button {
      width: 100%;
      padding: 1rem 2rem;
    }
  }