@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Nunito:wght@300;400;600;700&display=swap');
        
        :root {
            --primary-color: hsl(170, 48%, 43%);
            --secondary-color: hsl(170, 48%, 28%);
            --accent-color: hsl(170, 48%, 68%);
        }
        
        * {
            margin:0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body{
            font-family: 'Nunito', sans-serif;
            color: #333;
            background: white;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            color: #222 !important;
            font-size: 1.4rem;
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img{
            transform: rotate(5deg) scale(1.05);
        }
        
        .navbar-nav .nav-link {
            color: rgb(51, 51, 51);
            font-weight: 500;
            padding: 0.5rem 1.1rem !important;
            transition: all 0.3s;
            position: relative;
            font-size: 15px;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease, left 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 70%;
            left: 15%;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 0.4rem 0.6rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(72, 180, 152, 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='rgba(72, 180, 152, 1)' 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;
            }
            
            .navbar-nav .nav-link::after {
                display: none;
            }
            
            .navbar-nav .nav-link {
                padding: 0.7rem 1rem !important;
                border-left: 3px solid transparent;
            }
            
            .navbar-nav .nav-link:hover {
                border-left-color: var(--primary-color);
                background: rgba(72, 180, 152, 0.05);
            }
        }

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

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

    .policy-header h1 {
        font-size: 3em;
        color: #2c3e50;
        margin-bottom: 15px;
        font-weight: 700;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .last-updated {
        color: #7f8c8d;
        font-size: 1.1em;
        font-style: italic;
    }

    .policy-content {
        background: white;
        padding: 50px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }

    .policy-section {
        margin-bottom: 45px;
        padding: 30px;
        background: #f8f9fa;
        border-radius: 15px;
        border-left: 5px solid #667eea;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .policy-section:hover {
        transform: translateX(10px);
        box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
    }

    .policy-section h2 {
        color: #667eea;
        font-size: 2em;
        margin-bottom: 20px;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

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

    .policy-section h3 {
        color: #764ba2;
        font-size: 1.5em;
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .policy-section p {
        margin-bottom: 15px;
        font-size: 1.1em;
        text-align: justify;
    }

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

    .cookie-card {
        background: white;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-top: 4px solid #667eea;
    }

    .cookie-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    }

    .cookie-card h4 {
        color: #667eea;
        font-size: 1.3em;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .cookie-card p {
        font-size: 1em;
        color: #555;
    }

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

    .highlight-box h3 {
        color: white;
        margin-top: 0;
    }

    .consent-info {
        background: #e8f5e9;
        border-left: 5px solid #4caf50;
        padding: 25px;
        border-radius: 10px;
        margin: 25px 0;
    }

    .consent-info h3 {
        color: #2e7d32;
    }

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

    ul.policy-list li {
        padding: 12px 0 12px 35px;
        position: relative;
        font-size: 1.1em;
    }

    ul.policy-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #667eea;
        font-weight: bold;
        font-size: 1.3em;
    }

    .gdpr-badge {
        display: inline-block;
        background: #4caf50;
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 0.9em;
        margin: 10px 5px;
    }

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

    .important-note strong {
        color: #856404;
    }

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

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

        .policy-content {
            padding: 25px;
        }

        .policy-section {
            padding: 20px;
        }

        .cookie-types {
            grid-template-columns: 1fr;
        }
    }

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

footer {
  background: linear-gradient(135deg, hsl(170, 48%, 28%) 0%, hsl(170, 48%, 35%) 100%);
    color: #f8f9fa;
  padding: 60px 0 20px;
font-family: 'Nunito', sans-serif;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;
}

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

.footer-section h4 {
font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
    font-weight: 600;
  color: hsl(170, 48%, 68%);
margin-bottom: 20px;
}

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

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

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

.footer-links a {
  color: #e9ecef;
    text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
color: hsl(170, 48%, 68%);
  padding-left: 5px;
}

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

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

.contact-info i {
  margin-right: 10px;
    color: hsl(170, 48%, 68%);
  margin-top: 3px;
}

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

.contact-info a:hover {
  color: hsl(170, 48%, 68%);
}

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
    text-align: center;
  color: #dee2e6;
    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;
}

.cookie-container {
  max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;
}

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

.cookie-text {
  flex: 1;
    min-width: 300px;
}

.cookie-text h5 {
font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
    font-weight: 600;
  color: #222;
    margin-bottom: 10px;
}

.cookie-text p {
  font-family: 'Nunito', sans-serif;
    color: #555;
  font-size: 0.95rem;
    line-height: 1.6;
  margin-bottom: 15px;
}

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

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

.cookie-categories li strong {
color: hsl(170, 48%, 28%);
  font-weight: 600;
}

.cookie-actions {
display: flex;
  gap: 15px;
    flex-wrap: wrap;
  align-items: center;
}

.btn-accept-all {
  background: hsl(170, 48%, 43%);
    color: white;
  border: none;
    padding: 12px 30px;
  border-radius: 6px;
    font-family: 'Nunito', sans-serif;
  font-weight: 600;
    font-size: 1rem;
  cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept-all:hover {
background: hsl(170, 48%, 35%);
  transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-reject {
  background: #6c757d;
    color: #fff;
  border: none;
    padding: 12px 30px;
  border-radius: 6px;
    font-family: 'Nunito', sans-serif;
  font-weight: 600;
    font-size: 1rem;
  cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-manage {
  color: hsl(170, 48%, 28%);
    text-decoration: none;
  padding: 12px 20px;
    font-family: 'Nunito', sans-serif;
  font-weight: 600;
    font-size: 1rem;
  transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.btn-manage:hover {
  border-bottom: 2px solid hsl(170, 48%, 43%);
}

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

  .cookie-content {
    flex-direction: column;
      align-items: flex-start;
  }
  
  .cookie-actions {
    width: 100%;
      flex-direction: column;
  }
  
  .btn-accept-all,
  .btn-reject {
    width: 100%;
  }
}

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

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

.hero-section {
  padding: 5rem 0;
  background: #f8f9fa;
  font-family: 'Nunito', sans-serif;
}

.hero-content {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 3.5rem;
  padding: 0 20px;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  color: #222;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.hero-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: hsl(170, 48%, 28%);
  margin-bottom: 1.8rem;
}

.hero-description {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: left;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0;
  text-align: left;
}

.hero-benefits li {
  padding: 0.9rem 0;
  font-size: 1.05rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-benefits li i {
  color: hsl(170, 48%, 43%);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.btn-primary-hero {
  background: hsl(170, 48%, 43%);
  color: white;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'Nunito', sans-serif;
}

.btn-primary-hero:hover {
  background: hsl(170, 48%, 28%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-secondary-hero {
  background: transparent;
  color: hsl(170, 48%, 28%);
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid hsl(170, 48%, 43%);
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'Nunito', sans-serif;
}

.btn-secondary-hero:hover {
  background: hsl(170, 48%, 43%);
  color: white;
  transform: translateY(-2px);
}

.hero-image-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content h2 {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary-hero, .btn-secondary-hero {
    width: 100%;
    max-width: 300px;
  }
}

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

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

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

.portfolio-section .section-subtitle {
  font-size: 1.1rem;
    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(2, 1fr);
    gap: 35px;
  max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.portfolio-card::before {
    content: '';
  position: absolute;
    top: 0;
  left: 0;
    width: 100%;
  height: 4px;
    background: linear-gradient(90deg, hsl(170, 48%, 43%) 0%, hsl(170, 48%, 68%) 100%);
  transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

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

.portfolio-category {
    display: inline-block;
  background: hsl(170, 48%, 68%);
    color: #222;
  padding: 6px 16px;
    border-radius: 20px;
  font-size: 0.85rem;
    font-weight: 600;
  margin-bottom: 15px;
    text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-title {
font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
  font-weight: 700;
    color: #333;
  margin-bottom: 12px;
}

.portfolio-description {
    color: #666;
  font-size: 1rem;
    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 #e9ecef;
}

.portfolio-date {
    color: #888;
  font-size: 0.9rem;
    font-weight: 600;
}

.portfolio-tools {
    color: hsl(170, 48%, 28%);
  font-size: 0.9rem;
    font-weight: 600;
}

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

.modal-header {
    background: linear-gradient(135deg, hsl(170, 48%, 43%) 0%, hsl(170, 48%, 28%) 100%);
  color: white;
    border-radius: 15px 15px 0 0;
  padding: 25px 30px;
}

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

.modal-body {
    padding: 35px;
  color: #333;
}

.modal-body h5 {
font-family: 'Poppins', sans-serif;
    color: hsl(170, 48%, 28%);
  font-weight: 600;
    margin-top: 25px;
  margin-bottom: 15px;
}

.modal-body p {
    line-height: 1.8;
  color: #555;
}

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

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
      gap: 25px;
    }
  
    .portfolio-section .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .portfolio-section {
        padding: 50px 0;
    }
  
    .portfolio-card {
        padding: 25px;
    }
  
    .portfolio-title {
        font-size: 1.3rem;
    }
}

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

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

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

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

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

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

.faq-item {
  background: white;
  border-radius: 12px;
  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);
  transform: translateY(-3px);
}

.faq-question {
  padding: 22px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: hsl(170, 48%, 43%);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background 0.3s;
}

.faq-question:hover {
  background: hsl(170, 48%, 38%);
}

.faq-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

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

.faq-answer-content {
  padding: 20px 0;
  color: #444;
  line-height: 1.7;
  font-size: 1rem;
  border-top: 2px solid hsl(170, 48%, 68%);
}

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

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

@media (max-width: 992px) {
  .faq-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .faq-header h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 50px 0;
  }
  
  .faq-header h2 {
    font-size: 1.9rem;
  }
  
  .faq-question {
    padding: 18px 20px;
    font-size: 0.95rem;
  }
  
  .faq-answer-content {
    font-size: 0.95rem;
  }
}

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

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

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

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

.video-wrapper {
position: relative;
  padding-bottom: 56.25%;
    height: 0;
  overflow: hidden;
  border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  margin-bottom: 2.5rem;
    background: #000;
}

.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(45,140,120,0.7), rgba(30,95,80,0.85));
    display: flex;
  align-items: center;
  justify-content: center;
    cursor: pointer;
  transition: all 0.4s ease;
    z-index: 10;
}

.video-overlay:hover {
  background: linear-gradient(rgba(45,140,120,0.85), rgba(30,95,80,0.95));
}

.video-overlay .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(170, 48%, 68%);
}

.video-cta {
    background: hsl(170, 48%, 43%);
  color: white;
    padding: 35px 40px;
  border-radius: 10px;
    text-align: center;
  box-shadow: 0 6px 25px rgba(45,140,120,0.2);
}

.video-cta h3 {
  font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
  font-weight: 600;
    margin-bottom: 15px;
  color: #fff;
}

.video-cta p {
    font-size: 1.05rem;
  line-height: 1.7;
    margin-bottom: 25px;
  color: #f0f0f0;
}

.cta-button {
  display: inline-block;
    padding: 14px 35px;
  background: #fff;
    color: hsl(170, 48%, 28%);
  font-weight: 600;
    border-radius: 6px;
  text-decoration: none;
    transition: all 0.3s ease;
  font-size: 1.05rem;
}

.cta-button:hover {
    transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: hsl(170, 48%, 28%);
  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: 1rem;
  }
  
  .video-overlay .play-button {
      font-size: 4rem;
  }
  
  .video-cta {
      padding: 25px 20px;
  }
  
  .video-cta h3 {
      font-size: 1.5rem;
  }
}

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

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

.statistics-section::before {
content: '';
  position: absolute;
    top: 0;
  left: 0;
    width: 100%;
  height: 100%;
background: radial-gradient(circle at 20% 50%, rgba(81, 163, 141, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(81, 163, 141, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.statistics-section .section-header {
    text-align: center;
  margin-bottom: 60px;
  position: relative;
    z-index: 1;
}

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

.statistics-section .section-subtitle {
  font-family: 'Nunito', sans-serif;
font-size: 1.15rem;
    color: #666;
  max-width: 680px;
    margin: 0 auto;
line-height: 1.7;
}

.stats-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  position: relative;
z-index: 1;
}

.stat-card {
background: white;
    padding: 40px 25px;
  border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
    text-align: center;
  position: relative;
    overflow: hidden;
}

.stat-card::before {
  content: '';
    position: absolute;
  top: 0;
    left: 0;
  width: 100%;
    height: 4px;
  background: linear-gradient(90deg, hsl(170, 48%, 43%) 0%, hsl(170, 48%, 68%) 100%);
    transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.stat-card:hover {
    transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(81, 163, 141, 0.15);
}

.stat-icon {
    width: 70px;
  height: 70px;
    background: linear-gradient(135deg, hsl(170, 48%, 43%) 0%, hsl(170, 48%, 28%) 100%);
  border-radius: 50%;
    display: flex;
  align-items: center;
    justify-content: center;
  margin: 0 auto 25px;
    font-size: 32px;
  color: white;
    transition: all 0.3s ease;
}

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

.stat-number {
    font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
    font-weight: 800;
  color: hsl(170, 48%, 28%);
    margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
  color: #555;
    font-weight: 600;
  margin-bottom: 8px;
}

.stat-description {
    font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
    color: #777;
  line-height: 1.5;
    margin-top: 12px;
}

@media (max-width: 768px) {
  .statistics-section {
      padding: 60px 0;
  }
  
    .statistics-section .section-title {
      font-size: 2.2rem;
  }
  
    .stats-grid {
      grid-template-columns: 1fr;
        gap: 25px;
  }
  
    .stat-card {
      padding: 35px 20px;
  }
  
    .stat-number {
      font-size: 2.2rem;
  }
}

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

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

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

#testimonials::before {
content: '';
  position: absolute;
top: 0;
  left: -50%;
  width: 200%;
height: 100%;
  background: radial-gradient(circle, rgba(85, 175, 155, 0.03) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
0%, 100% { transform: translateX(0) scale(1); }
  50% { transform: translateX(10%) scale(1.1); }
}

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

.testimonials-header h2 {
font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
font-weight: 700;
  color: #222;
margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.testimonials-header p {
font-size: 1.15rem;
color: rgb(102, 102, 102);
  max-width: 650px;
margin: 0 auto;
line-height: 1.7;
}

.testimonials-scroll-container {
  position: relative;
  overflow: hidden;
height: 520px;
  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-scroll {
display: flex;
  flex-direction: column;
gap: 25px;
  animation: scrollTestimonials 40s linear infinite;
}

.testimonials-scroll:hover {
animation-play-state: paused;
}

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

.testimonial-card {
background: white;
  border-radius: 16px;
padding: 35px 30px;
box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
border: 1px solid rgba(85, 175, 155, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
box-shadow: 0 8px 30px rgba(85, 175, 155, 0.15);
border-color: hsl(170, 48%, 68%);
}

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

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

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

.testimonial-location i {
color: hsl(170, 48%, 43%);
}

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

.testimonial-rating i {
  color: #ffc107;
font-size: 1.1rem;
}

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

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

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

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

  .testimonial-card {
padding: 25px 20px;
  }
  
.testimonials-scroll-container {
height: 450px;
}
}

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

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

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

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

#blog .section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
margin: 0 auto;
}

.blog-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
border-color: hsl(170, 48%, 43%);
}

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

.blog-category {
  background: hsl(170, 48%, 68%);
  color: #222;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
font-weight: 600;
  text-transform: uppercase;
}

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

.blog-read-time {
  color: #777;
  font-size: 0.9rem;
}

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

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

.blog-link {
  display: inline-block;
  color: hsl(170, 48%, 28%);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
font-size: 1rem;
}

.blog-link:hover {
color: hsl(170, 48%, 43%);
  text-decoration: underline;
}

.view-all-btn {
  display: inline-block;
  background: hsl(170, 48%, 43%);
  color: white;
  padding: 14px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 40px;
font-size: 1.05rem;
}

.view-all-btn:hover {
  background: hsl(170, 48%, 28%);
color: white;
  transform: scale(1.05);
}

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

@media (max-width: 768px) {
  #blog {
    padding: 60px 0;
  }
  
  #blog .section-header h2 {
    font-size: 2rem;
  }
  
  .blog-card {
    margin-bottom: 30px;
  }
}

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

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

.promo-offer-section::before {
content: '';
  position: absolute;
  top: -50%;
    left: -50%;
  width: 200%;
height: 200%;
  background: radial-gradient(circle, rgba(70,167,148,0.08) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(5deg); }
}

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

.promo-card {
  background: white;
border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
  position: relative;
}

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

.promo-header::after {
  content: '';
position: absolute;
bottom: 0;
    left: 0;
  right: 0;
height: 3px;
  background: linear-gradient(90deg, transparent, hsl(170, 48%, 68%), transparent);
}

.promo-badge {
display: inline-block;
  background: rgba(255,255,255,0.25);
padding: 8px 24px;
border-radius: 50px;
    color: #fff;
font-size: 14px;
  font-weight: 600;
letter-spacing: 1px;
  text-transform: uppercase;
margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.promo-title {
font-family: 'Poppins', sans-serif;
  font-size: 48px;
font-weight: 800;
    color: #ffffff;
margin-bottom: 15px;
  line-height: 1.2;
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

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

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

.promo-description {
font-size: 18px;
  line-height: 1.8;
color: #333;
  text-align: center;
    margin-bottom: 45px;
max-width: 800px;
  margin-left: auto;
margin-right: auto;
}

.promo-date-block {
  background: linear-gradient(135deg, hsl(170, 48%, 68%) 0%, hsl(170, 48%, 43%) 100%);
padding: 35px;
border-radius: 15px;
    text-align: center;
  margin-bottom: 50px;
position: relative;
  box-shadow: 0 10px 30px rgba(70,167,148,0.3);
}

.date-label {
  font-size: 16px;
color: rgba(255,255,255,0.9);
font-weight: 600;
    text-transform: uppercase;
letter-spacing: 2px;
  margin-bottom: 12px;
}

.date-value {
  font-family: 'Poppins', sans-serif;
font-size: 42px;
    font-weight: 700;
color: #ffffff;
  display: flex;
    align-items: center;
justify-content: center;
  gap: 15px;
}

.date-icon {
  font-size: 38px;
}

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

.feature-item {
background: #f8f9fa;
  padding: 30px 25px;
border-radius: 12px;
    display: flex;
align-items: flex-start;
  gap: 20px;
transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-item:hover {
  transform: translateY(-5px);
border-color: hsl(170, 48%, 43%);
  box-shadow: 0 8px 25px rgba(70,167,148,0.2);
}

.feature-icon {
  flex-shrink: 0;
width: 50px;
height: 50px;
    background: linear-gradient(135deg, hsl(170, 48%, 43%), hsl(170, 48%, 68%));
  border-radius: 50%;
display: flex;
  align-items: center;
    justify-content: center;
color: white;
  font-size: 24px;
}

.feature-content h4 {
font-family: 'Poppins', sans-serif;
  font-size: 19px;
    font-weight: 700;
color: #222;
  margin-bottom: 8px;
}

.feature-content p {
font-size: 15px;
  color: #555;
    margin-bottom: 0;
line-height: 1.6;
}

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

.cta-button {
  display: inline-block;
font-family: 'Poppins', sans-serif;
    font-size: 20px;
font-weight: 700;
  color: #fff;
background: linear-gradient(135deg, hsl(170, 48%, 43%) 0%, hsl(170, 48%, 28%) 100%);
    padding: 18px 55px;
border-radius: 50px;
  text-decoration: none;
    transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(70,167,148,0.4);
  position: relative;
overflow: hidden;
}

.cta-button::before {
  content: '';
position: absolute;
    top: 50%;
left: 50%;
  width: 0;
    height: 0;
background: rgba(255,255,255,0.2);
  border-radius: 50%;
transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
width: 400px;
  height: 400px;
}

.cta-button:hover {
  transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(70,167,148,0.5);
color: #fff;
}

@media (max-width: 768px) {
.promo-offer-section {
    padding: 50px 0;
}

  .promo-title {
font-size: 32px;
  }
  
.promo-body {
    padding: 40px 25px;
}

  .promo-date-block {
padding: 25px 20px;
  }
  
.date-value {
    font-size: 32px;
}

  .promo-features {
    grid-template-columns: 1fr;
gap: 20px;
  }
  
.cta-button {
    font-size: 18px;
    padding: 15px 40px;
}
}

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

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

.newsletter-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.newsletter-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.newsletter-content {
    flex: 1;
    padding: 60px 50px;
    min-width: 300px;
}

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

.newsletter-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.benefits-list li {
    padding: 12px 0;
    color: #333;
    font-size: 1rem;
    position: relative;
    padding-left: 30px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(170, 48%, 43%);
    font-weight: bold;
    font-size: 1.3rem;
}

.newsletter-form-wrapper {
    flex: 1;
    background: hsl(170, 48%, 43%);
    padding: 60px 50px;
    display: flex;
    align-items: center;
    min-width: 300px;
}

.newsletter-form {
    width: 100%;
}

.form-label {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.email-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255,255,255,0.95);
    color: #333;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
}

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

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

.subscribe-btn {
    width: 100%;
    padding: 16px 30px;
    background: hsl(170, 48%, 28%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscribe-btn:hover {
    background: #1a4d3d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.privacy-note {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    margin-top: 15px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 50px 0;
    }
    
    .newsletter-content,
    .newsletter-form-wrapper {
        padding: 40px 30px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .newsletter-content,
    .newsletter-form-wrapper {
        padding: 30px 20px;
    }
    
    .newsletter-title {
        font-size: 1.75rem;
    }
}

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

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

#advantages::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(170, 48%, 68%);
  opacity: 0.05;
  border-radius: 50%;
}

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

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

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

.advantage-item {
  margin-bottom: 60px;
  position: relative;
}

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

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border-color: hsl(170, 48%, 68%);
}

.advantage-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, hsl(170, 48%, 43%) 0%, hsl(170, 48%, 28%) 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: 2rem;
  color: white;
}

.advantage-content h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: #222;
  margin-bottom: 18px;
}

.advantage-content p {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

.zigzag-left .advantage-card {
  margin-right: auto;
}

.zigzag-right .advantage-card {
  margin-left: auto;
}

@media (max-width: 768px) {
  #advantages {
    padding: 60px 0;
  }
  
  .advantages-header h2 {
    font-size: 2.2rem;
  }
  
  .advantage-card {
    padding: 30px 25px;
  }
  
  .advantage-icon {
    width: 65px;
    height: 65px;
  }
  
  .advantage-icon i {
    font-size: 1.7rem;
  }
  
  .advantage-content h3 {
    font-size: 1.4rem;
  }
}

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

.about-section {
    padding: 80px 0;
    background: #f8f9fa;
    font-family: 'Nunito', sans-serif;
}

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

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

.about-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: hsl(170, 48%, 28%);
    margin-top: 30px;
    margin-bottom: 18px;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

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

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

.story-block {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.story-block p:last-child {
    margin-bottom: 0;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid hsl(170, 48%, 43%);
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
}

.value-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: hsl(170, 48%, 28%);
    margin-bottom: 15px;
}

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

.mission-box {
    background: hsl(170, 48%, 43%);
    color: white;
    padding: 45px;
    border-radius: 10px;
    margin: 40px 0;
    text-align: center;
}

.mission-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.mission-box p {
    font-size: 1.15rem;
    color: #fff;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 35px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-text h2 {
        font-size: 1.9rem;
    }
    
    .story-block {
        padding: 25px;
    }
    
    .mission-box {
        padding: 30px 20px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Nunito: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: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  font-family: 'Nunito', sans-serif;
}

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

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

.services-header p {
  font-size: 1.15rem;
  color: #555;
  max-width: 720px;
  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.3s ease;
  border-left: 4px solid hsl(170, 48%, 43%);
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border-left-color: hsl(170, 48%, 28%);
}

.service-icon {
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, hsl(170, 48%, 43%) 0%, hsl(170, 48%, 68%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
}

.service-content {
  flex: 1;
}

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

.service-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.service-price {
  display: inline-block;
  background: hsl(170, 48%, 68%);
  color: #222;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.1rem;
}

.service-terms {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
  margin-top: 50px;
}

.service-terms h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 25px;
  font-weight: 600;
}

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

.service-terms ul li {
  padding: 12px 0;
  color: #555;
  font-size: 1.05rem;
  border-bottom: 1px solid #e0e0e0;
}

.service-terms ul li:last-child {
  border-bottom: none;
}

.service-terms ul li i {
  color: hsl(170, 48%, 43%);
  margin-right: 12px;
  font-size: 1.2rem;
}

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

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

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

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

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

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

.contact-info-card {
  background: hsl(170, 48%, 43%);
    color: white;
  padding: 30px;
  border-radius: 10px;
    margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
transform: translateY(-5px);
}

.contact-info-card h4 {
  font-family: 'Poppins', sans-serif;
font-size: 1.3rem;
    margin-bottom: 15px;
  font-weight: 600;
}

.contact-info-card p {
  margin: 8px 0;
    font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info-card .info-icon {
  font-size: 2rem;
margin-bottom: 15px;
    display: block;
}

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

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

.form-control:focus {
  border-color: hsl(170, 48%, 43%);
    box-shadow: 0 0 0 0.2rem rgba(72, 180, 158, 0.25);
  outline: none;
}

.form-check-input {
border: 2px solid #ddd;
  width: 20px;
    height: 20px;
}

.form-check-input:checked {
  background-color: hsl(170, 48%, 43%);
    border-color: hsl(170, 48%, 43%);
}

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

.form-check-label a {
color: hsl(170, 48%, 28%);
    text-decoration: underline;
  font-weight: 600;
}

.submit-btn {
  background: hsl(170, 48%, 43%);
    color: white;
  border: none;
    padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
    border-radius: 8px;
  cursor: pointer;
    transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  width: 100%;
}

.submit-btn:hover {
  background: hsl(170, 48%, 28%);
    transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(72, 180, 158, 0.3);
}

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

.gdpr-notice strong {
color: #222;
    font-size: 1rem;
  display: block;
  margin-bottom: 10px;
}

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

.gdpr-notice a {
  color: hsl(170, 48%, 28%);
    font-weight: 600;
  text-decoration: underline;
}

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

.process-info h5 {
font-family: 'Poppins', sans-serif;
    color: #222;
  font-size: 1.2rem;
  margin-bottom: 12px;
    font-weight: 600;
}

.process-info p {
  color: #555;
    font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

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

.step-number {
  background: hsl(170, 48%, 68%);
    color: #222;
  width: 35px;
    height: 35px;
  border-radius: 50%;
  display: flex;
    align-items: center;
  justify-content: center;
    font-weight: 700;
  font-size: 1.1rem;
  margin-right: 15px;
    flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}

.step-content {
flex: 1;
}

.step-content h6 {
  font-weight: 600;
    color: #333;
  margin-bottom: 5px;
  font-size: 1rem;
}

.step-content p {
  color: #666;
    font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 50px 0;
  }
  
  .contact-section .section-title {
    font-size: 2rem;
  }
  
  .contact-form-wrapper {
    padding: 25px;
  }
  
  .contact-info-card {
    margin-bottom: 20px;
  }
}

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

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

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

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

.disclaimer-icon {
    font-size: 48px;
color: hsl(170, 48%, 43%);
margin-bottom: 20px;
      display: inline-block;
}

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

.disclaimer-content {
background: white;
padding: 40px;
  border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  border-left: 4px solid hsl(170, 48%, 43%);
}

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

.disclaimer-text strong {
  color: #222;
font-weight: 600;
}

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

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

.disclaimer-content {
    padding: 25px 20px;
}

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

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

  .disclaimer-icon {
font-size: 38px;
}
}

.privacy-policy-container {
        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;
    }
    
    .privacy-header {
        text-align: center;
        padding: 60px 20px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 20px;
        margin-bottom: 50px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }
    
    .privacy-header h1 {
        color: #ffffff;
        font-size: 3em;
        margin: 0 0 20px 0;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    }
    
    .privacy-header .last-updated {
        color: #e0e7ff;
        font-size: 1.1em;
        font-weight: 500;
    }
    
    .privacy-content {
        background: #ffffff;
        padding: 60px;
        border-radius: 20px;
        box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    }
    
    .privacy-intro {
        background: #f8f9ff;
        padding: 30px;
        border-left: 5px solid #667eea;
        border-radius: 10px;
        margin-bottom: 40px;
        font-size: 1.1em;
    }
    
    .privacy-section {
        margin-bottom: 50px;
    }
    
    .privacy-section h2 {
        color: #667eea;
        font-size: 2em;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 3px solid #e0e7ff;
        font-weight: 700;
    }
    
    .privacy-section h3 {
        color: #764ba2;
        font-size: 1.5em;
        margin: 30px 0 20px 0;
        font-weight: 600;
    }
    
    .privacy-section h4 {
        color: #5a67d8;
        font-size: 1.2em;
        margin: 20px 0 15px 0;
        font-weight: 600;
    }
    
    .privacy-section p {
        margin-bottom: 20px;
        text-align: justify;
    }
    
    .privacy-section ul, .privacy-section ol {
        margin: 20px 0;
        padding-left: 30px;
    }
    
    .privacy-section li {
        margin-bottom: 15px;
        line-height: 1.8;
    }
    
    .highlight-box {
        background: #fff4e6;
        border-left: 5px solid #f59e0b;
        padding: 25px;
        margin: 25px 0;
        border-radius: 10px;
    }
    
    .info-box {
        background: #e0f2fe;
        border-left: 5px solid #0ea5e9;
        padding: 25px;
        margin: 25px 0;
        border-radius: 10px;
    }
    
    .rights-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin: 30px 0;
    }
    
    .right-card {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 30px;
        border-radius: 15px;
        color: #ffffff;
        box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
        transition: transform 0.3s ease;
    }
    
    .right-card:hover {
        transform: translateY(-5px);
    }
    
    .right-card h4 {
        color: #ffffff;
        margin-top: 0;
        font-size: 1.3em;
    }
    
    .platform-section {
        background: #f9fafb;
        padding: 25px;
        border-radius: 10px;
        margin: 20px 0;
        border: 2px solid #e5e7eb;
    }
    
    .company-info {
        background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
        color: #ffffff;
        padding: 40px;
        border-radius: 15px;
        margin-top: 50px;
        text-align: center;
    }
    
    .company-info strong {
        color: #fbbf24;
    }
    
    @media (max-width: 768px) {
        .privacy-content {
            padding: 30px 20px;
        }
        
        .privacy-header h1 {
            font-size: 2em;
        }
        
        .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;
    line-height: 1.6;
  }
  
  .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.2rem;
    margin-bottom: 20px;
    opacity: 0.95;
  }
  
  .singapore-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
  }
  
  .entity-banner {
    background: linear-gradient(135deg, hsl(170, 48%, 43%) 0%, hsl(170, 48%, 28%) 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 .company-type {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
  }
  
  .info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }
  
  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  }
  
  .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(170, 48%, 28%);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid hsl(170, 48%, 43%);
  }
  
  .info-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
  }
  
  .info-row:last-child {
    border-bottom: none;
  }
  
  .info-label {
    flex: 0 0 40%;
    font-weight: 600;
    color: #2c3e50;
    padding-right: 15px;
  }
  
  .info-value {
    flex: 0 0 60%;
    color: #555;
    word-wrap: break-word;
  }
  
  .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: 40px;
    border-radius: 15px;
    margin-top: 40px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
  
  .excellence-footer h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .excellence-footer p {
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
    opacity: 0.95;
  }
  
  @media (max-width: 768px) {
    .header-section h1 {
      font-size: 1.8rem;
    }
    
    .entity-banner h2 {
      font-size: 1.6rem;
    }
    
    .info-row {
      flex-direction: column;
    }
    
    .info-label, .info-value {
      flex: 0 0 100%;
      padding-right: 0;
    }
    
    .info-label {
      margin-bottom: 5px;
    }
    
    .info-card {
      padding: 20px;
    }
  }
  
  .container {
    max-width: 1000px;
  }

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.terms-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
}

.terms-header h1 {
    font-size: 3em;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.terms-header p {
    font-size: 1.1em;
    opacity: 0.9;
    font-style: italic;
}

.terms-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    color: #2d3748;
}

.terms-section {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(to right, #f7fafc, #edf2f7);
    border-left: 5px solid #667eea;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms-section:hover {
    transform: translateX(10px);
    box-shadow: -10px 10px 30px rgba(102, 126, 234, 0.2);
}

.terms-section h2 {
    color: #667eea;
    font-size: 1.8em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.terms-section h2::before {
    content: "§";
    font-size: 1.5em;
    color: #764ba2;
    font-weight: bold;
}

.terms-section p {
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
    color: #4a5568;
}

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

.terms-section ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    line-height: 1.6;
    color: #4a5568;
}

.terms-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2em;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.highlight-box strong {
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #718096;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
    font-size: 0.95em;
}

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