:root {
            --primary-color: hsl(151, 50%, 47%);
            --secondary-color: hsl(151, 50%, 32%);
            --accent-color: hsl(151, 50%, 72%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Lora', serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Lora', serif;
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(64, 179, 140, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(151, 50%, 47%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                padding-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
            }
        }

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

.about-section {
  font-family: 'Lora', serif;
  background: linear-gradient(135deg, hsl(151, 50%, 97%) 0%, hsl(151, 30%, 95%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  padding-right: 20px;
}

.about-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(151, 50%, 32%);
  margin-bottom: 25px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-subheading {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(151, 50%, 47%);
  margin-top: 30px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-paragraph {
  font-size: 1.05rem;
  line-height: 1.8;
  color: hsl(0, 0%, 30%);
  margin-bottom: 20px;
  text-align: justify;
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, hsl(151, 50%, 47%) 0%, transparent 100%);
  opacity: 0.1;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.about-image-wrapper:hover::before {
  opacity: 0.2;
}

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

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

.about-highlight {
  background: hsl(151, 50%, 72%);
  color: hsl(151, 50%, 32%);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: hsl(0, 0%, 30%);
}

.about-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: hsl(151, 50%, 47%);
  font-weight: bold;
  font-size: 1.3rem;
}

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

  .about-text {
    padding-right: 0;
  }

  .about-heading {
    font-size: 2.3rem;
  }

  .about-images {
    grid-template-columns: 1fr 1fr;
  }
}

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

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

  .about-subheading {
    font-size: 1.3rem;
  }

  .about-paragraph {
    font-size: 1rem;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 250px;
  }
}

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

  .about-subheading {
    font-size: 1.2rem;
  }

  .about-image {
    height: 220px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Lora:wght@400;500;600&display=swap');
  @import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css');

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

  #advantages .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(151, 50%, 32%);
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  #advantages .advantage-row {
    margin-bottom: 60px;
    display: flex;
    align-items: center;
  }

  #advantages .advantage-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, hsl(151, 50%, 47%) 0%, hsl(151, 50%, 32%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  #advantages .advantage-content {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
  }

  #advantages .advantage-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  #advantages .advantage-content:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(151, 50%, 72%) 0%, hsl(151, 50%, 47%) 100%);
  }

  #advantages .advantage-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(151, 50%, 32%);
    margin-bottom: 15px;
    margin-top: 0;
  }

  #advantages .advantage-description {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
  }

  #advantages .icon-left {
    order: 1;
  }

  #advantages .content-right {
    order: 2;
  }

  #advantages .icon-right {
    order: 2;
  }

  #advantages .content-left {
    order: 1;
  }

  @media (max-width: 768px) {
    #advantages .section-title {
      font-size: 2rem;
      margin-bottom: 40px;
    }

    #advantages .advantage-row {
      margin-bottom: 40px;
    }

    #advantages .advantage-icon {
      width: 80px;
      height: 80px;
      font-size: 2.5rem;
      margin: 0 auto 20px;
    }

    #advantages .icon-left,
    #advantages .icon-right {
      order: 1;
    }

    #advantages .content-left,
    #advantages .content-right {
      order: 2;
    }

    #advantages .advantage-content {
      padding: 20px;
    }

    #advantages .advantage-title {
      font-size: 1.5rem;
    }

    #advantages .advantage-description {
      font-size: 1rem;
    }
  }

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

  #statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(151, 50%, 97%) 0%, hsl(151, 30%, 95%) 100%);
    position: relative;
    overflow: hidden;
  }

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(151, 50%, 47%) 0%, hsl(151, 50%, 32%) 100%);
  }

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

  #statistics .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(151, 50%, 32%);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  #statistics .section-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: hsl(151, 20%, 40%);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }

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

  #statistics .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(151, 50%, 47%) 0%, hsl(151, 50%, 72%) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

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

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

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

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

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

  #statistics .stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: hsl(151, 50%, 32%);
    margin-bottom: 10px;
    line-height: 1;
  }

  #statistics .stat-label {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: hsl(151, 20%, 40%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

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

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

    #statistics .stat-card {
      margin-bottom: 20px;
    }
  }

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

footer {
    background: linear-gradient(135deg, hsl(151, 50%, 32%) 0%, hsl(151, 50%, 25%) 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px;
    font-family: 'Lora', serif;
}

footer h5 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: hsl(151, 50%, 72%);
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p, footer a {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #e8e8e8;
}

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

footer a:hover {
    color: hsl(151, 50%, 72%);
    padding-left: 5px;
}

.footer-description {
    max-width: 400px;
    margin-bottom: 25px;
}

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

.footer-contact-item i {
    color: hsl(151, 50%, 47%);
    margin-right: 10px;
    margin-top: 3px;
}

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

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

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

.company-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(151, 50%, 47%);
    margin-bottom: 15px;
}

#cookieNotice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(151, 50%, 32%) 0%, hsl(151, 50%, 27%) 100%);
    color: #ffffff;
    padding: 25px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
    font-family: 'Lora', serif;
}

#cookieNotice.show {
    display: block;
    animation: slideUp 0.5s ease;
}

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn-accept {
    background: hsl(151, 50%, 47%);
    color: #ffffff;
}

.cookie-btn-accept:hover {
    background: hsl(151, 50%, 42%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-learn {
    background: transparent;
    color: #ffffff;
    border: 2px solid hsl(151, 50%, 72%);
}

.cookie-btn-learn:hover {
    background: hsl(151, 50%, 72%);
    color: hsl(151, 50%, 32%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
}

.cookies-policy {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50;
    line-height: 1.8;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  }
  
  .cookies-policy h1 {
    font-size: 2.5em;
    color: #1a472a;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 4px solid #27ae60;
    text-align: center;
  }
  
  .cookies-policy h2 {
    font-size: 1.8em;
    color: #27ae60;
    margin-top: 35px;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 5px solid #27ae60;
  }
  
  .cookies-policy h3 {
    font-size: 1.3em;
    color: #2980b9;
    margin-top: 25px;
    margin-bottom: 12px;
  }
  
  .cookies-policy p {
    margin-bottom: 15px;
    text-align: justify;
  }
  
  .cookies-policy .intro {
    background: #e8f5e9;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 5px solid #27ae60;
    font-size: 1.1em;
  }
  
  .cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .cookie-table th {
    background: #27ae60;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
  }
  
  .cookie-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ecf0f1;
  }
  
  .cookie-table tr:last-child td {
    border-bottom: none;
  }
  
  .cookie-table tr:hover {
    background: #f8f9fa;
  }
  
  .highlight-box {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px;
    margin: 25px 0;
    border-radius: 5px;
  }
  
  .control-options {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
  }
  
  .control-options ul {
    list-style: none;
    padding-left: 0;
  }
  
  .control-options li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
  }
  
  .control-options li:before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 1.3em;
  }
  
  .last-updated {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #ecf0f1;
  }

.privacy-policy {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.8;
    color: #333;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.privacy-policy h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 10px;
    border-bottom: 4px solid #3498db;
    padding-bottom: 15px;
}

.privacy-policy .last-updated {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 30px;
    font-size: 0.95em;
}

.privacy-policy h2 {
    color: #34495e;
    font-size: 1.8em;
    margin-top: 35px;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 5px solid #3498db;
}

.privacy-policy h3 {
    color: #2c3e50;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 12px;
}

.privacy-policy p {
    margin-bottom: 15px;
    text-align: justify;
}

.privacy-policy ul {
    margin: 15px 0;
    padding-left: 30px;
}

.privacy-policy li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.privacy-policy strong {
    color: #2c3e50;
    font-weight: 600;
}

.highlight-box {
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
    padding: 20px;
    margin: 25px 0;
    border-radius: 5px;
}

.data-category {
    background-color: #fff;
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.right-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    border-top: 3px solid #3498db;
}

.right-item h4 {
    color: #3498db;
    margin-top: 0;
    margin-bottom: 10px;
}

.blog-page { padding: 4rem 0; }
        .blog-page h1 { margin-bottom: 3rem; text-align: center; }
        .blog-card { margin-bottom: 2rem; transition: transform 0.3s; }
        .blog-card:hover { transform: translateY(-5px); }
        .blog-card .card-title { font-size: 1.5rem; margin-bottom: 1rem; }
        .blog-meta { font-size: 0.9rem; color: #888; margin-bottom: 1rem; }

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

  #contact {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(151, 50%, 97%) 0%, hsl(151, 30%, 95%) 100%);
    font-family: 'Lora', serif;
  }

  #contact .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(151, 50%, 32%);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  #contact .section-subtitle {
    font-size: 1.1rem;
    color: hsl(151, 30%, 40%);
    margin-bottom: 3rem;
    line-height: 1.6;
  }

  #contact .info-box {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
  }

  #contact .info-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: hsl(151, 50%, 32%);
    margin-bottom: 1.5rem;
    font-weight: 600;
  }

  #contact .info-box p {
    font-size: 1rem;
    color: hsl(151, 20%, 35%);
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  #contact .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: hsl(151, 50%, 97%);
    border-radius: 8px;
    border-left: 4px solid hsl(151, 50%, 47%);
  }

  #contact .info-item-icon {
    width: 40px;
    height: 40px;
    background: hsl(151, 50%, 47%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
  }

  #contact .info-item-content h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: hsl(151, 50%, 32%);
    margin-bottom: 0.5rem;
    font-weight: 600;
  }

  #contact .info-item-content p {
    font-size: 0.95rem;
    color: hsl(151, 20%, 40%);
    margin: 0;
    line-height: 1.6;
  }

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

  #contact .contact-form h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: hsl(151, 50%, 32%);
    margin-bottom: 1.5rem;
    font-weight: 600;
  }

  #contact .form-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    color: hsl(151, 50%, 32%);
    margin-bottom: 0.5rem;
    font-weight: 500;
    display: block;
  }

  #contact .form-control,
  #contact .form-select {
    font-family: 'Lora', serif;
    padding: 0.75rem 1rem;
    border: 2px solid hsl(151, 30%, 85%);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
  }

  #contact .form-control:focus,
  #contact .form-select:focus {
    border-color: hsl(151, 50%, 47%);
    box-shadow: 0 0 0 0.2rem hsla(151, 50%, 47%, 0.15);
    outline: none;
  }

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

  #contact .btn-submit {
    font-family: 'Oswald', sans-serif;
    background: hsl(151, 50%, 47%);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
  }

  #contact .btn-submit:hover {
    background: hsl(151, 50%, 32%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(151, 50%, 32%, 0.3);
  }

  #contact .required-note {
    font-size: 0.9rem;
    color: hsl(151, 20%, 50%);
    margin-top: 1rem;
    font-style: italic;
  }

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

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

    #contact .info-box {
      margin-bottom: 2rem;
    }
  }

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

    #contact .info-box,
    #contact .contact-form {
      padding: 1.5rem;
    }

    #contact .btn-submit {
      padding: 0.875rem 2rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lora:wght@400;500;600&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css');

:root {
  --primary: hsl(151, 50%, 47%);
  --secondary: hsl(151, 50%, 32%);
  --accent: hsl(151, 50%, 72%);
}

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

.hero-section h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-section ul {
  font-family: 'Lora', serif;
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.hero-section ul li {
  padding: 0.75rem 0;
  color: #444;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
}

.hero-section ul li i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.hero-image {
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.btn-primary-custom {
  background-color: var(--primary);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(65, 171, 127, 0.3);
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.btn-primary-custom:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(65, 171, 127, 0.4);
  color: white;
}

.btn-secondary-custom {
  background-color: transparent;
  color: var(--secondary);
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  padding: 15px 40px;
  border: 2px solid var(--primary);
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.btn-secondary-custom:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(65, 171, 127, 0.3);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section h2 {
    font-size: 1.25rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .btn-primary-custom,
  .btn-secondary-custom {
    font-size: 1rem;
    padding: 12px 30px;
    margin-right: 0;
    width: 100%;
    text-align: center;
  }
}

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

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

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

  #faq .faq-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(151, 50%, 32%);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  #faq .faq-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

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

  #faq .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }

  #faq .accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
  }

  #faq .accordion-button {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: hsl(151, 50%, 32%);
    background-color: #ffffff;
    padding: 20px 25px;
    border: none;
    text-align: left;
    transition: all 0.3s ease;
  }

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

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

  #faq .accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem;
    transition: transform 0.3s ease;
    filter: brightness(0) saturate(100%) invert(32%) sepia(18%) saturate(1500%) hue-rotate(110deg);
  }

  #faq .accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(100%);
    transform: rotate(180deg);
  }

  #faq .accordion-body {
    padding: 25px;
    background-color: #ffffff;
    color: #495057;
    font-size: 1rem;
    line-height: 1.8;
    border-top: 2px solid hsl(151, 50%, 72%);
  }

  #faq .accordion-body strong {
    color: hsl(151, 50%, 32%);
    font-weight: 600;
  }

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

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

    #faq .accordion-button {
      font-size: 1rem;
      padding: 18px 20px;
    }

    #faq .accordion-body {
      padding: 20px;
      font-size: 0.95rem;
    }
  }

  @media (max-width: 576px) {
    #faq .faq-title {
      font-size: 1.6rem;
    }

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

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

  #blog {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(151, 50%, 97%) 0%, hsl(151, 30%, 95%) 100%);
    font-family: 'Lora', serif;
  }

  #blog .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(151, 50%, 32%);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  #blog .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }

  #blog .blog-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(151, 50%, 47%);
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  #blog .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-top-color: hsl(151, 50%, 32%);
  }

  #blog .blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }

  #blog .blog-category {
    background: hsl(151, 50%, 72%);
    color: hsl(151, 50%, 20%);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  #blog .blog-date {
    color: hsl(151, 20%, 50%);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
  }

  #blog .blog-reading-time {
    color: hsl(151, 20%, 50%);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
  }

  #blog .blog-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(151, 50%, 32%);
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  #blog .blog-description {
    color: hsl(0, 0%, 30%);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  #blog .blog-link {
    display: inline-block;
    color: hsl(151, 50%, 47%);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  #blog .blog-link:hover {
    color: hsl(151, 50%, 32%);
    padding-left: 10px;
  }

  #blog .blog-link::after {
    content: ' →';
    transition: transform 0.3s ease;
    display: inline-block;
  }

  #blog .blog-link:hover::after {
    transform: translateX(5px);
  }

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

  #blog .btn-view-all {
    background: hsl(151, 50%, 47%);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  #blog .btn-view-all:hover {
    background: hsl(151, 50%, 32%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

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

    #blog .section-title {
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    #blog .blog-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

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

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

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

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

.services-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(151, 50%, 32%);
  text-align: center;
  margin-bottom: 1rem;
}

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

.service-card {
  background: white;
  border-radius: 15px;
  padding: 35px 25px;
  height: 100%;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: hsl(151, 50%, 47%);
  box-shadow: 0 15px 35px rgba(64, 179, 128, 0.2);
}

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

.service-card:hover .service-icon {
  transform: rotate(360deg);
  background: linear-gradient(135deg, hsl(151, 50%, 32%), hsl(151, 50%, 47%));
}

.service-icon i {
  font-size: 32px;
  color: white;
}

.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(151, 50%, 32%);
  margin-bottom: 15px;
}

.service-card p {
  color: #495057;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
  font-size: 0.95rem;
}

.service-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: hsl(151, 50%, 47%);
  margin-bottom: 20px;
}

.service-price span {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 400;
}

.btn-service {
  background: hsl(151, 50%, 47%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-service:hover {
  background: hsl(151, 50%, 32%);
  transform: scale(1.05);
  color: white;
}

@media (max-width: 768px) {
  .services-section h2 {
    font-size: 2.2rem;
  }
  
  .service-card {
    margin-bottom: 20px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Lora:wght@400;500;600&display=swap');
  @import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css');

  #testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(151, 50%, 97%) 0%, hsl(151, 30%, 95%) 100%);
    font-family: 'Lora', serif;
  }

  #testimonials .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(151, 50%, 32%);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  #testimonials .section-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: hsl(151, 30%, 45%);
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid hsl(151, 50%, 47%);
    display: flex;
    flex-direction: column;
  }

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

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

  .testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(151, 50%, 47%), hsl(151, 50%, 72%));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
  }

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

  .testimonial-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(151, 50%, 32%);
    margin-bottom: 3px;
  }

  .testimonial-location {
    font-size: 0.85rem;
    color: hsl(151, 30%, 50%);
    display: flex;
    align-items: center;
    gap: 5px;
  }

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

  .testimonial-rating i {
    color: hsl(45, 100%, 51%);
    font-size: 1rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: hsl(151, 20%, 35%);
    margin-bottom: 15px;
    flex-grow: 1;
  }

  .testimonial-date {
    font-size: 0.8rem;
    color: hsl(151, 30%, 60%);
    font-style: italic;
    text-align: right;
  }

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

    #testimonials .section-title {
      font-size: 2.2rem;
    }

    .testimonial-card {
      padding: 20px;
      margin-bottom: 20px;
    }
  }

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

#offer {
  font-family: 'Lora', serif;
  background: linear-gradient(135deg, hsl(151, 50%, 47%) 0%, hsl(151, 50%, 32%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#offer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsla(151, 50%, 72%, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

#offer::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsla(151, 50%, 72%, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

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

.offer-badge {
  display: inline-block;
  background: hsl(151, 50%, 72%);
  color: hsl(151, 50%, 15%);
  padding: 8px 24px;
  border-radius: 30px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.offer-title {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.offer-description {
  font-size: 1.15rem;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

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

.date-section {
  background: linear-gradient(135deg, hsl(151, 50%, 72%) 0%, hsl(151, 50%, 62%) 100%);
  border-radius: 15px;
  padding: 35px;
  margin-bottom: 40px;
  text-align: center;
  border: 3px solid hsl(151, 50%, 47%);
}

.date-label {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: hsl(151, 50%, 20%);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.date-value {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  color: hsl(151, 50%, 15%);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  font-size: 3rem;
  color: hsl(151, 50%, 32%);
}

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

.benefit-item {
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, hsl(151, 50%, 97%) 0%, hsl(151, 50%, 94%) 100%);
  border-radius: 12px;
  border-left: 5px solid hsl(151, 50%, 47%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-icon {
  font-size: 2rem;
  color: hsl(151, 50%, 47%);
  margin-right: 20px;
  min-width: 50px;
  text-align: center;
}

.benefit-text {
  font-size: 1.1rem;
  color: hsl(151, 50%, 20%);
  font-weight: 500;
}

.discount-badge {
  display: inline-block;
  background: hsl(151, 50%, 47%);
  color: #ffffff;
  padding: 20px 40px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 4px solid hsl(151, 50%, 32%);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, hsl(151, 50%, 47%) 0%, hsl(151, 50%, 32%) 100%);
  color: #ffffff;
  padding: 20px 60px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  color: #ffffff;
}

@media (max-width: 768px) {
  .offer-title {
    font-size: 2.5rem;
  }
  
  .date-value {
    font-size: 2rem;
  }
  
  .offer-card {
    padding: 30px 20px;
  }
  
  .discount-badge {
    font-size: 2rem;
    padding: 15px 30px;
  }
  
  .cta-button {
    padding: 18px 40px;
    font-size: 1.3rem;
  }
}

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

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

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

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

  .newsletter-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
  }

  .newsletter-icon {
    width: 80px;
    height: 80px;
    background: hsl(151, 50%, 47%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .newsletter-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
  }

  .newsletter-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(151, 50%, 32%);
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .newsletter-description {
    font-family: 'Lora', serif;
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
  }

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

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

  .benefit-item svg {
    width: 20px;
    height: 20px;
    fill: hsl(151, 50%, 47%);
    flex-shrink: 0;
  }

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

  .newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
  }

  .newsletter-input:focus {
    border-color: hsl(151, 50%, 47%);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
  }

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

  .newsletter-button {
    padding: 18px 45px;
    background: hsl(151, 50%, 47%);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  .newsletter-button:hover {
    background: hsl(151, 50%, 32%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

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

  .newsletter-privacy {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: #888;
    margin-top: 20px;
  }

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

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

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

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

    .newsletter-form {
      flex-direction: column;
    }

    .newsletter-button {
      width: 100%;
    }

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

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

    .newsletter-content {
      padding: 30px 20px;
    }

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

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

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lora:wght@400;500;600;700&display=swap');
  @import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css');

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

  #video h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(151, 50%, 32%);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  #video .video-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  #video .video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #video .video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  }

  #video .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
  }

  #video .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  #video .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.85) 0%, rgba(27, 94, 32, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
  }

  #video .video-overlay:hover {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.75) 0%, rgba(27, 94, 32, 0.75) 100%);
  }

  #video .video-overlay .play-button {
    font-size: 6rem;
    color: #fff;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  }

  #video .video-overlay:hover .play-button {
    transform: scale(1.1);
    color: hsl(151, 50%, 72%);
  }

  #video .video-overlay.hidden {
    display: none;
  }

  #video .video-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }

  #video .video-cta h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(151, 50%, 32%);
    margin-bottom: 1rem;
  }

  #video .video-cta p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 1.5rem;
  }

  #video .cta-button {
    display: inline-block;
    padding: 14px 40px;
    background: hsl(151, 50%, 47%);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
  }

  #video .cta-button:hover {
    background: hsl(151, 50%, 32%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
    color: #fff;
  }

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

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

    #video .video-intro {
      font-size: 1rem;
      margin-bottom: 2rem;
    }

    #video .video-overlay .play-button {
      font-size: 4rem;
    }

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

    #video .cta-button {
      padding: 12px 30px;
      font-size: 1rem;
    }
  }

.disclaimer-section {
    background: linear-gradient(135deg, hsl(151, 50%, 97%) 0%, hsl(151, 30%, 95%) 100%);
    padding: 3rem 0;
    font-family: 'Lora', serif;
}

.disclaimer-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid hsl(151, 50%, 47%);
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.disclaimer-icon {
    color: hsl(151, 50%, 47%);
    font-size: 2rem;
    flex-shrink: 0;
}

.disclaimer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    color: hsl(151, 50%, 32%);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: hsl(0, 0%, 35%);
    margin: 0;
    text-align: justify;
}

@media (max-width: 768px) {
    .disclaimer-section {
        padding: 2rem 0;
    }
    
    .disclaimer-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .disclaimer-title {
        font-size: 1.5rem;
    }
    
    .disclaimer-icon {
        font-size: 1.5rem;
    }
    
    .disclaimer-text {
        font-size: 0.85rem;
    }
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50;
    line-height: 1.8;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.terms-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #3498db;
}

.terms-header h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.terms-header .effective-date {
    color: #7f8c8d;
    font-style: italic;
    font-size: 1.1em;
}

.terms-section {
    background: white;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.terms-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.terms-section h2 {
    color: #3498db;
    font-size: 1.8em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
    display: flex;
    align-items: center;
}

.terms-section h2::before {
    content: "⚡";
    margin-right: 15px;
    font-size: 1.2em;
}

.terms-section h3 {
    color: #34495e;
    font-size: 1.3em;
    margin-top: 20px;
    margin-bottom: 15px;
}

.terms-section p {
    margin-bottom: 15px;
    text-align: justify;
}

.terms-section ul {
    list-style: none;
    padding-left: 0;
}

.terms-section ul li {
    padding: 10px 0 10px 35px;
    position: relative;
    margin-bottom: 10px;
}

.terms-section ul li::before {
    content: "▸";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 10px;
    font-size: 1.2em;
}

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

.important-notice strong {
    color: #856404;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .terms-container {
        padding: 20px 10px;
    }
    
    .terms-header h1 {
        font-size: 1.8em;
    }
    
    .terms-section {
        padding: 20px;
    }
}