@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');
        
        :root {
            --primary-color: hsl(220, 52%, 32%);
            --secondary-color: hsl(220, 52%, 17%);
            --accent-color: hsl(220, 52%, 57%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Libre Baskerville', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Quicksand', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-family: 'Quicksand', sans-serif;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s;
            font-size: 15px;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--accent-color);
        }
        
        .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(51, 51, 51, 0.75)' 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: white;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
            }
        }

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

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

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

    .policy-header .subtitle {
        font-size: 1.2em;
        color: #34495e;
        font-weight: 300;
    }

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

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

    .policy-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    }

    .policy-section h2 {
        color: #1a472a;
        font-size: 2em;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 3px solid #27ae60;
        font-weight: 600;
    }

    .policy-section h3 {
        color: #2c3e50;
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .policy-section p {
        margin-bottom: 20px;
        text-align: justify;
        color: #34495e;
        font-size: 1.05em;
    }

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

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

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

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

    .cookie-list li {
        padding: 15px 20px;
        margin: 10px 0;
        background: #ecf0f1;
        border-left: 5px solid #27ae60;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .cookie-list li:hover {
        background: #d5dbdb;
        transform: translateX(10px);
    }

    .cookie-list li strong {
        color: #1a472a;
        font-size: 1.1em;
    }

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

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

    .highlight-box p {
        color: #fff;
    }

    .consent-box {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        padding: 30px;
        border-radius: 15px;
        margin: 30px 0;
        color: white;
        box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
    }

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

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

    .info-card {
        background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(252, 182, 159, 0.3);
        transition: transform 0.3s ease;
    }

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

    .info-card h4 {
        color: #c0392b;
        margin-bottom: 15px;
        font-size: 1.2em;
    }

    .info-card p {
        color: #2c3e50;
        font-size: 0.95em;
    }

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

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

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

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

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

    .cookies-table th {
        background: linear-gradient(135deg, #1a472a 0%, #27ae60 100%);
        color: white;
        padding: 18px;
        text-align: left;
        font-weight: 600;
        font-size: 1.05em;
    }

    .cookies-table td {
        padding: 15px 18px;
        border-bottom: 1px solid #ecf0f1;
        color: #2c3e50;
    }

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

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

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

        .policy-section {
            padding: 25px 20px;
        }

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

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

footer {
  background: hsl(220, 52%, 17%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  font-family: 'Libre Baskerville', serif;
  margin-top: 80px;
}

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

footer h5 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(220, 52%, 57%);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

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

footer a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 10px;
}

footer a:hover {
  color: hsl(220, 52%, 57%);
}

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

.footer-contact-item i {
  color: hsl(220, 52%, 57%);
  margin-right: 12px;
  margin-top: 3px;
}

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

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

#cookieNotice .container {
  max-width: 1200px;
}

.cookie-content h5 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(220, 52%, 17%);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

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

.cookie-categories {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
}

.cookie-category {
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.cookie-category strong {
  color: hsl(220, 52%, 17%);
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
}

.cookie-category span {
  color: #666666;
  font-size: 0.85rem;
  display: block;
  margin-top: 4px;
}

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

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

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

.btn-reject {
  background: rgb(108, 117, 125);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-reject:hover {
  background: rgb(90, 98, 104);
  transform: translateY(-2px);
}

.btn-manage {
  color: hsl(220, 52%, 32%);
  text-decoration: underline;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 12px 20px;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.btn-manage:hover {
  color: hsl(220, 52%, 57%);
}

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

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

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

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

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

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-right: 40px;
}

.hero-badge {
  display: inline-block;
  background: hsl(220, 52%, 57%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: hsl(220, 52%, 17%);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-content h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(220, 52%, 32%);
  margin-bottom: 30px;
  line-height: 1.4;
}

.hero-description {
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 35px;
  text-align: justify;
}

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

.hero-features li {
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
  color: #222;
  margin-bottom: 16px;
  padding-left: 35px;
  position: relative;
  line-height: 1.6;
}

.hero-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  background: hsl(220, 52%, 57%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-features li i {
  position: absolute;
  left: 5px;
  top: 9px;
  color: white;
  font-size: 11px;
}

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

.btn-primary-hero {
  background: hsl(220, 52%, 32%);
  color: #ffffff;
  padding: 16px 38px;
  border: none;
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.btn-secondary-hero {
  background: transparent;
  color: hsl(220, 52%, 32%);
  padding: 16px 38px;
  border: 2px solid hsl(220, 52%, 32%);
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
  background: hsl(220, 52%, 32%);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-image-wrapper {
  position: relative;
  z-index: 5;
}

.hero-image-container {
  position: relative;
  margin-left: -80px;
  margin-top: -40px;
}

.hero-image-container::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100%;
  height: 100%;
  background: hsl(220, 52%, 57%);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.15;
}

.hero-image-container::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: hsl(220, 52%, 32%);
  border-radius: 50%;
  z-index: -2;
  opacity: 0.08;
}

.hero-image-container img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  display: block;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 10;
}

.floating-card-1 {
  top: 15%;
  right: -20px;
  max-width: 220px;
}

.floating-card-2 {
  bottom: 10%;
  left: -30px;
  max-width: 200px;
}

.floating-card i {
  font-size: 28px;
  color: hsl(220, 52%, 57%);
  margin-bottom: 10px;
}

.floating-card h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: hsl(220, 52%, 17%);
  margin-bottom: 5px;
}

.floating-card p {
  font-family: 'Libre Baskerville', serif;
  font-size: 13px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

.background-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  z-index: 1;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: hsl(220, 52%, 32%);
  top: -100px;
  left: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: hsl(220, 52%, 57%);
  bottom: -80px;
  right: 10%;
}

@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 45% 55%;
    gap: 40px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-image-container {
    margin-left: -40px;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .hero-content {
    padding-right: 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-image-container {
    margin-left: 0;
    margin-top: 0;
  }
  
  .floating-card-1 {
    right: 10px;
    top: 10%;
  }
  
  .floating-card-2 {
    left: 10px;
    bottom: 5%;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content h2 {
    font-size: 1.3rem;
  }
  
  .hero-description {
    font-size: 15px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    justify-content: center;
  }
  
  .floating-card {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-features li {
    font-size: 14px;
  }
}

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

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

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

#advantages .section-header h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(220, 52%, 32%);
  margin-bottom: 15px;
}

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

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

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, hsl(220, 52%, 57%), hsl(220, 52%, 32%));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  border-color: hsl(220, 52%, 57%);
}

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

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

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

.advantage-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: hsl(220, 52%, 17%);
  margin-bottom: 18px;
  text-align: center;
}

.advantage-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  #advantages {
    padding: 60px 0;
  }
  
  #advantages .section-header h2 {
    font-size: 2.3rem;
  }
  
  .advantage-card {
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  #advantages .section-header h2 {
    font-size: 2rem;
  }
  
  .advantage-card {
    padding: 30px 20px;
  }
}

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

.statistics-section {
    padding: 85px 0 90px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Libre Baskerville', serif;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
  content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(75, 115, 170, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(75, 115, 170, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.statistics-section .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(220, 52%, 17%);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

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

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 42px 28px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    height: 100%;
    position: relative;
    border: 1px solid rgba(75, 115, 170, 0.08);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(75, 115, 170, 0.15);
    border-color: hsl(220, 52%, 57%);
}

.stat-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, hsl(220, 52%, 57%) 0%, hsl(220, 52%, 32%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(220, 52%, 32%) 0%, hsl(220, 52%, 17%) 100%);
}

.stat-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(220, 52%, 32%);
    margin-bottom: 12px;
    line-height: 1.2;
}

.stat-label {
    font-size: 1.05rem;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .statistics-section {
        padding: 65px 0 70px;
    }
    
    .statistics-section .section-title {
        font-size: 2.3rem;
    }
    
    .stat-card {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .statistics-section {
        padding: 55px 0;
    }
    
    .statistics-section .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-card {
        padding: 35px 22px;
    }
}

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

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

.video-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, hsl(220, 52%, 32%), hsl(220, 52%, 57%));
}

.video-header {
text-align: center;
margin-bottom: 50px;
}

.video-header h2 {
font-family: 'Quicksand', sans-serif;
font-weight: 700;
font-size: 2.8rem;
color: hsl(220, 52%, 17%);
margin-bottom: 25px;
position: relative;
display: inline-block;
}

.video-header h2::after {
content: '';
position: absolute;
bottom: -12px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: hsl(220, 52%, 57%);
}

.video-description {
font-family: 'Libre Baskerville', serif;
font-size: 1.05rem;
line-height: 1.8;
color: #333;
max-width: 750px;
margin: 0 auto 45px;
text-align: center;
}

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

.video-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
border-radius: 12px;
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
transition: all 0.4s ease;
}

.video-container:hover {
box-shadow: 0 20px 50px rgba(0,0,0,0.25);
transform: translateY(-5px);
}

.video-container 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(135deg, rgba(35, 66, 108, 0.85), rgba(35, 66, 108, 0.65));
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 10;
border-radius: 12px;
transition: background 0.3s ease;
}

.video-overlay:hover {
background: linear-gradient(135deg, rgba(35, 66, 108, 0.75), rgba(35, 66, 108, 0.55));
}

.video-overlay:hover .play-button {
transform: scale(1.15);
}

.play-button {
font-size: 5rem;
color: white;
transition: transform 0.3s ease;
filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

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

.video-cta h3 {
font-family: 'Quicksand', sans-serif;
font-weight: 600;
font-size: 1.6rem;
color: hsl(220, 52%, 32%);
margin-bottom: 18px;
}

.video-cta p {
font-family: 'Libre Baskerville', serif;
font-size: 1rem;
line-height: 1.7;
color: #444;
margin-bottom: 28px;
}

.cta-button {
display: inline-block;
padding: 14px 38px;
background: hsl(220, 52%, 32%);
color: #fff;
font-family: 'Quicksand', sans-serif;
font-weight: 600;
font-size: 1.05rem;
text-decoration: none;
border-radius: 8px;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(35, 66, 108, 0.3);
}

.cta-button:hover {
background: hsl(220, 52%, 57%);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(35, 66, 108, 0.4);
color: white;
text-decoration: none;
}

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

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

.video-description {
font-size: 0.98rem;
padding: 0 20px;
}

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

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

.video-cta p {
padding: 0 15px;
}
}

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

.about-section {
background: #ffffff;
  padding: 85px 0;
font-family: 'Libre Baskerville', serif;
}

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

.about-section .section-header h2 {
font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
font-weight: 700;
  color: hsl(220, 52%, 32%);
margin-bottom: 20px;
}

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

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

.about-image {
flex: 1;
}

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

.about-text {
  flex: 1;
}

.about-text h3 {
font-family: 'Quicksand', sans-serif;
font-size: 2rem;
  color: hsl(220, 52%, 17%);
margin-bottom: 25px;
font-weight: 600;
}

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

.timeline-container {
background: rgb(248, 249, 250);
  padding: 60px 0;
margin-top: 50px;
}

.timeline-header {
text-align: center;
  margin-bottom: 55px;
}

.timeline-header h3 {
font-family: 'Quicksand', sans-serif;
font-size: 2.3rem;
color: hsl(220, 52%, 32%);
  font-weight: 700;
}

.timeline {
position: relative;
max-width: 900px;
margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
content: '';
  position: absolute;
left: 50%;
  transform: translateX(-50%);
width: 3px;
height: 100%;
background: hsl(220, 52%, 57%);
}

.timeline-item {
  position: relative;
margin-bottom: 45px;
width: 45%;
}

.timeline-item:nth-child(odd) {
left: 0;
}

.timeline-item:nth-child(even) {
  left: 55%;
}

.timeline-content {
background: white;
padding: 28px;
border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
position: relative;
}

.timeline-content::before {
content: '';
position: absolute;
  top: 20px;
width: 0;
height: 0;
border-style: solid;
}

.timeline-item:nth-child(odd) .timeline-content::before {
right: -15px;
border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent white;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -15px;
border-width: 10px 15px 10px 0;
border-color: transparent white transparent transparent;
}

.timeline-year {
  font-family: 'Quicksand', sans-serif;
font-size: 1.4em;
  color: hsl(220, 52%, 32%);
font-weight: 700;
margin-bottom: 12px;
}

.timeline-content p {
color: #333;
  line-height: 1.7;
font-size: 15px;
margin: 0;
}

.values-section {
margin-top: 65px;
}

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

.value-card {
  background: hsl(220, 52%, 17%);
padding: 35px 25px;
border-radius: 8px;
text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
transform: translateY(-8px);
}

.value-icon {
font-size: 3em;
  color: hsl(220, 52%, 57%);
margin-bottom: 18px;
}

.value-card h4 {
font-family: 'Quicksand', sans-serif;
  font-size: 1.4rem;
color: #ffffff;
margin-bottom: 15px;
  font-weight: 600;
}

.value-card p {
color: rgb(230, 230, 230);
  line-height: 1.6;
font-size: 14px;
margin: 0;
}

@media (max-width: 992px) {
.about-content {
flex-direction: column;
  gap: 35px;
}

.timeline::before {
left: 30px;
}

.timeline-item {
  width: 100%;
left: 0 !important;
padding-left: 70px;
}

.timeline-item:nth-child(even) {
left: 0 !important;
}

  .timeline-content::before {
left: -15px !important;
border-width: 10px 15px 10px 0 !important;
  border-color: transparent white transparent transparent !important;
}
}

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

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

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

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

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

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(220, 52%, 57%);
    opacity: 0.1;
    border-radius: 50%;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(220, 52%, 57%);
    opacity: 0.08;
    border-radius: 50%;
}

.newsletter-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter-header {
    text-align: center;
    margin-bottom: 45px;
}

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

.newsletter-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

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

.benefit-item {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.benefit-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.newsletter-form-wrapper {
    background: white;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: hsl(220, 52%, 17%);
    margin-bottom: 25px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.email-input-wrapper {
    flex: 1;
    min-width: 280px;
}

.email-input {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.email-input:focus {
    outline: none;
    border-color: hsl(220, 52%, 57%);
    background: white;
    box-shadow: 0 0 0 4px rgba(75, 115, 180, 0.1);
}

.subscribe-btn {
    padding: 16px 45px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    background: hsl(220, 52%, 57%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: hsl(220, 52%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(75, 115, 180, 0.3);
}

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

.privacy-note {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 20px;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
    
    .newsletter-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter-form-wrapper {
        padding: 30px 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-input-wrapper {
        min-width: 100%;
    }
    
    .subscribe-btn {
        width: 100%;
    }
}

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

#portfolio {
  padding: 80px 0;
background: #f8f9fa;
  font-family: 'Libre Baskerville', serif;
}

#portfolio .section-title {
font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(220, 52%, 17%);
  margin-bottom: 1rem;
  text-align: center;
}

#portfolio .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 3.5rem;
  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: 40px;
}

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

.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
height: 4px;
  background: hsl(220, 52%, 57%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

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

.portfolio-card .card-category {
  display: inline-block;
  padding: 6px 14px;
  background: hsl(220, 52%, 32%);
  color: #fff;
  border-radius: 20px;
  font-size: 0.85rem;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 15px;
  font-weight: 500;
}

.portfolio-card .card-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(220, 52%, 17%);
  margin-bottom: 12px;
}

.portfolio-card .card-description {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

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

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

.portfolio-card .card-link {
  color: hsl(220, 52%, 57%);
  font-weight: 600;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
}

.portfolio-card .card-link:hover {
  color: hsl(220, 52%, 32%);
}

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

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

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

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

.modal-body {
  padding: 35px;
}

.modal-body .project-category {
  display: inline-block;
  padding: 8px 18px;
  background: hsl(220, 52%, 57%);
  color: white;
  border-radius: 25px;
  font-size: 0.9rem;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 20px;
}

.modal-body .project-detail {
  margin-bottom: 25px;
}

.modal-body .project-detail h5 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(220, 52%, 17%);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

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

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

.modal-body .tech-badge {
  padding: 6px 15px;
  background: #f0f0f0;
  color: #333;
  border-radius: 20px;
  font-size: 0.85rem;
  font-family: 'Quicksand', sans-serif;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  #portfolio {
    padding: 60px 0;
  }
  
  #portfolio .section-title {
    font-size: 2rem;
  }
}

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

.promo-section {
  font-family: 'Libre Baskerville', serif;
    background: linear-gradient(135deg, hsl(220, 52%, 32%) 0%, hsl(220, 52%, 17%) 100%);
  padding: 80px 0;
    position: relative;
  overflow: hidden;
}

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

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

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

.promo-title {
    font-family: 'Quicksand', sans-serif;
  color: white;
    font-size: 48px;
  font-weight: 700;
    margin-bottom: 24px;
  line-height: 1.2;
}

.promo-description {
  color: #f8f9fa;
    font-size: 18px;
  line-height: 1.8;
    margin-bottom: 40px;
  max-width: 700px;
    margin-left: auto;
  margin-right: auto;
}

.promo-card {
    background: white;
  border-radius: 20px;
    padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin-top: 40px;
  position: relative;
}

.promo-ribbon {
    position: absolute;
  top: -15px;
    right: 40px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
  padding: 12px 30px;
    border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
    font-weight: 700;
  font-size: 24px;
    box-shadow: 0 8px 20px rgba(238, 90, 111, 0.4);
  transform: rotate(2deg);
}

.deadline-box {
  background: linear-gradient(135deg, hsl(220, 52%, 57%) 0%, hsl(220, 52%, 42%) 100%);
    padding: 30px;
  border-radius: 15px;
    text-align: center;
  margin: 35px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.deadline-label {
    color: white;
  font-family: 'Quicksand', sans-serif;
    font-size: 16px;
  font-weight: 600;
    text-transform: uppercase;
  letter-spacing: 1.5px;
    margin-bottom: 12px;
}

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

.deadline-date i {
    font-size: 38px;
}

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

.benefits-list li {
    display: flex;
  align-items: flex-start;
    gap: 18px;
  margin-bottom: 24px;
    color: #333;
  font-size: 17px;
}

.benefits-list i {
  color: hsl(220, 52%, 57%);
    font-size: 24px;
  flex-shrink: 0;
    margin-top: 2px;
}

.cta-button {
    display: inline-block;
  background: linear-gradient(135deg, hsl(220, 52%, 32%) 0%, hsl(220, 52%, 17%) 100%);
    color: white;
  padding: 18px 50px;
    font-family: 'Quicksand', sans-serif;
  font-weight: 700;
    font-size: 18px;
  text-decoration: none;
    border-radius: 50px;
  transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    color: white;
  text-decoration: none;
}

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

.feature-item {
  background: #f8f9fa;
    padding: 25px;
  border-radius: 12px;
    text-align: center;
  border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: hsl(220, 52%, 57%);
  transform: translateY(-5px);
}

.feature-item i {
    font-size: 40px;
  color: hsl(220, 52%, 57%);
    margin-bottom: 15px;
}

.feature-item h4 {
  font-family: 'Quicksand', sans-serif;
    font-size: 20px;
  font-weight: 700;
    color: hsl(220, 52%, 17%);
  margin-bottom: 10px;
}

.feature-item p {
    color: #555;
  font-size: 15px;
    margin: 0;
}

@media (max-width: 768px) {
  .promo-title {
        font-size: 36px;
  }
    
  .promo-card {
        padding: 35px 25px;
  }
    
  .deadline-date {
        font-size: 32px;
  }
    
  .promo-ribbon {
        right: 20px;
    font-size: 20px;
        padding: 10px 20px;
  }
}

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

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

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

.blog-preview-section .section-title {
font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(220, 52%, 17%);
    margin-bottom: 15px;
}

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

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

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

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(220, 52%, 32%) 0%, hsl(220, 52%, 57%) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

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

.blog-card.featured {
    grid-column: 1 / -1;
    padding: 50px;
    background: linear-gradient(135deg, hsl(220, 52%, 32%) 0%, hsl(220, 52%, 17%) 100%);
    color: #ffffff;
}

.blog-card.featured .blog-category {
    background: rgba(255,255,255,0.2);
    color: white;
}

.blog-card.featured .blog-title {
    color: #ffffff;
}

.blog-card.featured .blog-excerpt {
    color: rgba(255,255,255,0.9);
}

.blog-card.featured .blog-meta {
    color: rgba(255,255,255,0.8);
}

.blog-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

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

.blog-read-time {
    font-size: 0.9rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card.featured .blog-read-time {
    color: rgba(255,255,255,0.8);
}

.blog-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(220, 52%, 17%);
    margin-bottom: 18px;
    line-height: 1.3;
}

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

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

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

.blog-card.featured .blog-meta {
    border-top-color: rgba(255,255,255,0.2);
}

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

.blog-link {
    color: hsl(220, 52%, 32%);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-card.featured .blog-link {
    color: white;
}

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

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

.view-all-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 16px 45px;
    background: hsl(220, 52%, 32%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.view-all-btn:hover {
    background: hsl(220, 52%, 17%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    color: white;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-card.featured {
        grid-column: 1;
    }
    
    .blog-title {
        font-size: 1.5rem;
    }
    
    .blog-card.featured .blog-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-preview-section {
        padding: 60px 0;
    }
    
    .blog-preview-section .section-title {
        font-size: 2.2rem;
    }
    
    .blog-card {
        padding: 30px;
    }
    
    .blog-card.featured {
        padding: 35px;
    }
}

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

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

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

.faq-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    color: hsl(220, 52%, 32%);
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 18px;
    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(-2px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.3s ease;
}

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

.faq-question h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    color: hsl(220, 52%, 32%);
    margin: 0;
    font-weight: 600;
    padding-right: 20px;
    flex: 1;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: hsl(220, 52%, 57%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: transform 0.3s ease, background 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: hsl(220, 52%, 32%);
}

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

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

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

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .faq-question {
        padding: 20px 20px;
    }
    
    .faq-question h3 {
        font-size: 1.05rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;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: 'Libre Baskerville', serif;
}

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

.services-section .section-header h2 {
  font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
  font-weight: 700;
    color: hsl(220, 52%, 32%);
  margin-bottom: 15px;
}

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

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

.service-card:hover {
    transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: hsl(220, 52%, 57%);
}

.service-card .icon-wrapper {
  width: 70px;
    height: 70px;
  background: linear-gradient(135deg, hsl(220, 52%, 57%) 0%, hsl(220, 52%, 32%) 100%);
    border-radius: 50%;
  display: flex;
    align-items: center;
  justify-content: center;
    margin-bottom: 20px;
  transition: transform 0.3s ease;
}

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

.service-card .icon-wrapper i {
  font-size: 32px;
    color: #ffffff;
}

.service-card h3 {
    font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
    font-weight: 600;
  color: hsl(220, 52%, 17%);
    margin-bottom: 15px;
}

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

.service-card .price-tag {
  font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
  font-weight: 700;
    color: hsl(220, 52%, 32%);
  margin-bottom: 15px;
}

.service-card .conditions {
    font-size: 0.85rem;
  color: #777;
    font-style: italic;
  border-top: 1px solid #e9ecef;
    padding-top: 15px;
}

@media (max-width: 768px) {
  .services-section {
      padding: 50px 0;
  }
  
    .services-section .section-header h2 {
    font-size: 2rem;
    }
  
  .service-card {
      padding: 25px 20px;
  }
}

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

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

.testimonials-section .section-title {
font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(220, 52%, 17%);
  margin-bottom: 15px;
    text-align: center;
}

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

.testimonial-card {
background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  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 h5 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: hsl(220, 52%, 32%);
  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: #ffc107;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  flex-grow: 1;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

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

.verified-badge {
  background: hsl(220, 52%, 57%);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

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

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

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

.contact-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(220, 52%, 17%);
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.contact-section h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(220, 52%, 32%);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.contact-intro {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 35px;
}

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

.info-block h4 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(220, 52%, 32%);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.contact-details {
  background: hsl(220, 52%, 32%);
  color: #fff;
  padding: 25px;
  border-radius: 8px;
  margin-top: 20px;
}

.contact-details h5 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 18px;
  font-weight: 600;
}

.contact-details p {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #f0f0f0;
}

.contact-details strong {
  color: hsl(220, 52%, 57%);
  font-weight: 600;
}

.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

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

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e0e0e0;
  padding: 12px 15px;
  font-size: 0.95rem;
  color: #333;
  background: #fafafa;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: hsl(220, 52%, 57%);
  box-shadow: 0 0 0 0.2rem rgba(72, 118, 179, 0.15);
  background: white;
  outline: none;
}

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

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

.form-check-label a {
  color: hsl(220, 52%, 57%);
  text-decoration: none;
  font-weight: 600;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.form-check-input:checked {
  background-color: hsl(220, 52%, 57%);
  border-color: hsl(220, 52%, 57%);
}

.btn-submit {
  background: hsl(220, 52%, 32%);
  color: white;
  padding: 14px 45px;
  border: none;
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.btn-submit:hover {
  background: hsl(220, 52%, 17%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gdpr-notice {
  margin-top: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-left: 4px solid hsl(220, 52%, 57%);
  font-size: 0.88rem;
  border-radius: 4px;
}

.gdpr-notice strong {
  color: hsl(220, 52%, 32%);
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
}

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

.gdpr-notice a {
  color: hsl(220, 52%, 57%);
  text-decoration: none;
  font-weight: 600;
}

.gdpr-notice a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 50px 0;
  }
  
  .contact-section h2 {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 25px;
    margin-top: 30px;
  }
  
  .info-block {
    padding: 20px;
  }
}

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

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

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

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

.disclaimer-icon {
  font-size: 3.5rem;
  color: hsl(220, 52%, 57%);
    margin-bottom: 20px;
  display: inline-block;
}

.disclaimer-title {
  font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
  font-weight: 600;
  color: hsl(220, 52%, 17%);
    margin-bottom: 0;
  letter-spacing: -0.5px;
}

.disclaimer-content {
  background: white;
    border-radius: 12px;
  padding: 50px 45px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(220, 52%, 57%);
}

.disclaimer-text {
  font-size: 1.05rem;
    line-height: 1.85;
  color: #2c3e50;
  margin-bottom: 0;
    text-align: justify;
}

.disclaimer-text strong {
  color: hsl(220, 52%, 32%);
    font-weight: 700;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-title {
      font-size: 2.2rem;
  }
  
  .disclaimer-content {
      padding: 35px 25px;
  }
  
  .disclaimer-text {
    font-size: 0.98rem;
      line-height: 1.75;
    text-align: left;
  }
  
  .disclaimer-icon {
      font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .disclaimer-section {
      padding: 45px 0;
  }
  
  .disclaimer-title {
    font-size: 1.9rem;
  }
  
  .disclaimer-content {
    padding: 28px 20px;
      border-radius: 8px;
  }
}

.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%);
        color: #2c3e50;
        line-height: 1.8;
    }

    .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 20px 60px rgba(0, 0, 0, 0.3);
    }

    .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 p {
        color: #e0e7ff;
        font-size: 1.2em;
        margin: 0;
        font-weight: 300;
    }

    .last-updated {
        background: #fff3cd;
        padding: 15px 25px;
        border-radius: 10px;
        border-left: 5px solid #ffc107;
        margin-bottom: 40px;
        font-weight: 600;
        color: #856404;
    }

    .privacy-section {
        background: #ffffff;
        padding: 40px;
        margin-bottom: 30px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .privacy-section h2 {
        color: #667eea;
        font-size: 2em;
        margin-top: 0;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 3px solid #667eea;
        font-weight: 700;
    }

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

    .privacy-section h4 {
        color: #495057;
        font-size: 1.2em;
        margin-top: 20px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .data-list {
        background: #f8f9fa;
        padding: 25px;
        border-radius: 10px;
        margin: 20px 0;
        border-left: 4px solid #667eea;
    }

    .data-list ul {
        margin: 10px 0;
        padding-left: 25px;
    }

    .data-list li {
        margin: 12px 0;
        color: #495057;
        font-size: 1.05em;
    }

    .highlight-box {
        background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
        padding: 25px;
        border-radius: 12px;
        margin: 25px 0;
        border: 2px solid #667eea;
    }

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

    .right-card {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        padding: 25px;
        border-radius: 12px;
        color: #ffffff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

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

    .right-card h4 {
        color: #ffffff;
        margin-top: 0;
        font-size: 1.3em;
    }

    .right-card p {
        color: #ffffff;
        opacity: 0.95;
        font-size: 0.95em;
    }

    .platform-box {
        background: #ffffff;
        padding: 20px;
        border-radius: 10px;
        margin: 15px 0;
        border: 2px solid #e9ecef;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }

    .platform-box h4 {
        color: #667eea;
        margin-top: 0;
    }

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

    .info-box {
        background: #d1ecf1;
        padding: 20px;
        border-radius: 10px;
        border-left: 5px solid #17a2b8;
        margin: 25px 0;
    }

    .company-info {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #ffffff;
        padding: 30px;
        border-radius: 15px;
        margin: 40px 0;
        text-align: center;
    }

    .company-info h3 {
        color: #ffffff;
        margin-top: 0;
    }

    .company-info p {
        font-size: 1.1em;
        margin: 10px 0;
    }

    strong {
        color: #667eea;
        font-weight: 600;
    }

    .privacy-section p {
        margin: 15px 0;
        font-size: 1.05em;
        color: #495057;
    }

    @media (max-width: 768px) {
        .privacy-header h1 {
            font-size: 2em;
        }

        .privacy-section {
            padding: 25px;
        }

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 20px 0;
  }
  
  .header-section {
    background: linear-gradient(135deg, #ed1c24 0%, #dc143c 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  
  .header-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }
  
  .header-section .subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.95;
  }
  
  .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(220, 52%, 32%) 0%, hsl(220, 52%, 17%) 100%);
    color: white;
    padding: 50px 20px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  }
  
  .entity-banner h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    word-wrap: break-word;
  }
  
  .entity-banner .company-type {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
  }
  
  .info-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }
  
  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
  }
  
  .card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(220, 52%, 32%);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid hsl(220, 52%, 57%);
  }
  
  .info-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    align-items: center;
  }
  
  .info-row:last-child {
    border-bottom: none;
  }
  
  .info-label {
    flex: 0 0 40%;
    font-weight: 600;
    color: hsl(220, 52%, 17%);
    font-size: 1rem;
  }
  
  .info-value {
    flex: 0 0 60%;
    color: #495057;
    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 8px 30px rgba(0,0,0,0.2);
  }
  
  .excellence-footer h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .excellence-footer p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
  }
  
  @media (max-width: 768px) {
    .header-section h1 {
      font-size: 1.8rem;
    }
    
    .entity-banner h2 {
      font-size: 1.8rem;
    }
    
    .info-row {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .info-label, .info-value {
      flex: 0 0 100%;
      width: 100%;
    }
    
    .info-label {
      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 #2c5f7c;
  }

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

  .terms-header .subtitle {
    font-size: 1.1em;
    color: #5a6c7d;
    font-style: italic;
  }

  .last-updated {
    background: #2c5f7c;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
  }

  .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: #2c5f7c;
    font-size: 1.9em;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    align-items: center;
  }

  .terms-section h2::before {
    content: "§";
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2c5f7c 0%, #4a8ba8 100%);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    font-weight: bold;
  }

  .terms-section h3 {
    color: #1a3a4a;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
  }

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

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

  .important-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 5px solid #f0ad4e;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
  }

  .important-notice p {
    margin: 0;
    color: #856404;
    font-weight: 600;
  }

  .acceptance-box {
    background: linear-gradient(135deg, #2c5f7c 0%, #4a8ba8 100%);
    color: white;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
  }

  .acceptance-box h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
  }

  .acceptance-box p {
    color: white;
    font-size: 1.1em;
  }