* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
            background: white;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Roboto', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            color: hsl(113, 46%, 31%);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: hsl(113, 46%, 46%);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .nav-link {
            color: #333 !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            transition: color 0.3s ease;
            font-size: 15px;
        }
        
        .nav-link:hover {
            color: hsl(113, 46%, 46%) !important;
        }
        
        .navbar-toggler {
            border: 2px solid hsl(113, 46%, 46%);
            padding: 0.4rem 0.6rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(113, 165, 113, 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(113, 46%25, 46%25)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: #f8f9fa;
                padding: 1.5rem;
                margin-top: 1rem;
                border-radius: 8px;
            }
            
            .nav-link {
                padding: 0.7rem 1rem !important;
            }
        }
        
        @media (min-width: 992px) {
            .navbar-expand-lg .navbar-nav .nav-link {
                padding-right: 0.9rem !important;
                padding-left: 0.9rem !important;
            }
        }

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

    .cookies-policy-header {
        text-align: center;
        margin-bottom: 50px;
        padding: 40px;
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .cookies-policy-header h1 {
        font-size: 3em;
        color: #1a365d;
        margin-bottom: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .cookies-policy-header .subtitle {
        font-size: 1.2em;
        color: #718096;
        font-style: italic;
    }

    .last-updated {
        text-align: center;
        font-size: 0.95em;
        color: #4a5568;
        margin-bottom: 40px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 10px;
        backdrop-filter: blur(10px);
    }

    .cookies-section {
        background: white;
        margin-bottom: 30px;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .cookies-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    .cookies-section h2 {
        font-size: 2em;
        color: #2d3748;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 3px solid #4299e1;
        display: flex;
        align-items: center;
    }

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

    .cookies-section h3 {
        font-size: 1.5em;
        color: #1a365d;
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .cookies-section p {
        margin-bottom: 20px;
        font-size: 1.05em;
        text-align: justify;
    }

    .cookie-type-box {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 25px;
        border-radius: 12px;
        margin: 20px 0;
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    }

    .cookie-type-box h4 {
        font-size: 1.3em;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .cookie-type-box p {
        margin-bottom: 10px;
        color: #f7fafc;
    }

    .cookie-list {
        background: #f7fafc;
        padding: 25px;
        border-left: 5px solid #4299e1;
        margin: 20px 0;
        border-radius: 8px;
    }

    .cookie-list ul {
        list-style: none;
        padding: 0;
    }

    .cookie-list li {
        padding: 12px 0;
        border-bottom: 1px solid #e2e8f0;
        font-size: 1.05em;
    }

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

    .cookie-list li::before {
        content: "▶";
        color: #4299e1;
        font-weight: bold;
        margin-right: 10px;
    }

    .highlight-box {
        background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
        padding: 30px;
        border-radius: 12px;
        margin: 25px 0;
        border-left: 6px solid #f39c12;
        box-shadow: 0 5px 20px rgba(243, 156, 18, 0.2);
    }

    .highlight-box strong {
        color: #d35400;
        font-size: 1.15em;
    }

    .gdpr-compliance {
        background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
        padding: 35px;
        border-radius: 15px;
        margin: 30px 0;
        border: 2px solid #81c784;
    }

    .gdpr-compliance h3 {
        color: #2e7d32;
        font-size: 1.6em;
        margin-bottom: 20px;
    }

    .consent-box {
        background: white;
        padding: 25px;
        border-radius: 10px;
        margin: 20px 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .consent-box h4 {
        color: #1a365d;
        margin-bottom: 15px;
        font-size: 1.3em;
    }

    .control-options {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }

    .control-card {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        color: white;
        padding: 25px;
        border-radius: 12px;
        text-align: center;
        transition: transform 0.3s ease;
    }

    .control-card:hover {
        transform: scale(1.05);
    }

    .control-card h4 {
        margin-bottom: 15px;
        font-size: 1.3em;
    }

    .important-notice {
        background: #fff5f5;
        border: 2px solid #fc8181;
        padding: 25px;
        border-radius: 10px;
        margin: 25px 0;
    }

    .important-notice strong {
        color: #c53030;
        font-size: 1.1em;
    }

    .table-responsive {
        overflow-x: auto;
        margin: 25px 0;
    }

    .cookies-table {
        width: 100%;
        border-collapse: collapse;
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .cookies-table th {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 18px;
        text-align: left;
        font-weight: 600;
        font-size: 1.1em;
    }

    .cookies-table td {
        padding: 15px 18px;
        border-bottom: 1px solid #e2e8f0;
    }

    .cookies-table tr:hover {
        background: #f7fafc;
    }

    @media (max-width: 768px) {
        .cookies-policy-container {
            padding: 30px 15px;
        }

        .cookies-policy-header h1 {
            font-size: 2em;
        }

        .cookies-section {
            padding: 25px;
        }

        .control-options {
            grid-template-columns: 1fr;
        }
    }

footer {
  background: hsl(113, 46%, 31%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  margin-top: 80px;
  font-family: 'Open Sans', sans-serif;
}

footer h4 {
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 25px;
  font-weight: 600;
}

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

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: hsl(113, 46%, 71%);
}

.footer-description {
  margin-bottom: 20px;
  color: #d4d4d4;
}

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

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

.contact-info li i {
  margin-right: 10px;
  color: hsl(113, 46%, 71%);
  margin-top: 3px;
}

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

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

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

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  padding: 25px 0;
  border-top: 3px solid hsl(113, 46%, 46%);
}

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

.cookie-content p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.cookie-categories li {
  padding: 8px 0;
  color: #444;
  font-size: 0.9rem;
}

.cookie-categories li strong {
  color: #222;
  font-weight: 600;
}

.cookie-categories .required {
  color: hsl(113, 46%, 31%);
  font-size: 0.85rem;
  font-weight: 500;
}

.cookie-categories .optional {
  color: #777;
  font-size: 0.85rem;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-accept-all {
  background: hsl(113, 46%, 46%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}

.btn-accept-all:hover {
  background: hsl(113, 46%, 31%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-reject {
  background: #6c757d;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}

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

.btn-manage {
  color: hsl(113, 46%, 31%);
  text-decoration: underline;
  padding: 12px 20px;
  font-weight: 500;
  transition: color 0.3s;
}

.btn-manage:hover {
  color: hsl(113, 46%, 46%);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 15px;
  }
  
  footer h4 {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-accept-all, .btn-reject {
    width: 100%;
  }
}

.blog-page {
            padding: 4rem 0;
        }
        .blog-page h1 {
            margin-bottom: 3rem;
            text-align: center;
            color: hsl(113, 46%, 46%);
        }
        .blog-card {
            margin-bottom: 2rem;
            transition: transform 0.3s;
            border: none;
            border-radius: 10px;
        }
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
        }
        .blog-card .card-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: hsl(113, 46%, 46%);
        }
        .blog-card .card-text {
            color: #666;
            line-height: 1.6;
        }
        .blog-meta {
            font-size: 0.9rem;
            color: #888;
            margin-bottom: 1rem;
        }
        .blog-meta i {
            color: hsl(113, 46%, 71%);
        }
        .blog-read-more {
            background-color: hsl(113, 46%, 46%);
            border: none;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 5px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .blog-read-more:hover {
            background-color: hsl(113, 46%, 71%);
            color: white;
            transform: translateX(5px);
        }

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

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

.hero-section {
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, hsl(113, 46%, 46%) 0%, hsl(113, 46%, 31%) 100%);
  overflow: hidden;
  padding: 60px 0;
}

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

.hero-image-container {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 85%;
  z-index: 1;
  opacity: 0.15;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px 0 0 12px;
}

.hero-text-content {
  max-width: 650px;
  padding: 40px 20px;
}

.hero-section h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 3.2rem;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-section h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: hsl(113, 46%, 71%);
  margin-bottom: 28px;
  line-height: 1.4;
}

.hero-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.05rem;
  color: #f8f9fa;
  line-height: 1.7;
  margin-bottom: 32px;
  text-align: justify;
}

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

.hero-benefits li {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 14px;
  padding-left: 32px;
  position: relative;
  line-height: 1.6;
}

.hero-benefits li:before {
  content: '\F26A';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: hsl(113, 46%, 71%);
  font-size: 1.3rem;
  font-weight: bold;
}

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

.btn-hero-primary {
  background-color: #ffffff;
  color: hsl(113, 46%, 31%);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 36px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-hero-primary:hover {
  background-color: hsl(113, 46%, 71%);
  color: hsl(113, 46%, 31%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.btn-hero-secondary {
  background-color: transparent;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 14px 36px;
  border: 2px solid #ffffff;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background-color: #ffffff;
  color: hsl(113, 46%, 31%);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .hero-image-container {
    width: 50%;
    opacity: 0.1;
  }
  
  .hero-section h1 {
    font-size: 2.6rem;
  }
  
  .hero-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 50px 0;
  }
  
  .hero-image-container {
    display: none;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .hero-section h2 {
    font-size: 1.3rem;
    margin-bottom: 22px;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 28px;
  }
  
  .hero-benefits li {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    gap: 14px;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
    padding: 13px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-text-content {
    padding: 30px 15px;
  }
  
  .hero-section h1 {
    font-size: 1.9rem;
  }
  
  .hero-section h2 {
    font-size: 1.2rem;
  }
}

#portfolio {
    padding: 80px 0;
    background: #f8f9fa;
  }

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

  #portfolio .section-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .portfolio-card {
    background: white;
    border-radius: 8px;
    padding: 35px 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border-left: 4px solid hsl(113, 46%, 46%);
  }

  .portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-left-color: hsl(113, 46%, 31%);
  }

  .portfolio-card .category {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: hsl(113, 46%, 46%);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .portfolio-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .portfolio-card .description {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .portfolio-card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
  }

  .portfolio-card .date {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #888;
  }

  .portfolio-card .view-details {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: hsl(113, 46%, 46%);
    font-weight: 600;
    text-decoration: none;
  }

  .portfolio-card .view-details:hover {
    color: hsl(113, 46%, 31%);
  }

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

  .modal-header {
    background: hsl(113, 46%, 46%);
    color: white;
    border-radius: 10px 10px 0 0;
    padding: 25px 30px;
  }

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

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

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

  .modal-body .category-badge {
    display: inline-block;
    background: hsl(113, 46%, 71%);
    color: #222;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
  }

  .modal-body h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    color: #222;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .modal-body p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  .modal-body .tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
  }

  .modal-body .tech-item {
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #333;
    font-family: 'Open Sans', sans-serif;
  }

  @media (max-width: 768px) {
    .portfolio-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    #portfolio {
      padding: 60px 0;
    }

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@300;400;600&display=swap');

.promo-offer-section {
  font-family: 'Open Sans', sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.promo-offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsla(113, 46%, 71%, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.promo-offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsla(113, 46%, 46%, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.promo-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.promo-badge {
  display: inline-block;
  background: linear-gradient(90deg, hsl(113, 46%, 46%) 0%, hsl(113, 46%, 31%) 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.promo-main-title {
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
  line-height: 1.2;
}

.promo-main-title span {
  color: hsl(113, 46%, 46%);
  display: block;
  font-size: 3.5rem;
}

.promo-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.promo-card {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  margin-top: 40px;
  border: 2px solid hsl(113, 46%, 71%);
}

.deadline-block {
  background: linear-gradient(135deg, hsl(113, 46%, 46%) 0%, hsl(113, 46%, 31%) 100%);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 45px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.deadline-label {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.deadline-date {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: hsl(113, 46%, 71%, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, hsl(113, 46%, 46%) 0%, hsl(113, 46%, 31%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 8px;
  font-weight: 600;
}

.benefit-content p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.promo-cta-wrapper {
  text-align: center;
  padding-top: 20px;
}

.promo-cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, hsl(113, 46%, 46%) 0%, hsl(113, 46%, 31%) 100%);
  color: white;
  padding: 18px 50px;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  color: white;
  text-decoration: none;
}

.discount-highlight {
  background: hsl(113, 46%, 71%);
  color: #222;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 30px;
  font-family: 'Roboto', sans-serif;
}

@media (max-width: 768px) {
  .promo-main-title {
    font-size: 2rem;
  }
  
  .promo-main-title span {
    font-size: 2.5rem;
  }
  
  .promo-card {
    padding: 35px 25px;
  }
  
  .deadline-date {
    font-size: 2rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

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

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

.contact-section .section-subtitle {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

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

.contact-form-wrapper h3 {
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.contact-form .form-label {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form .form-control {
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    background: #fff;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: hsl(113, 46%, 46%);
    box-shadow: 0 0 0 0.2rem rgba(113, 180, 113, 0.25);
    outline: none;
}

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

.form-check-label {
    color: #444;
    font-size: 0.9rem;
}

.form-check-label a {
    color: hsl(113, 46%, 31%);
    text-decoration: underline;
}

.form-check-input:checked {
    background-color: hsl(113, 46%, 46%);
    border-color: hsl(113, 46%, 46%);
}

.btn-submit {
    background: hsl(113, 46%, 46%);
    color: #fff;
    padding: 14px 45px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.btn-submit:hover {
    background: hsl(113, 46%, 31%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(113, 180, 113, 0.4);
}

.gdpr-notice {
    margin-top: 20px;
    padding: 20px;
    background: #f0f7f0;
    border-left: 4px solid hsl(113, 46%, 46%);
    font-size: 0.88rem;
    border-radius: 6px;
}

.gdpr-notice strong {
    color: #222;
    display: block;
    margin-bottom: 8px;
}

.gdpr-notice p {
    margin: 5px 0 0 0;
    color: #444;
    line-height: 1.6;
}

.gdpr-notice a {
    color: hsl(113, 46%, 31%);
    font-weight: 600;
    text-decoration: underline;
}

.contact-info-wrapper {
    padding-left: 30px;
}

.contact-info-wrapper h3 {
    font-family: 'Roboto', sans-serif;
    color: #222;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.info-block {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.info-block h4 {
    font-family: 'Roboto', sans-serif;
    color: hsl(113, 46%, 31%);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-block p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-detail i {
    font-size: 1.4rem;
    color: hsl(113, 46%, 46%);
    margin-right: 15px;
    min-width: 30px;
}

.contact-detail-text {
    color: #333;
}

.contact-detail-text strong {
    display: block;
    color: #222;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.contact-detail-text span {
    color: #555;
    font-size: 1rem;
}

.working-hours {
    background: linear-gradient(135deg, hsl(113, 46%, 46%) 0%, hsl(113, 46%, 31%) 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.working-hours h5 {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.working-hours p {
    margin-bottom: 8px;
    color: #fff;
}

@media (max-width: 991px) {
    .contact-info-wrapper {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .btn-submit {
        padding: 12px 30px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@300;400;600&display=swap');

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

.blog-preview-section .section-title {
font-family: 'Roboto', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
    color: #222;
  text-align: center;
  margin-bottom: 15px;
}

.blog-preview-section .section-subtitle {
  font-size: 1.1rem;
    color: #555;
  text-align: center;
  margin-bottom: 50px;
    font-weight: 300;
}

.blog-card {
  background: white;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 35px;
  height: 100%;
  transition: all 0.4s ease;
    border: 1px solid #e9ecef;
}

.blog-card:hover {
  transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(59, 118, 59, 0.15);
  border-color: hsl(113, 46%, 46%);
}

.blog-meta {
  display: flex;
    flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 0.875rem;
}

.blog-meta-item {
  display: flex;
    align-items: center;
  gap: 6px;
  color: #666;
}

.blog-category {
  background: hsl(113, 46%, 71%);
    color: hsl(113, 46%, 31%);
  padding: 5px 14px;
  border-radius: 20px;
    font-weight: 600;
  font-size: 0.8rem;
    text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card h3 {
  font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
    margin-bottom: 18px;
  line-height: 1.4;
}

.blog-card p {
    color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 0.98rem;
}

.blog-read-more {
  color: hsl(113, 46%, 46%);
    font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
    gap: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.blog-read-more:hover {
    color: hsl(113, 46%, 31%);
  gap: 12px;
}

.blog-read-more::after {
  content: '→';
    font-size: 1.2rem;
}

.view-all-btn {
  display: inline-block;
  margin-top: 50px;
    padding: 16px 45px;
  background: hsl(113, 46%, 46%);
  color: white;
  text-decoration: none;
    border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
    box-shadow: 0 4px 15px rgba(59, 118, 59, 0.25);
}

.view-all-btn:hover {
  background: hsl(113, 46%, 31%);
    color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(59, 118, 59, 0.35);
}

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

@media (max-width: 768px) {
  .blog-preview-section {
    padding: 60px 0;
  }
  
  .blog-preview-section .section-title {
      font-size: 2.2rem;
  }
  
  .blog-card {
    padding: 28px;
      margin-bottom: 30px;
  }
  
  .blog-card h3 {
    font-size: 1.4rem;
  }
}

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

  #advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(113, 46%, 46%) 0%, hsl(113, 46%, 71%) 100%);
  }

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

  .advantages-header h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
    color: #222;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .advantages-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .advantage-card {
    background: white;
    border-radius: 12px;
    padding: 35px 25px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
  }

  .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(113, 147, 90, 0.2);
    border-color: hsl(113, 46%, 71%);
  }

  .advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(113, 46%, 46%) 0%, hsl(113, 46%, 31%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
  }

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

  .advantage-icon i {
    font-size: 32px;
    color: #fff;
  }

  .advantage-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .advantage-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
  }

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

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

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

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

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

.video-section .section-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto 3rem;
  text-align: center;
}

.video-wrapper {
position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.video-overlay {
position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.video-overlay:hover {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.video-overlay .play-button {
  font-size: 5rem;
  color: hsl(113, 46%, 46%);
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.video-overlay:hover .play-button {
  transform: scale(1.15);
  color: hsl(113, 46%, 71%);
}

.video-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.video-cta h3 {
font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}

.video-cta p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 14px 35px;
  background: hsl(113, 46%, 46%);
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
  background: hsl(113, 46%, 31%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  color: #fff;
}

@media (max-width: 768px) {
  .video-section {
    padding: 60px 0;
  }
  
  .video-section .section-title {
    font-size: 2rem;
  }
  
  .video-section .section-description {
    font-size: 1rem;
  }
  
  .video-overlay .play-button {
    font-size: 4rem;
  }
  
  .video-cta h3 {
    font-size: 1.5rem;
  }
}

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

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

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

.services-section .section-header h2 {
font-family: 'Roboto', sans-serif;
  font-size: 2.8rem;
    font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.services-section .section-header p {
  font-size: 1.1rem;
    color: #555;
  max-width: 780px;
    margin: 0 auto;
      line-height: 1.7;
}

.service-card {
background: white;
    border-radius: 12px;
  padding: 35px 30px;
  margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
      border-left: 4px solid hsl(113, 46%, 71%);
}

.service-card:hover {
    transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
      border-left-color: hsl(113, 46%, 46%);
}

.service-icon-wrapper {
  display: flex;
    align-items: flex-start;
  gap: 25px;
}

.service-icon {
  font-size: 2.8rem;
    color: hsl(113, 46%, 46%);
flex-shrink: 0;
      width: 70px;
  height: 70px;
    display: flex;
  align-items: center;
      justify-content: center;
  background: hsl(113, 46%, 95%);
    border-radius: 50%;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: hsl(113, 46%, 46%);
  color: white;
      transform: rotate(10deg) scale(1.1);
}

.service-content {
  flex: 1;
}

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

.service-content p {
  color: #666;
    font-size: 0.98rem;
  line-height: 1.8;
      margin-bottom: 20px;
}

.service-price {
  display: inline-block;
    background: hsl(113, 46%, 95%);
  color: hsl(113, 46%, 31%);
      padding: 8px 20px;
  border-radius: 25px;
    font-weight: 600;
  font-size: 1.05rem;
}

.service-card:hover .service-price {
    background: hsl(113, 46%, 46%);
  color: white;
}

@media (max-width: 768px) {
  .services-section {
      padding: 50px 0;
  }
  
  .services-section .section-header h2 {
      font-size: 2.2rem;
  }
  
  .service-icon-wrapper {
      flex-direction: column;
    gap: 15px;
  }
  
    .service-icon {
    margin: 0 auto;
  }
  
  .service-content {
      text-align: center;
  }
}

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

.about-section {
  font-family: 'Open Sans', sans-serif;
    background: #ffffff;
  padding: 0;
    margin: 0;
}

.about-hero-image {
  width: 100%;
    height: 450px;
  object-fit: cover;
    display: block;
  margin-bottom: 0;
}

.about-content-wrapper {
    max-width: 1140px;
  margin: 0 auto;
  padding: 80px 20px 70px;
}

.about-main-title {
  font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
  font-weight: 700;
    color: #222;
  text-align: center;
    margin-bottom: 25px;
  line-height: 1.3;
}

.about-intro-text {
    font-size: 1.15rem;
  color: #555;
    text-align: center;
  max-width: 850px;
    margin: 0 auto 60px;
  line-height: 1.7;
}

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

.about-text-block {
    background: #f8f9fa;
  padding: 40px 35px;
    border-radius: 8px;
}

.about-block-title {
  font-family: 'Roboto', sans-serif;
    font-size: 1.9rem;
  color: hsl(113, 46%, 31%);
    margin-bottom: 20px;
  font-weight: 700;
}

.about-block-text {
    font-size: 1.05rem;
  color: #444;
    line-height: 1.8;
  margin-bottom: 15px;
}

.about-secondary-image {
    width: 100%;
  height: 100%;
    object-fit: cover;
  border-radius: 8px;
    min-height: 400px;
}

.about-values-section {
  background: hsl(113, 46%, 46%);
    padding: 55px 40px;
  border-radius: 10px;
    margin-bottom: 60px;
}

.about-values-title {
    font-family: 'Roboto', sans-serif;
  font-size: 2.2rem;
    color: white;
  text-align: center;
    margin-bottom: 40px;
  font-weight: 700;
}

.about-values-grid {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.about-value-item {
  text-align: center;
    padding: 25px 15px;
}

.about-value-icon {
    font-size: 2.5rem;
  margin-bottom: 18px;
}

.about-value-name {
  font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
  color: #fff;
    margin-bottom: 12px;
  font-weight: 600;
}

.about-value-description {
    font-size: 0.98rem;
  color: #f5f5f5;
    line-height: 1.6;
}

.about-story-section {
    background: #ffffff;
  padding: 50px 45px;
    border: 2px solid hsl(113, 46%, 71%);
  border-radius: 8px;
}

.about-story-title {
  font-family: 'Roboto', sans-serif;
    font-size: 2rem;
  color: hsl(113, 46%, 31%);
    margin-bottom: 25px;
  font-weight: 700;
}

.about-story-text {
  font-size: 1.05rem;
    color: #444;
  line-height: 1.8;
    margin-bottom: 18px;
}

@media (max-width: 992px) {
  .about-grid-container {
      grid-template-columns: 1fr;
    gap: 40px;
  }
  
    .about-values-grid {
    grid-template-columns: 1fr;
      gap: 25px;
  }
  
  .about-main-title {
      font-size: 2.2rem;
  }
  
    .about-hero-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
    .about-content-wrapper {
    padding: 50px 15px;
  }
  
    .about-main-title {
    font-size: 1.9rem;
  }
  
  .about-text-block {
      padding: 30px 25px;
  }
  
    .about-values-section {
    padding: 40px 25px;
  }
  
  .about-story-section {
      padding: 35px 25px;
  }
}

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

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

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

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

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

.faq-tab-btn {
  padding: 12px 28px;
  background: white;
  border: 2px solid hsl(113, 46%, 46%);
  color: hsl(113, 46%, 31%);
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-tab-btn:hover {
  background: hsl(113, 46%, 71%);
  border-color: hsl(113, 46%, 71%);
  color: #222;
}

.faq-tab-btn.active {
  background: hsl(113, 46%, 46%);
  border-color: hsl(113, 46%, 46%);
  color: white;
}

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

.faq-group {
  display: none;
}

.faq-group.active {
  display: block;
}

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

.faq-item:hover {
  box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.faq-question {
  padding: 25px 30px;
  background: white;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Roboto', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question::after {
  content: '+';
  font-size: 1.8rem;
  color: hsl(113, 46%, 46%);
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 30px;
}

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

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-section .section-title {
    font-size: 2rem;
  }
  
  .faq-tab-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

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

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

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

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

.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 25px;
font-size: 32px;
color: #ffffff;
}

.newsletter-title {
font-family: 'Roboto', sans-serif;
font-size: 2.5rem;
font-weight: 700;
color: #fff;
margin-bottom: 18px;
line-height: 1.2;
}

.newsletter-subtitle {
font-family: 'Open Sans', sans-serif;
font-size: 1.15rem;
color: rgba(255,255,255,0.9);
margin-bottom: 35px;
line-height: 1.6;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

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

.form-group-newsletter {
display: flex;
gap: 12px;
margin-bottom: 0;
}

.newsletter-input {
flex: 1;
padding: 16px 24px;
border: 2px solid rgba(255,255,255,0.2);
border-radius: 50px;
font-family: 'Open Sans', sans-serif;
font-size: 1rem;
background: rgba(255,255,255,0.95);
color: #333;
transition: all 0.3s ease;
}

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

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

.newsletter-btn {
padding: 16px 40px;
background: #ffffff;
color: hsl(113, 46%, 31%);
border: none;
border-radius: 50px;
font-family: 'Roboto', sans-serif;
font-size: 1.05rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
white-space: nowrap;
}

.newsletter-btn:hover {
background: hsl(113, 46%, 71%);
color: #222;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

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

.benefit-icon {
width: 24px;
height: 24px;
background: rgba(255,255,255,0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
flex-shrink: 0;
}

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

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

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

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

.newsletter-btn {
width: 100%;
}

.newsletter-benefits {
gap: 20px;
}

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@300;400;600&display=swap');

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

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

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

  #statistics .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    padding: 0 15px;
  }

  .stat-item {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(113, 117, 73, 0.15);
    border-color: hsl(113, 46%, 71%);
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, hsl(113, 46%, 46%) 0%, hsl(113, 46%, 31%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
  }

  .stat-number {
    font-family: 'Roboto', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(113, 46%, 31%);
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

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

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

    .stat-item {
      padding: 28px 20px;
    }

    .stat-icon {
      width: 60px;
      height: 60px;
      font-size: 28px;
    }

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

  @media (max-width: 576px) {
    .stats-container {
      grid-template-columns: 1fr;
    }
  }

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

#testimonials {
  font-family: 'Open Sans', sans-serif;
  padding: 80px 0;
background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

#testimonials h2 {
font-family: 'Roboto', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 15px;
}

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

.testimonials-scroll-container {
  position: relative;
  height: 600px;
overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonials-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
  animation: scrollTestimonials 40s linear infinite;
}

.testimonials-column:nth-child(2) {
animation-duration: 45s;
  animation-delay: -5s;
}

.testimonials-column:nth-child(3) {
  animation-duration: 38s;
animation-delay: -10s;
}

@keyframes scrollTestimonials {
  0% {
    transform: translateY(0);
  }
  100% {
transform: translateY(-50%);
  }
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(113,132,113,0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border-color: hsl(113, 46%, 71%);
}

.testimonial-header {
  display: flex;
justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.testimonial-info h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.testimonial-location {
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.testimonial-location i {
  color: hsl(113, 46%, 46%);
}

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

.testimonial-rating i {
font-size: 1rem;
  color: #ffa500;
}

.testimonial-text {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.testimonial-date {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
}

@media (max-width: 768px) {
  #testimonials {
    padding: 60px 0;
  }
  
  #testimonials h2 {
    font-size: 2.2rem;
  }
  
  .testimonials-scroll-container {
height: 500px;
  }
  
  .testimonial-card {
    padding: 22px;
  }
}

.disclaimer-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  font-family: 'Open Sans', sans-serif;
}

.disclaimer-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}

.disclaimer-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.disclaimer-icon {
  font-size: 3.5rem;
  color: hsl(113, 46%, 46%);
  margin-bottom: 1.2rem;
  display: inline-block;
}

.disclaimer-title {
  font-family: 'Roboto', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}

.disclaimer-content {
  background: white;
  padding: 2.5rem 2.8rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(113, 46%, 46%);
}

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

.disclaimer-text strong {
  color: hsl(113, 46%, 31%);
  font-weight: 600;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 3rem 0;
  }
  
  .disclaimer-title {
    font-size: 1.8rem;
  }
  
  .disclaimer-content {
    padding: 2rem 1.5rem;
  }
  
  .disclaimer-icon {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .disclaimer-content {
    padding: 1.5rem 1.2rem;
  }
  
  .disclaimer-text {
    font-size: 0.95rem;
  }
}

.privacy-policy {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.8;
        color: #2c3e50;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    }
    
    .privacy-header {
        text-align: center;
        margin-bottom: 50px;
        padding-bottom: 30px;
        border-bottom: 3px solid #3498db;
    }
    
    .privacy-header h1 {
        font-size: 2.5em;
        color: #1a252f;
        margin-bottom: 15px;
        font-weight: 700;
    }
    
    .last-updated {
        font-size: 0.95em;
        color: #7f8c8d;
        font-style: italic;
    }
    
    .privacy-intro {
        background: #e8f4f8;
        padding: 25px;
        border-left: 5px solid #3498db;
        margin-bottom: 40px;
        border-radius: 5px;
    }
    
    .privacy-section {
        margin-bottom: 40px;
        background: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    
    .privacy-section h2 {
        font-size: 1.8em;
        color: #2c3e50;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #ecf0f1;
        font-weight: 600;
    }
    
    .privacy-section h3 {
        font-size: 1.3em;
        color: #34495e;
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .privacy-section p {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .privacy-section ul, .privacy-section ol {
        margin-left: 20px;
        margin-bottom: 20px;
    }
    
    .privacy-section li {
        margin-bottom: 12px;
        padding-left: 10px;
    }
    
    .highlight-box {
        background: #fff3cd;
        border-left: 4px solid #ffc107;
        padding: 20px;
        margin: 20px 0;
        border-radius: 5px;
    }
    
    .info-box {
        background: #d1ecf1;
        border-left: 4px solid #17a2b8;
        padding: 20px;
        margin: 20px 0;
        border-radius: 5px;
    }
    
    .rights-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin: 25px 0;
    }
    
    .right-item {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        border-left: 4px solid #28a745;
    }
    
    .right-item h4 {
        color: #28a745;
        margin-bottom: 10px;
        font-size: 1.1em;
    }
    
    .platform-disclosure {
        background: #f5f5f5;
        padding: 15px;
        margin: 15px 0;
        border-radius: 5px;
        border-left: 3px solid #6c757d;
    }
    
    .company-info {
        background: #e9ecef;
        padding: 25px;
        border-radius: 8px;
        margin-top: 40px;
        text-align: center;
    }
    
    strong {
        color: #2c3e50;
        font-weight: 600;
    }
    
    @media (max-width: 768px) {
        .privacy-policy {
            padding: 20px 15px;
        }
        
        .privacy-header h1 {
            font-size: 2em;
        }
        
        .privacy-section {
            padding: 20px;
        }
        
        .rights-grid {
            grid-template-columns: 1fr;
        }
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 20px 0;
  }
  
  .header-section {
    background: linear-gradient(135deg, #ed1c24 0%, #dc143c 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  
  .header-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }
  
  .header-section .subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 20px;
  }
  
  .sg-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
  }
  
  .entity-banner {
    background: linear-gradient(135deg, hsl(113, 46%, 46%) 0%, hsl(113, 46%, 31%) 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
  
  .entity-banner h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    word-wrap: break-word;
  }
  
  .entity-banner .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
  }
  
  .info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
  
  .card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(113, 46%, 31%);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid hsl(113, 46%, 71%);
  }
  
  .info-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    flex-wrap: wrap;
  }
  
  .info-row:last-child {
    border-bottom: none;
  }
  
  .info-label {
    flex: 0 0 40%;
    font-weight: 600;
    color: #495057;
    padding-right: 15px;
  }
  
  .info-value {
    flex: 0 0 60%;
    color: #212529;
  }
  
  .status-active {
    color: #27ae60;
    font-weight: 700;
  }
  
  .status-active::before {
    content: '✓ ';
    font-weight: 900;
  }
  
  .excellence-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 30px;
    text-align: center;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
  
  .excellence-footer h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .excellence-footer p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
  }
  
  @media (max-width: 768px) {
    .header-section h1 {
      font-size: 1.8rem;
    }
    
    .entity-banner h2 {
      font-size: 1.6rem;
    }
    
    .info-label,
    .info-value {
      flex: 0 0 100%;
    }
    
    .info-label {
      margin-bottom: 5px;
    }
    
    .card-title {
      font-size: 1.5rem;
    }
  }
  
  .container {
    max-width: 1200px;
  }

.terms-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
        font-family: 'Georgia', serif;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }
    
    .terms-header {
        text-align: center;
        margin-bottom: 50px;
        padding: 40px 20px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .terms-header h1 {
        font-size: 2.8em;
        color: #1a1a2e;
        margin-bottom: 15px;
        font-weight: 700;
        letter-spacing: -1px;
    }
    
    .terms-header .effective-date {
        font-size: 1.1em;
        color: #666;
        font-style: italic;
    }
    
    .terms-content {
        background: white;
        padding: 50px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        line-height: 1.8;
    }
    
    .terms-section {
        margin-bottom: 45px;
        padding-bottom: 35px;
        border-bottom: 2px solid #e8e8e8;
    }
    
    .terms-section:last-child {
        border-bottom: none;
    }
    
    .terms-section h2 {
        font-size: 1.9em;
        color: #2c3e50;
        margin-bottom: 20px;
        padding-left: 20px;
        border-left: 5px solid #3498db;
        font-weight: 600;
    }
    
    .terms-section h3 {
        font-size: 1.4em;
        color: #34495e;
        margin: 25px 0 15px 0;
        font-weight: 600;
    }
    
    .terms-section p {
        color: #444;
        font-size: 1.05em;
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .terms-section ul {
        list-style: none;
        padding-left: 0;
        margin: 20px 0;
    }
    
    .terms-section ul li {
        padding: 12px 0 12px 35px;
        position: relative;
        color: #555;
        font-size: 1.05em;
    }
    
    .terms-section ul li:before {
        content: "▸";
        position: absolute;
        left: 10px;
        color: #3498db;
        font-size: 1.3em;
        font-weight: bold;
    }
    
    .highlight-box {
        background: #f8f9fa;
        border-left: 4px solid #e74c3c;
        padding: 20px 25px;
        margin: 25px 0;
        border-radius: 5px;
    }
    
    .highlight-box p {
        margin: 0;
        color: #2c3e50;
        font-weight: 500;
    }
    
    .definition-term {
        font-weight: 600;
        color: #2c3e50;
    }
    
    @media (max-width: 768px) {
        .terms-content {
            padding: 30px 20px;
        }
        
        .terms-header h1 {
            font-size: 2em;
        }
        
        .terms-section h2 {
            font-size: 1.5em;
        }
    }