:root {
            --primary: hsl(171, 66%, 38%);
            --secondary: hsl(171, 66%, 23%);
            --accent: hsl(171, 66%, 63%);
            --text-dark: #333;
            --text-light: #fff;
            --bg-light: #ffffff;
            --bg-gray: #f8f9fa;
        }

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

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

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        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 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

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

        .company-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        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: 400;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .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 {
            color: var(--primary);
        }

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

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

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text-dark);
            transition: all 0.3s ease;
            display: block;
        }

        .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;
                padding: 1rem 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

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

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

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

        @media (max-width: 480px) {
            .header-container {
                padding: 0 1rem;
            }

            .company-name {
                font-size: 1.2rem;
            }

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

:root {
  --primary: hsl(171, 66%, 38%);
  --secondary: hsl(171, 66%, 23%);
  --accent: hsl(171, 66%, 63%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

.about-section {
  font-family: 'Source Sans Pro', sans-serif;
  background: var(--white);
  padding: 80px 20px;
}

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

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

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

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

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

.about-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 10px;
  font-weight: 600;
}

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

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

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

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

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

.value-card {
  background: var(--bg-light);
  padding: 35px 30px;
  border-radius: 10px;
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

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

.about-bottom {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  padding: 50px;
  border-radius: 12px;
  color: var(--white);
}

.about-bottom-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.about-bottom-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-bottom-text {
  flex: 1;
}

.about-bottom-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-bottom-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

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

  .about-bottom {
    flex-direction: column;
    padding: 40px 30px;
  }

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

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

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

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

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

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

  .about-bottom {
    padding: 30px 20px;
  }

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

:root {
  --primary: hsl(171, 66%, 38%);
  --secondary: hsl(171, 66%, 23%);
  --accent: hsl(171, 66%, 63%);
  --text-dark: #222;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-section {
  padding: 80px 20px;
  background: var(--white);
  font-family: 'Source Sans Pro', sans-serif;
}

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

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

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

.portfolio-header p {
  font-size: 1.1rem;
  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: 15px;
  margin-bottom: 50px;
}

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

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

.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

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

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

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

.portfolio-image {
  width: 100%;
  height: 280px;
  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.1);
}

.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.3s ease;
}

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

.portfolio-content {
  padding: 25px;
}

.portfolio-category {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.portfolio-content p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

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

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

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
}

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

.modal-content {
  background: var(--white);
  max-width: 900px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  animation: modalSlideIn 0.4s ease;
}

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

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

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

.modal-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 40px;
}

.modal-body .portfolio-category {
  margin-bottom: 15px;
}

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

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

.project-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid var(--bg-light);
}

.detail-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.detail-item p {
  color: var(--text-dark);
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
}

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

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

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

  .filter-buttons {
    gap: 10px;
  }

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

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

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

  .modal-image {
    height: 250px;
  }

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

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

  .portfolio-content h3 {
    font-size: 1.2rem;
  }

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

:root {
  --primary: hsl(171, 66%, 38%);
  --secondary: hsl(171, 66%, 23%);
  --accent: hsl(171, 66%, 63%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

.advantage-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.advantage-card:hover .advantage-icon {
  transform: rotate(360deg);
}

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

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

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

@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .advantages-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .advantages-section {
    padding: 60px 20px;
  }
  
  .advantages-header {
    margin-bottom: 40px;
  }
  
  .advantages-header h2 {
    font-size: 1.9rem;
  }
  
  .advantages-header p {
    font-size: 1rem;
  }
  
  .advantages-grid {
    gap: 20px;
  }
  
  .advantage-card {
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .advantages-header h2 {
    font-size: 1.7rem;
  }
}

:root {
  --primary: hsl(171, 66%, 38%);
  --secondary: hsl(171, 66%, 23%);
  --accent: hsl(171, 66%, 63%);
}

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

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

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

.statistics-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 15px;
  font-weight: 700;
}

.statistics-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.stat-card {
  background: #ffffff;
  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: 48px;
  height: 48px;
  margin: 0 auto 20px;
}

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

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

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  line-height: 1.4;
}

.stat-context {
  font-size: 0.85rem;
  color: #888;
  margin-top: 8px;
  font-style: italic;
}

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

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

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

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

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

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

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

:root {
  --primary: hsl(171, 66%, 38%);
  --secondary: hsl(171, 66%, 23%);
  --accent: hsl(171, 66%, 63%);
  --text-dark: #222;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

footer {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a4d47 100%);
  color: var(--white);
  padding: 60px 20px 20px;
  font-family: 'Source Sans Pro', 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-links h3,
.footer-contact h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--accent);
  font-weight: 600;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.footer-links a {
  color: #e8f5f3;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  padding: 5px 0;
  display: inline-block;
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #e8f5f3;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-item-icon {
  color: var(--accent);
  font-weight: bold;
  min-width: 20px;
  font-size: 1.1rem;
}

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

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-policies {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-policies a {
  color: #b8d9d5;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

#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: 10000;
  font-family: 'Source Sans Pro', sans-serif;
  border-top: 3px solid var(--primary);
}

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

.cookie-header h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.cookie-description {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cookie-category-icon {
  color: var(--primary);
  font-weight: bold;
  min-width: 20px;
  margin-top: 2px;
}

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

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

.cookie-category-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-left: 8px;
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

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

.cookie-btn-accept {
  background: var(--primary);
  color: var(--white);
}

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

.cookie-btn-reject {
  background: #6c757d;
  color: var(--white);
}

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

.cookie-btn-settings {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cookie-btn-settings:hover {
  background: var(--primary);
  color: var(--white);
}

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-policies {
    justify-content: center;
  }

  #cookieNotice {
    padding: 25px 15px;
  }

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

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

  .cookie-btn {
    width: 100%;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cookie-categories {
    padding: 15px;
  }

  .cookie-category {
    flex-direction: column;
    gap: 8px;
  }
}

.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: Source Sans Pro, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(171, 66%, 38%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Montserrat, sans-serif; color: hsl(171, 66%, 23%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(171, 66%, 38%); }
.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(171, 66%, 23%); font-family: Montserrat, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(171, 66%, 23%); font-family: Montserrat, sans-serif; }
.blog-article a { color: hsl(171, 66%, 38%); }
.blog-article a:hover { color: hsl(171, 66%, 63%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(171, 66%, 38%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

:root {
  --primary: hsl(171, 66%, 38%);
  --secondary: hsl(171, 66%, 23%);
  --accent: hsl(171, 66%, 63%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border: #e0e0e0;
  --error: #dc3545;
  --success: #28a745;
}

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

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

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

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

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

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

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

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

.form-group {
  margin-bottom: 25px;
}

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

.form-group label .required {
  color: var(--error);
  margin-left: 3px;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(171, 66%, 38%, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.submit-btn {
  width: 100%;
  padding: 16px 32px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

.info-card {
  background: var(--white);
  padding: 30px;
  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: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card h4::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.info-item {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

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

.info-label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.6;
}

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

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

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

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

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

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

.hours-list .time {
  color: var(--text-light);
}

.map-placeholder {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.map-placeholder h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.map-placeholder p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.map-box {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
}

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

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

  .contact-form-wrapper,
  .info-card,
  .map-placeholder {
    padding: 25px;
  }
}

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

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

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

  .contact-form-wrapper h3 {
    font-size: 1.5rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .submit-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .info-card h4 {
    font-size: 1.2rem;
  }

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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');
  
  :root {
    --primary-color: hsl(171, 66%, 38%);
    --secondary-color: hsl(171, 66%, 23%);
    --accent-color: hsl(171, 66%, 63%);
  }
  
  body {
    font-family: 'Source Sans Pro', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    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: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    font-weight: 400;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--accent-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .info-box {
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.08) 0%, rgba(26, 188, 156, 0.03) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-info {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-info h3 {
    color: white;
    margin-bottom: 1.5rem;
  }
  
  .contact-info p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
  }
  
  .contact-info a {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
  }
  
  .contact-info a:hover {
    color: white;
  }
  
  .last-updated {
    background-color: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
  }
  
  .cookie-type-card {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .cookie-type-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(26, 188, 156, 0.15);
  }
  
  .cookie-type-card h3 {
    margin-top: 0;
  }

:root {
  --primary: hsl(171, 66%, 38%);
  --secondary: hsl(171, 66%, 23%);
  --accent: hsl(171, 66%, 63%);
  --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%);
}

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

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

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

.faq-header p {
  font-family: 'Source Sans Pro', sans-serif;
  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: 15px;
}

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

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

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: var(--white);
  border: none;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 400;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-item.active .faq-question {
  background: var(--bg-light);
  color: var(--primary);
}

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

.faq-answer-content {
  padding: 0 30px 25px 30px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
}

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

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

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

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

.faq-cta {
  margin-top: 60px;
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.faq-cta h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 15px;
  font-weight: 700;
}

.faq-cta p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 25px;
  opacity: 0.95;
}

.faq-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--white);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  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;
    font-size: 1rem;
  }

  .faq-question::after {
    font-size: 1.5rem;
    margin-left: 15px;
  }

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

  .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 15px;
    font-size: 0.95rem;
  }

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(171, 66%, 38%) 0%, hsl(171, 66%, 23%) 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%;
    pointer-events: none;
  }

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

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

  .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: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
  }

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

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

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

  .newsletter-input {
    width: 100%;
    padding: 18px 25px;
    font-family: 'Source Sans Pro', 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: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
  }

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

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

  .newsletter-submit {
    padding: 18px 45px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: hsl(171, 66%, 38%);
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

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

  .newsletter-privacy {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
  }

  .newsletter-privacy a {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.3s ease;
  }

  .newsletter-privacy a:hover {
    opacity: 0.8;
  }

  .newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .newsletter-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
  }

  .newsletter-benefit-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .newsletter-benefit-icon svg {
    width: 100%;
    height: 100%;
    fill: #ffffff;
  }

  .newsletter-benefit-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.938rem;
    color: #ffffff;
    margin: 0;
    text-align: left;
  }

  @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: 12px;
    }

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

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

    .newsletter-benefits {
      grid-template-columns: 1fr;
      gap: 15px;
      margin-top: 40px;
    }

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

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

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

    .newsletter-input,
    .newsletter-submit {
      font-size: 0.938rem;
    }
  }

:root {
  --primary: hsl(171, 66%, 38%);
  --secondary: hsl(171, 66%, 23%);
  --accent: hsl(171, 66%, 63%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #ffffff;
  --bg-gray: #f8f9fa;
}

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

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

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

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

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

.hero-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 30px;
  line-height: 1.4;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: left;
}

.hero-advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 40px 0;
  text-align: left;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.advantage-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.advantage-text {
  flex: 1;
}

.advantage-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.advantage-text span {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cta-button {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.cta-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(27, 153, 139, 0.3);
}

.cta-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 153, 139, 0.4);
}

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

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

.hero-image-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

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

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

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

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

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

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .advantage-item {
    padding: 15px;
  }

  .advantage-text strong {
    font-size: 1rem;
  }

  .cta-button {
    padding: 14px 30px;
    font-size: 1rem;
  }
}

:root {
  --primary: hsl(171, 66%, 38%);
  --secondary: hsl(171, 66%, 23%);
  --accent: hsl(171, 66%, 63%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border: #e0e0e0;
}

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

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

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

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

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

.tabs-navigation {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-button {
  padding: 14px 32px;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.tab-button:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.tab-button.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

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

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

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 35px 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s 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.4s ease;
}

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

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

.service-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  transition: transform 0.4s ease;
}

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

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

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

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

.service-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}

.service-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 700;
}

.service-duration {
  color: var(--text-light);
  font-size: 0.95rem;
  background: var(--bg-light);
  padding: 6px 14px;
  border-radius: 20px;
}

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

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

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

  .tabs-navigation {
    gap: 10px;
  }

  .tab-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

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

  .service-card {
    padding: 28px 22px;
  }

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

  .service-price {
    font-size: 1.6rem;
  }

  .service-details {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

:root {
  --primary: hsl(171, 66%, 38%);
  --secondary: hsl(171, 66%, 23%);
  --accent: hsl(171, 66%, 63%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border: #e0e0e0;
}

.blog-section {
  padding: 80px 5%;
  background: var(--white);
}

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

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

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

.blog-header p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.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-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.875rem;
  color: var(--text-light);
}

.blog-date,
.blog-reading-time {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta-divider {
  width: 4px;
  height: 4px;
  background: var(--text-light);
  border-radius: 50%;
}

.blog-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.blog-card-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: var(--primary);
}

.blog-card-excerpt {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card-link {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.95rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.blog-card-link:hover {
  gap: 12px;
}

.blog-card-link::after {
  content: '→';
  font-size: 1.1rem;
}

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

.blog-view-all {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.blog-view-all:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

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

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

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

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

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

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

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

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

  .blog-meta {
    flex-wrap: wrap;
    gap: 10px;
  }
}

:root {
  --primary: hsl(171, 66%, 38%);
  --secondary: hsl(171, 66%, 23%);
  --accent: hsl(171, 66%, 63%);
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
  --check-green: #28a745;
}

.credentials-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.credentials-header {
  text-align: center;
  margin-bottom: 40px;
}

.credentials-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: var(--text-dark);
  margin: 0 0 10px 0;
  font-weight: 600;
}

.credentials-header p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.credential-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px 15px;
  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.1);
}

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

.credential-icon svg {
  width: 100%;
  height: 100%;
}

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

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

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

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

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

  .credential-card {
    padding: 20px 12px;
  }

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

  .credential-title {
    font-size: 0.9rem;
  }
}

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

  .credential-card {
    padding: 18px 15px;
  }
}

:root {
  --primary: hsl(171, 66%, 38%);
  --secondary: hsl(171, 66%, 23%);
  --accent: hsl(171, 66%, 63%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

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

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

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

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

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

.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;
  display: flex;
  flex-direction: column;
  position: relative;
}

.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%);
  color: var(--white);
}

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

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

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

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

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

.star.empty {
  color: #ddd;
}

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

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

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

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 2px solid var(--bg-light);
}

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

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

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

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

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

.testimonial-card.featured .customer-location {
  opacity: 0.9;
}

.course-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-top: 10px;
  font-weight: 500;
}

.testimonial-card.featured .course-tag {
  background: rgba(255, 255, 255, 0.2);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.15;
  font-family: Georgia, serif;
}

.testimonial-card.featured .quote-icon {
  color: var(--white);
  opacity: 0.2;
}

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

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

@media (min-width: 769px) and (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

:root {
  --primary: hsl(171, 66%, 38%);
  --secondary: hsl(171, 66%, 23%);
  --accent: hsl(171, 66%, 63%);
}

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

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

.promo-offer::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.08;
  border-radius: 50%;
}

.promo-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.promo-offer h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #222;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.promo-intro {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 0 50px 0;
}

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

.promo-left {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.promo-discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(27, 156, 133, 0.3);
}

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

.promo-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

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

.promo-benefits svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.promo-right {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  padding: 50px 40px;
  border-radius: 16px;
  color: #fff;
  text-align: center;
  box-shadow: 0 10px 40px rgba(27, 156, 133, 0.25);
}

.deadline-label {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.deadline-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.deadline-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1;
}

.deadline-month {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 30px 0;
}

.deadline-note {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 35px;
}

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

.promo-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  background: #f8f9fa;
}

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

  .promo-offer h2 {
    font-size: 38px;
  }

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

  .promo-left {
    padding: 30px;
  }

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

  .deadline-date {
    font-size: 48px;
  }

  .deadline-month {
    font-size: 24px;
  }
}

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

  .promo-offer h2 {
    font-size: 32px;
  }

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

  .promo-left {
    padding: 25px;
  }

  .promo-discount {
    width: 100px;
    height: 100px;
    font-size: 36px;
  }

  .promo-benefits li {
    font-size: 15px;
    gap: 12px;
  }

  .promo-benefits svg {
    width: 20px;
    height: 20px;
  }

  .promo-right {
    padding: 35px 25px;
  }

  .deadline-date {
    font-size: 42px;
  }

  .deadline-month {
    font-size: 22px;
  }

  .promo-cta {
    font-size: 16px;
    padding: 16px 35px;
  }
}

:root {
  --primary: hsl(171, 66%, 38%);
  --secondary: hsl(171, 66%, 23%);
  --accent: hsl(171, 66%, 63%);
}

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

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

.disclaimer-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  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: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin: 0;
  line-height: 1.2;
}

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

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

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

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

  .disclaimer-container {
    padding: 36px 24px;
  }

  .disclaimer-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }

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

  .disclaimer-title {
    font-size: 1.75rem;
  }

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

@media (max-width: 480px) {
  .disclaimer-container {
    padding: 28px 20px;
  }

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

  .disclaimer-content {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Source+Sans+Pro:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(171, 66%, 38%);
    --secondary-color: hsl(171, 66%, 23%);
    --accent-color: hsl(171, 66%, 63%);
  }
  
  .policy-content {
    font-family: 'Source Sans Pro', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
  }
  
  .policy-content h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.5rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .info-box {
    background-color: rgba(26, 188, 156, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.25rem;
  }
  
  .last-updated {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
  }
  
  .section-card {
    background: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .section-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 188, 156, 0.2);
  }
  
  .contact-info {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
  }
  
  .contact-info a {
    color: white;
    text-decoration: underline;
  }
  
  .contact-info a:hover {
    color: var(--accent-color);
  }

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Source+Sans+Pro:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(171, 66%, 38%);
    --secondary-color: hsl(171, 66%, 23%);
    --accent-color: hsl(171, 66%, 63%);
  }
  
  .policy-content {
    font-family: 'Source Sans Pro', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
  }
  
  .policy-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .policy-intro {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
  }
  
  .policy-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin: 1.5rem 0;
    border-radius: 5px;
  }
  
  .contact-box {
    background: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-box a {
    color: var(--accent-color);
  }
  
  .contact-box a:hover {
    color: white;
  }
  
  .effective-date {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
  }

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

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, hsl(171, 66%, 98%) 0%, hsl(171, 66%, 95%) 100%);
  font-family: 'Source Sans Pro', sans-serif;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  animation: scaleIn 0.5s ease-out;
}

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

.thank-you-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(171, 66%, 23%);
  margin-bottom: 1rem;
}

.thank-you-subheading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(171, 66%, 38%);
  margin-bottom: 1.5rem;
}

.thank-you-message {
  font-size: 1.125rem;
  line-height: 1.8;
  color: hsl(0, 0%, 40%);
  margin-bottom: 2rem;
}

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

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

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: hsl(171, 66%, 98%);
  border-radius: 12px;
  border-left: 4px solid hsl(171, 66%, 38%);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
}

.info-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.info-text {
  font-size: 1rem;
  color: hsl(0, 0%, 30%);
  line-height: 1.6;
}

.info-text strong {
  color: hsl(171, 66%, 23%);
  font-weight: 600;
}

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

.home-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: hsl(171, 66%, 38%);
  color: white;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px hsla(171, 66%, 38%, 0.3);
}

.home-button:hover {
  background: hsl(171, 66%, 23%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsla(171, 66%, 38%, 0.4);
}

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

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

  .thank-you-container {
    padding: 2rem 1.5rem;
  }

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

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

  .thank-you-subheading {
    font-size: 1.125rem;
  }

  .thank-you-message {
    font-size: 1rem;
  }

  .info-grid {
    padding: 1.25rem;
  }

  .info-text {
    font-size: 0.9375rem;
  }

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

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

  .thank-you-subheading {
    font-size: 1rem;
  }

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