@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Crimson Text', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background: white;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Work Sans', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            color: hsl(100, 66%, 32%);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: hsl(100, 66%, 27%);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Work Sans', sans-serif;
            color: rgb(51, 51, 51);
            font-weight: 500;
            padding: 0.5rem 1.1rem;
            transition: color 0.3s;
            font-size: 15px;
        }
        
        .navbar-nav .nav-link:hover {
            color: hsl(100, 66%, 32%);
        }
        
        .navbar-toggler {
            border: 2px solid hsl(100, 66%, 32%);
            padding: 0.4rem 0.6rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(92, 153, 50, 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(100, 66%25, 32%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: #fff;
                padding: 1.5rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                padding: 0.7rem 0;
                border-bottom: 1px solid #f0f0f0;
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

    .cookies-policy h1 {
        font-size: 2.8em;
        color: #1a252f;
        text-align: center;
        margin-bottom: 20px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .last-updated {
        text-align: center;
        font-style: italic;
        color: #7f8c8d;
        margin-bottom: 40px;
        font-size: 0.95em;
    }

    .intro-text {
        background: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
        border-left: 5px solid #667eea;
    }

    .cookies-policy h2 {
        font-size: 2em;
        color: #34495e;
        margin-top: 40px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 3px solid #667eea;
        font-weight: 600;
    }

    .cookies-policy h3 {
        font-size: 1.4em;
        color: #5a6c7d;
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 600;
        position: relative;
        padding-left: 20px;
    }

    .cookies-policy h3:before {
        content: "▶";
        position: absolute;
        left: 0;
        color: #667eea;
        font-size: 0.8em;
    }

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

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

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

    .cookie-type h4 {
        margin: 0 0 10px 0;
        font-size: 1.3em;
        font-weight: 600;
    }

    .cookie-type p {
        margin: 0;
        line-height: 1.6;
        opacity: 0.95;
    }

    .cookies-policy ul {
        list-style: none;
        padding-left: 0;
        margin: 20px 0;
    }

    .cookies-policy ul li {
        padding: 12px 0 12px 35px;
        position: relative;
        border-bottom: 1px solid #ecf0f1;
        transition: background 0.3s ease;
    }

    .cookies-policy ul li:hover {
        background: #f8f9fa;
        padding-left: 40px;
    }

    .cookies-policy ul li:before {
        content: "🍪";
        position: absolute;
        left: 5px;
        font-size: 1.2em;
    }

    .consent-box {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        color: white;
        padding: 30px;
        border-radius: 15px;
        margin: 30px 0;
        box-shadow: 0 10px 30px rgba(245, 87, 108, 0.3);
    }

    .consent-box h3 {
        color: white;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
        padding-bottom: 10px;
        padding-left: 0;
    }

    .consent-box h3:before {
        color: white;
    }

    .highlight-box {
        background: #fff3cd;
        border-left: 5px solid #ffc107;
        padding: 20px;
        margin: 20px 0;
        border-radius: 5px;
        box-shadow: 0 3px 10px rgba(255, 193, 7, 0.2);
    }

    .control-section {
        background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
        padding: 25px;
        border-radius: 10px;
        margin: 25px 0;
    }

    .gdpr-badge {
        display: inline-block;
        background: #27ae60;
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 0.9em;
        margin: 10px 5px;
        box-shadow: 0 3px 10px rgba(39, 174, 96, 0.3);
    }

    .table-container {
        overflow-x: auto;
        margin: 25px 0;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    table {
        width: 100%;
        border-collapse: collapse;
        background: white;
    }

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

    td {
        padding: 15px;
        border-bottom: 1px solid #ecf0f1;
    }

    tr:hover {
        background: #f8f9fa;
    }

    .important-notice {
        background: #e8f5e9;
        border: 2px solid #4caf50;
        padding: 20px;
        border-radius: 10px;
        margin: 25px 0;
    }

    @media (max-width: 768px) {
        .cookies-policy {
            padding: 20px 10px;
        }

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

        .cookies-policy h2 {
            font-size: 1.5em;
        }

        .content-block {
            padding: 20px;
        }
    }

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

footer {
  background: hsl(100, 66%, 17%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  font-family: 'Crimson Text', serif;
  margin-top: 80px;
}

footer h4 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(100, 66%, 57%);
  margin-bottom: 25px;
  font-size: 1.4rem;
}

footer p, footer li, footer a {
  color: #f8f9fa;
  line-height: 1.8;
  font-size: 1.05rem;
}

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

footer a:hover {
  color: hsl(100, 66%, 57%);
}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer ul li {
  margin-bottom: 12px;
}

.footer-description {
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
}

.contact-info i {
  margin-right: 10px;
  color: hsl(100, 66%, 57%);
}

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

#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(100, 66%, 32%);
}

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

.cookie-content p {
  color: #555;
  font-family: 'Crimson Text', serif;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.cookie-categories li {
  padding: 8px 0;
  color: #333;
  font-family: 'Crimson Text', serif;
}

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

.cookie-required {
  color: hsl(100, 66%, 32%);
  font-size: 0.9em;
  font-weight: 600;
}

.cookie-optional {
  color: #666;
  font-size: 0.9em;
}

.btn-accept-all {
  background: hsl(100, 66%, 32%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-right: 10px;
}

.btn-accept-all:hover {
  background: hsl(100, 66%, 27%);
  transform: translateY(-2px);
}

.btn-reject {
  background: #6c757d;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-right: 10px;
}

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

.btn-manage {
  color: hsl(100, 66%, 32%);
  text-decoration: underline;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 12px 20px;
  display: inline-block;
}

.btn-manage:hover {
  color: hsl(100, 66%, 27%);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  #cookieNotice {
    padding: 20px 0;
  }
  
  .btn-accept-all, .btn-reject {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
  
  .btn-manage {
    display: block;
    text-align: center;
  }
}

.blog-page {
            padding: 4rem 0;
        }
        .blog-page h1 {
            margin-bottom: 3rem;
            text-align: center;
            color: hsl(100, 66%, 32%);
        }
        .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(100, 66%, 32%);
        }
        .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(100, 66%, 57%);
        }
        .blog-read-more {
            background-color: hsl(100, 66%, 32%);
            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(100, 66%, 57%);
            color: white;
            transform: translateX(5px);
        }

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

.hero-section {
  padding: 80px 0 60px;
  background: #f8f9fa;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-text {
  flex: 1;
  padding-right: 20px;
}

.hero-text h1 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: hsl(100, 66%, 17%);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: hsl(100, 66%, 32%);
  margin-bottom: 25px;
}

.hero-text p {
  font-family: 'Crimson Text', serif;
  font-size: 1.15rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
}

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

.hero-benefits li {
  font-family: 'Crimson Text', serif;
  font-size: 1.1rem;
  color: #222;
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
}

.hero-benefits li::before {
  content: "\F26B";
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: hsl(100, 66%, 32%);
  font-size: 1.3rem;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.btn-primary-custom {
  background-color: hsl(100, 66%, 32%);
  color: white;
  padding: 14px 32px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: hsl(100, 66%, 17%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary-custom {
  background: transparent;
  color: hsl(100, 66%, 32%);
  padding: 14px 32px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  border: 2px solid hsl(100, 66%, 32%);
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
  background-color: hsl(100, 66%, 32%);
  color: white;
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .hero-text {
    padding-right: 0;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text h2 {
    font-size: 1.3rem;
  }
}

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

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(100, 66%, 32%) 0%, hsl(100, 66%, 17%) 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: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.newsletter-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.newsletter-subtitle {
  font-family: 'Crimson Text', serif;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 35px;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  background: hsl(100, 66%, 57%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon::after {
  content: '✓';
  color: hsl(100, 66%, 17%);
  font-weight: bold;
  font-size: 14px;
}

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

.email-input {
  flex: 1;
  min-width: 280px;
  padding: 18px 25px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
  background: rgba(255,255,255,0.95);
  color: #333;
  transition: all 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: hsl(100, 66%, 57%);
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.email-input::placeholder {
  color: rgb(150, 150, 150);
}

.subscribe-btn {
  padding: 18px 45px;
  background: hsl(100, 66%, 57%);
  color: hsl(100, 66%, 17%);
  border: none;
  border-radius: 8px;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.subscribe-btn:hover {
  background: hsl(100, 66%, 62%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

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

.privacy-note {
  margin-top: 25px;
  font-family: 'Crimson Text', serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 60px 0;
  }
  
  .newsletter-title {
    font-size: 2.2rem;
  }
  
  .newsletter-subtitle {
    font-size: 1.1rem;
  }
  
  .benefits-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    min-width: 100%;
  }
  
  .subscribe-btn {
    width: 100%;
  }
}

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

#blog {
  padding: 80px 0;
  background: #f8f9fa;
  font-family: 'Crimson Text', serif;
}

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

#blog .section-header h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

#blog .section-header p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

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

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

.blog-card.featured {
  grid-row: span 2;
}

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

.blog-card.featured .blog-card-content {
  padding: 45px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.blog-category {
  display: inline-block;
  padding: 6px 16px;
  background: hsl(100, 66%, 57%);
  color: #fff;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-date {
  color: #777;
  font-size: 0.95rem;
}

.blog-read-time {
  color: #888;
  font-size: 0.9rem;
  margin-left: auto;
}

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

.blog-card.featured h3 {
  font-size: 2.3rem;
  margin-bottom: 22px;
}

.blog-card p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.blog-card.featured p {
  font-size: 1.15rem;
  line-height: 1.8;
}

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

.blog-link:hover {
  color: hsl(100, 66%, 17%);
}

.blog-link svg {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

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

.blog-cta {
  text-align: center;
  margin-top: 20px;
}

.btn-view-all {
  display: inline-block;
  padding: 16px 45px;
  background: hsl(100, 66%, 32%);
  color: white;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid hsl(100, 66%, 32%);
}

.btn-view-all:hover {
  background: hsl(100, 66%, 17%);
  border-color: hsl(100, 66%, 17%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  color: #fff;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-card.featured {
    grid-row: span 1;
  }
  
  #blog .section-header h2 {
    font-size: 2.3rem;
  }
  
  .blog-card h3 {
    font-size: 1.5rem;
  }
  
  .blog-card.featured h3 {
    font-size: 1.9rem;
  }
}

@media (max-width: 576px) {
  #blog {
    padding: 60px 0;
  }
  
  #blog .section-header h2 {
    font-size: 2rem;
  }
  
  .blog-card-content {
    padding: 25px;
  }
  
  .blog-card.featured .blog-card-content {
    padding: 30px;
  }
  
  .blog-meta {
    gap: 12px;
  }
  
  .blog-read-time {
    margin-left: 0;
    width: 100%;
  }
}

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

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

#statistics::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(100, 66%, 57%);
  opacity: 0.05;
  border-radius: 50%;
}

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

.stats-header h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(100, 66%, 17%);
  margin-bottom: 15px;
}

.stats-header p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

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

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

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

.stat-icon {
  font-size: 3rem;
  color: hsl(100, 66%, 32%);
  margin-bottom: 20px;
}

.stat-number {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.2;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
  font-weight: 600;
}

.stat-card:nth-child(2) {
  border-top-color: hsl(100, 66%, 57%);
}

.stat-card:nth-child(3) {
  border-top-color: hsl(100, 66%, 17%);
}

.stat-card:nth-child(4) {
  border-top-color: hsl(100, 66%, 32%);
}

.stat-card:nth-child(5) {
  border-top-color: hsl(100, 66%, 57%);
}

.stat-card:nth-child(6) {
  border-top-color: hsl(100, 66%, 17%);
}

.stat-card:nth-child(7) {
  border-top-color: hsl(100, 66%, 32%);
}

.stat-card:nth-child(8) {
  border-top-color: hsl(100, 66%, 57%);
}

.stat-card:nth-child(9) {
  border-top-color: hsl(100, 66%, 17%);
}

.stat-card:nth-child(10) {
  border-top-color: hsl(100, 66%, 32%);
}

.stat-card:nth-child(11) {
  border-top-color: hsl(100, 66%, 57%);
}

.stat-card:nth-child(12) {
  border-top-color: hsl(100, 66%, 17%);
}

.stat-card:nth-child(13) {
  border-top-color: hsl(100, 66%, 32%);
}

.progress-stat {
  background: hsl(100, 66%, 17%);
  padding: 40px 30px;
  border-radius: 15px;
  color: white;
  margin-top: 40px;
}

.progress-stat h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
}

.progress-item {
  margin-bottom: 25px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.progress-bar-custom {
  height: 12px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: hsl(100, 66%, 57%);
  border-radius: 10px;
  transition: width 1.5s ease;
}

@media (max-width: 768px) {
  #statistics {
    padding: 60px 0;
  }
  
  .stats-header h2 {
    font-size: 2.2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

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

.promo-offer-section {
  font-family: 'Crimson Text', 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, rgba(100, 166, 57, 0.1) 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, rgba(52, 87, 29, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

.promo-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.promo-header {
background: linear-gradient(135deg, hsl(100, 66%, 32%) 0%, hsl(100, 66%, 17%) 100%);
  padding: 50px 40px;
  text-align: center;
  position: relative;
}

.promo-badge {
  display: inline-block;
  background: hsl(100, 66%, 57%);
  color: #222;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.promo-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.promo-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0;
}

.promo-body {
padding: 50px 40px;
}

.promo-description {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 35px;
  text-align: center;
}

.deadline-block {
  background: linear-gradient(135deg, #fff9e6 0%, #fff3d6 100%);
  border: 3px dashed hsl(100, 66%, 32%);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin-bottom: 40px;
}

.deadline-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.deadline-date {
  font-family: 'Work Sans', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: hsl(100, 66%, 17%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.deadline-date i {
  font-size: 38px;
  color: hsl(100, 66%, 32%);
}

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

.benefit-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid hsl(100, 66%, 32%);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-left-color: hsl(100, 66%, 57%);
}

.benefit-icon {
  font-size: 32px;
  color: hsl(100, 66%, 32%);
  margin-bottom: 15px;
}

.benefit-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.benefit-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

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

.promo-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, hsl(100, 66%, 32%) 0%, hsl(100, 66%, 17%) 100%);
  color: white;
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(52, 87, 29, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(52, 87, 29, 0.4);
  background: linear-gradient(135deg, hsl(100, 66%, 37%) 0%, hsl(100, 66%, 22%) 100%);
  color: #fff;
}

.discount-highlight {
  background: hsl(100, 66%, 57%);
  color: #222;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .promo-offer-section {
    padding: 60px 0;
  }
  
  .promo-header {
    padding: 40px 25px;
  }
  
  .promo-title {
    font-size: 36px;
  }
  
  .promo-body {
    padding: 40px 25px;
  }
  
  .deadline-date {
    font-size: 32px;
    flex-direction: column;
    gap: 10px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

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

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

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(100, 66%, 57%);
  opacity: 0.05;
  border-radius: 50%;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(100, 66%, 32%);
  opacity: 0.04;
  border-radius: 50%;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.contact-header h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(100, 66%, 17%);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.contact-header p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.contact-form-wrapper {
  background: white;
  padding: 45px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border-top: 4px solid hsl(100, 66%, 32%);
}

.contact-info-card {
  background: white;
  padding: 35px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.06);
  margin-bottom: 25px;
  border-left: 3px solid hsl(100, 66%, 57%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 35px rgba(0,0,0,0.1);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, hsl(100, 66%, 32%), hsl(100, 66%, 57%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: white;
  font-size: 1.4rem;
}

.contact-info-card h4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 12px;
  font-weight: 600;
}

.contact-info-card p {
  color: #666;
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-info-card a {
  color: hsl(100, 66%, 32%);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: hsl(100, 66%, 57%);
}

.form-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-control, .form-select {
  border: 2px solid #e0e0e0;
  padding: 12px 15px;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: 'Crimson Text', serif;
  color: #333;
  background-color: #fff;
}

.form-control:focus, .form-select:focus {
  border-color: hsl(100, 66%, 32%);
  box-shadow: 0 0 0 0.2rem rgba(89, 149, 47, 0.15);
  outline: none;
}

.form-control::placeholder {
  color: #999;
}

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

.submit-btn {
  background: linear-gradient(135deg, hsl(100, 66%, 32%), hsl(100, 66%, 57%));
  color: white;
  border: none;
  padding: 14px 45px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Work Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(89, 149, 47, 0.3);
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(89, 149, 47, 0.4);
  background: linear-gradient(135deg, hsl(100, 66%, 37%), hsl(100, 66%, 62%));
}

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

.process-info {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
  border-left: 4px solid hsl(100, 66%, 32%);
}

.process-info h4 {
  font-family: 'Work Sans', sans-serif;
  color: #222;
  font-size: 1.4rem;
  margin-bottom: 18px;
  font-weight: 600;
}

.process-step {
  display: flex;
  align-items: start;
  margin-bottom: 20px;
}

.step-number {
  width: 35px;
  height: 35px;
  background: hsl(100, 66%, 32%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
  font-family: 'Work Sans', sans-serif;
}

.step-content h5 {
  font-family: 'Work Sans', sans-serif;
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 600;
}

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

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

.form-check-label a {
  color: hsl(100, 66%, 32%);
  text-decoration: underline;
}

.form-check-label a:hover {
  color: hsl(100, 66%, 57%);
}

.gdpr-notice {
  margin-top: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-left: 4px solid hsl(100, 66%, 32%);
  font-size: 0.9rem;
  border-radius: 5px;
}

.gdpr-notice strong {
  color: #222;
  font-family: 'Work Sans', sans-serif;
}

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

.gdpr-notice a {
  color: hsl(100, 66%, 32%);
  text-decoration: underline;
}

.gdpr-notice a:hover {
  color: hsl(100, 66%, 57%);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-header h2 {
    font-size: 2.2rem;
  }
  
  .contact-form-wrapper {
    padding: 30px 25px;
    margin-bottom: 30px;
  }
  
  .contact-info-card {
    padding: 25px 20px;
  }
}

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

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

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

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

.faq-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid hsl(100, 66%, 57%);
}

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

.faq-question {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: hsl(100, 66%, 32%);
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.faq-question::before {
  content: "Q:";
  font-weight: 700;
  margin-right: 12px;
  color: hsl(100, 66%, 17%);
  flex-shrink: 0;
}

.faq-answer {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  padding-left: 32px;
}

.faq-answer strong {
  color: hsl(100, 66%, 32%);
  font-weight: 600;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }
  
  .faq-section .section-title {
    font-size: 2rem;
  }
  
  .faq-card {
    padding: 20px;
  }
  
  .faq-question {
    font-size: 1.1rem;
  }
  
  .faq-answer {
    font-size: 1rem;
    padding-left: 20px;
  }
}

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

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

.video-section .section-header {
font-family: 'Work Sans', sans-serif;
  text-align: center;
  margin-bottom: 50px;
}

.video-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(100, 66%, 17%);
  margin-bottom: 20px;
  font-family: 'Work Sans', sans-serif;
}

.video-section .section-description {
  font-size: 1.15rem;
  color: #333;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.8;
}

.video-container-wrapper {
  max-width: 1000px;
  margin: 0 auto 40px;
  position: relative;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

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

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

.play-button {
  font-size: 5rem;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.video-overlay:hover .play-button {
  transform: scale(1.15);
  color: hsl(100, 66%, 57%);
}

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

.video-cta-text {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 25px;
  line-height: 1.7;
}

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

.cta-button:hover {
  background: hsl(100, 66%, 17%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  text-decoration: none;
}

@media (max-width: 768px) {
  .video-section {
    padding: 60px 0;
  }
  
  .video-section .section-title {
    font-size: 2.2rem;
  }
  
  .video-section .section-description {
    font-size: 1.05rem;
  }
  
  .play-button {
    font-size: 4rem;
  }
  
  .video-cta-text {
    font-size: 1.1rem;
  }
}

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

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

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

.testimonials-section .section-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(100, 66%, 17%);
  margin-bottom: 15px;
}

.testimonials-section .section-subtitle {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s;
  border-left: 4px solid hsl(100, 66%, 57%);
}

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

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

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

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

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

.rating-stars i {
  color: hsl(100, 66%, 57%);
  font-size: 1rem;
}

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

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

@media(max-width: 768px) {
  .testimonials-section {
    padding: 50px 0;
  }
  
  .testimonials-section .section-title {
    font-size: 2rem;
  }
  
  .testimonial-card {
    margin-bottom: 25px;
  }
}

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

.services-section {
  padding: 85px 0 90px;
  background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
  font-family: 'Crimson Text', serif;
}

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

.services-section .section-title {
font-family: 'Work Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.services-section .section-subtitle {
  font-size: 1.25rem;
  color: rgb(102, 102, 102);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

.service-card {
background: white;
  border-radius: 12px;
  padding: 40px 28px;
  height: 100%;
  transition: all 0.35s ease;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(83, 138, 53, 0.15);
  border-color: hsl(100, 66%, 57%);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(100, 66%, 32%) 0%, hsl(100, 66%, 42%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, hsl(100, 66%, 57%) 0%, hsl(100, 66%, 47%) 100%);
  transform: rotate(10deg) scale(1.1);
}

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

.service-title {
  font-family: 'Work Sans', sans-serif;
font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.service-description {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 22px;
}

.service-price {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: hsl(100, 66%, 32%);
  margin-bottom: 8px;
}

.service-terms {
  font-size: 0.95rem;
  color: #777;
  font-style: italic;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .services-section .section-title {
    font-size: 2.2rem;
  }
  
  .service-card {
    margin-bottom: 25px;
  }
}

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

.advantages-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
  font-family: 'Crimson Text', serif;
}

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

.advantages-section .section-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(100, 66%, 17%);
  margin-bottom: 15px;
}

.advantages-section .section-subtitle {
  font-size: 1.2em;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.advantage-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
}

.advantage-item.reverse {
  flex-direction: row-reverse;
}

.advantage-icon-wrapper {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, hsl(100, 66%, 32%) 0%, hsl(100, 66%, 57%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(82, 136, 42, 0.3);
  transition: all 0.4s ease;
}

.advantage-item:hover .advantage-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(82, 136, 42, 0.45);
}

.advantage-icon-wrapper i {
  font-size: 3.5rem;
  color: white;
}

.advantage-content {
  flex: 1;
  background: white;
  padding: 35px 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover .advantage-content {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.advantage-content h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: hsl(100, 66%, 17%);
  margin-bottom: 18px;
}

.advantage-content p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .advantage-item,
  .advantage-item.reverse {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  
  .advantage-icon-wrapper {
    width: 100px;
    height: 100px;
  }
  
  .advantage-icon-wrapper i {
    font-size: 3rem;
  }
  
  .advantages-section .section-title {
    font-size: 2.2rem;
  }
  
  .advantage-content {
    padding: 25px 30px;
  }
  
  .advantage-content h3 {
    font-size: 1.5rem;
  }
}

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

.about-section {
  padding: 80px 0;
  background: #ffffff;
  font-family: 'Crimson Text', serif;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

.about-image-wrapper {
  flex: 0 0 45%;
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text-content {
  flex: 1;
  padding-left: 20px;
}

.about-section h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.8em;
  color: hsl(100, 66%, 32%);
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.about-section h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.9em;
  color: hsl(100, 66%, 17%);
  margin-bottom: 20px;
  margin-top: 35px;
  font-weight: 600;
}

.about-section p {
  font-size: 1.15em;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 18px;
}

.about-intro {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 6px;
  margin-bottom: 45px;
  border-left: 4px solid hsl(100, 66%, 57%);
}

.about-intro p {
  font-size: 1.25em;
  color: #222;
  margin-bottom: 0;
}

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

.value-card {
  background: white;
  padding: 30px 25px;
  border-radius: 8px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: hsl(100, 66%, 57%);
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.value-card h4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.4em;
  color: hsl(100, 66%, 32%);
  margin-bottom: 15px;
  font-weight: 600;
}

.value-card p {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 0;
  line-height: 1.7;
}

.secondary-content {
  display: flex;
  align-items: center;
  gap: 45px;
  margin-top: 70px;
  flex-direction: row-reverse;
}

.secondary-image {
  flex: 0 0 42%;
}

.secondary-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.secondary-text {
  flex: 1;
  padding-right: 25px;
}

.highlight-box {
  background: hsl(100, 66%, 95%);
  padding: 35px;
  border-radius: 6px;
  margin-top: 30px;
}

.highlight-box p {
  color: #222222;
  font-size: 1.1em;
  margin-bottom: 12px;
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .about-content,
  .secondary-content {
    flex-direction: column;
    gap: 35px;
  }
  
  .about-image-wrapper,
  .secondary-image {
    flex: 0 0 100%;
  }
  
  .about-text-content,
  .secondary-text {
    padding-left: 0;
    padding-right: 0;
  }
  
  .about-section h2 {
    font-size: 2.3em;
  }
  
  .about-section h3 {
    font-size: 1.7em;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-intro {
    padding: 30px 25px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .about-section h2 {
    font-size: 2em;
  }
}

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

.portfolio-section {
  padding: 80px 0;
  background: #f8f9fa;
  font-family: 'Crimson Text', serif;
}

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

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

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

.portfolio-card {
background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

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

.portfolio-card:nth-child(2),
.portfolio-card:nth-child(5) {
  grid-row: span 2;
}

.portfolio-card-content {
  padding: 30px 25px;
}

.portfolio-category {
  display: inline-block;
  background: hsl(100, 66%, 57%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: 'Work Sans', sans-serif;
}

.portfolio-card h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.6rem;
  color: #222;
  margin-bottom: 12px;
  font-weight: 600;
}

.portfolio-description {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.portfolio-date {
  color: #888;
  font-size: 0.95rem;
}

.portfolio-link {
  color: hsl(100, 66%, 32%);
  font-weight: 600;
  text-decoration: none;
  font-family: 'Work Sans', sans-serif;
  transition: color 0.3s;
}

.portfolio-link:hover {
  color: hsl(100, 66%, 17%);
}

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

.modal-header {
  background: hsl(100, 66%, 32%);
  color: white;
  border-radius: 15px 15px 0 0;
  padding: 25px 30px;
}

.modal-header .modal-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

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

.modal-body {
  padding: 35px 30px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.modal-body h5 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(100, 66%, 32%);
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.modal-body ul {
  padding-left: 20px;
}

.modal-body ul li {
  margin-bottom: 10px;
  color: #555;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tech-tag {
  background: #f0f0f0;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #666;
  font-family: 'Work Sans', sans-serif;
}

@media (max-width: 768px) {
  .portfolio-section {
    padding: 60px 0;
  }
  
  .portfolio-section .section-title {
    font-size: 2.2rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .portfolio-card:nth-child(2),
  .portfolio-card:nth-child(5) {
    grid-row: span 1;
  }
}

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

.disclaimer-section {
  background: #f8f9fa;
  padding: 60px 0;
  font-family: 'Crimson Text', serif;
}

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

.disclaimer-header {
  text-align: center;
  margin-bottom: 35px;
}

.disclaimer-icon {
  font-size: 42px;
  color: hsl(100, 66%, 32%);
  margin-bottom: 18px;
}

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

.disclaimer-content {
  background: white;
  padding: 40px 45px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-left: 4px solid hsl(100, 66%, 57%);
}

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

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 45px 0;
  }
  
  .disclaimer-title {
    font-size: 1.75rem;
  }
  
  .disclaimer-content {
    padding: 30px 25px;
  }
  
  .disclaimer-text {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .disclaimer-icon {
    font-size: 36px;
  }
  
  .disclaimer-title {
    font-size: 1.5rem;
  }
  
  .disclaimer-content {
    padding: 25px 20px;
  }
}

.privacy-policy {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        color: #2c3e50;
        line-height: 1.8;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }
    
    .privacy-policy h1 {
        font-size: 2.8em;
        color: #1a252f;
        margin-bottom: 20px;
        text-align: center;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        padding-bottom: 20px;
        border-bottom: 4px solid #3498db;
    }
    
    .privacy-policy .last-updated {
        text-align: center;
        font-style: italic;
        color: #7f8c8d;
        margin-bottom: 40px;
        font-size: 1.1em;
    }
    
    .privacy-policy .intro {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-bottom: 30px;
        border-left: 5px solid #3498db;
    }
    
    .privacy-policy h2 {
        font-size: 2em;
        color: #2c3e50;
        margin-top: 40px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 3px solid #3498db;
        font-weight: 600;
    }
    
    .privacy-policy h3 {
        font-size: 1.5em;
        color: #34495e;
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .privacy-policy .section {
        background: white;
        padding: 30px;
        margin-bottom: 25px;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .privacy-policy .section:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    
    .privacy-policy ul {
        margin: 15px 0;
        padding-left: 30px;
    }
    
    .privacy-policy li {
        margin-bottom: 12px;
        position: relative;
    }
    
    .privacy-policy li::marker {
        color: #3498db;
        font-weight: bold;
    }
    
    .privacy-policy .highlight-box {
        background: #e8f4f8;
        border-left: 5px solid #3498db;
        padding: 20px;
        margin: 20px 0;
        border-radius: 5px;
    }
    
    .privacy-policy .important-notice {
        background: #fff3cd;
        border-left: 5px solid #ffc107;
        padding: 20px;
        margin: 20px 0;
        border-radius: 5px;
    }
    
    .privacy-policy .rights-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin: 25px 0;
    }
    
    .privacy-policy .right-card {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        border-left: 4px solid #3498db;
        transition: all 0.3s ease;
    }
    
    .privacy-policy .right-card:hover {
        background: #e3f2fd;
        border-left-width: 6px;
    }
    
    .privacy-policy .right-card h4 {
        color: #2c3e50;
        margin-bottom: 10px;
        font-size: 1.2em;
    }
    
    .privacy-policy strong {
        color: #2c3e50;
        font-weight: 600;
    }
    
    .privacy-policy .company-info {
        background: #2c3e50;
        color: white;
        padding: 30px;
        border-radius: 10px;
        margin-top: 40px;
        text-align: center;
    }
    
    .privacy-policy .company-info h2 {
        color: white;
        border-bottom-color: #3498db;
    }
    
    .privacy-policy table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        background: white;
    }
    
    .privacy-policy table th {
        background: #3498db;
        color: white;
        padding: 15px;
        text-align: left;
        font-weight: 600;
    }
    
    .privacy-policy table td {
        padding: 12px 15px;
        border-bottom: 1px solid #ecf0f1;
    }
    
    .privacy-policy table tr:hover {
        background: #f8f9fa;
    }

* {
    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;
    color: #2c3e50;
  }
  
  .header-section {
    background: linear-gradient(135deg, #ed1c24 0%, #dc143c 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }
  
  .header-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  }
  
  .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(100, 66%, 32%) 0%, hsl(100, 66%, 17%) 100%);
    color: white;
    padding: 50px 20px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  }
  
  .entity-banner h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }
  
  .entity-banner .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
  }
  
  .info-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }
  
  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  }
  
  .card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(100, 66%, 32%);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid hsl(100, 66%, 57%);
  }
  
  .info-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #ecf0f1;
    align-items: center;
  }
  
  .info-row:last-child {
    border-bottom: none;
  }
  
  .info-label {
    flex: 0 0 40%;
    font-weight: 600;
    color: #34495e;
    font-size: 1rem;
  }
  
  .info-value {
    flex: 0 0 60%;
    color: #555;
    font-size: 1rem;
  }
  
  .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 15px 40px rgba(0,0,0,0.2);
  }
  
  .excellence-footer h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }
  
  .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: 2rem;
    }
    
    .entity-banner h2 {
      font-size: 1.8rem;
    }
    
    .info-row {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .info-label, .info-value {
      flex: 0 0 100%;
      margin-bottom: 5px;
    }
    
    .card-title {
      font-size: 1.5rem;
    }
  }

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }

  .terms-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #2c3e50;
  }

  .terms-header h1 {
    font-size: 2.8em;
    color: #1a252f;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .terms-header .last-updated {
    color: #6c757d;
    font-style: italic;
    font-size: 1.1em;
  }

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

  .terms-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  }

  .terms-section h2 {
    color: #2c3e50;
    font-size: 2em;
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 5px solid #3498db;
    font-weight: 600;
  }

  .terms-section h3 {
    color: #34495e;
    font-size: 1.5em;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .terms-section p {
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.1em;
    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: #4a5568;
    line-height: 1.8;
    font-size: 1.05em;
  }

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

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

  .warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 25px;
    margin: 25px 0;
    border-radius: 8px;
  }

  .important-note {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.15em;
  }

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

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

    .terms-section {
      padding: 25px;
    }

    .terms-section h2 {
      font-size: 1.6em;
    }
  }