:root {
            --primary-color: hsl(261, 30%, 38%);
            --secondary-color: hsl(261, 30%, 23%);
            --accent-color: hsl(261, 30%, 63%);
        }
        
        body {
            font-family: 'Source Sans Pro', sans-serif;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.3rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .nav-link {
            color: #555 !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            transition: color 0.3s;
            font-size: 0.95rem;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .navbar-toggler {
            border-color: var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.15rem rgba(106, 76, 133, 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(106, 76, 133, 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 {
                margin-top: 1rem;
                padding-top: 1rem;
                border-top: 1px solid #e9ecef;
            }
            
            .nav-link {
                padding: 0.75rem 0 !important;
            }
        }

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

    .cookies-policy h1 {
        font-size: 2.8em;
        color: #1a365d;
        text-align: center;
        margin-bottom: 20px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    }

    .last-updated {
        text-align: center;
        font-style: italic;
        color: #5a6c7d;
        margin-bottom: 40px;
        font-size: 1.1em;
    }

    .intro-section {
        background: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        margin-bottom: 30px;
        border-left: 5px solid #3498db;
    }

    .policy-section {
        background: white;
        padding: 35px;
        margin-bottom: 25px;
        border-radius: 15px;
        box-shadow: 0 5px 15px 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 25px rgba(0,0,0,0.15);
    }

    .policy-section h2 {
        color: #2c5aa0;
        font-size: 1.9em;
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 3px solid #3498db;
        font-weight: 600;
    }

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

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

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

    .cookie-list {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        margin: 15px 0;
        border-left: 4px solid #3498db;
    }

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

    .cookie-list li {
        margin: 10px 0;
        color: #34495e;
    }

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

    .gdpr-notice {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        color: white;
        padding: 30px;
        border-radius: 12px;
        margin: 30px 0;
        box-shadow: 0 6px 18px rgba(79, 172, 254, 0.3);
        font-weight: 500;
    }

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

    .consent-box h4 {
        color: #2e7d32;
        margin-top: 0;
        font-size: 1.3em;
    }

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

    .control-card {
        background: white;
        border: 2px solid #e0e0e0;
        padding: 20px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .control-card:hover {
        border-color: #3498db;
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
    }

    .control-card h5 {
        color: #2c5aa0;
        margin-top: 0;
        font-size: 1.2em;
    }

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

    .table-container {
        overflow-x: auto;
        margin: 20px 0;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

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

    td {
        padding: 15px;
        border-bottom: 1px solid #e0e0e0;
        color: #34495e;
    }

    tr:hover {
        background: #f5f5f5;
    }

    strong {
        color: #2c5aa0;
        font-weight: 600;
    }

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

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

        .policy-section {
            padding: 20px;
        }

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

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

footer {
  background: hsl(261, 30%, 23%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  font-family: 'Source Sans Pro', sans-serif;
  margin-top: 80px;
}

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

footer p, footer a {
  color: rgb(220, 220, 220);
  line-height: 1.8;
  font-size: 15px;
}

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

footer a:hover {
  color: hsl(261, 30%, 63%);
}

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

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

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

.footer-contact-info i {
  margin-right: 10px;
  color: hsl(261, 30%, 63%);
  margin-top: 3px;
}

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

.footer-description {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.7;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 30px 0;
  z-index: 9999;
  display: none;
  border-top: 3px solid hsl(261, 30%, 38%);
}

#cookieNotice.show {
  display: block;
}

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

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

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

.cookie-categories li {
  padding: 10px 0;
  color: #333;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}

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

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

.cookie-categories .badge {
  font-size: 11px;
  padding: 4px 8px;
  margin-left: 8px;
}

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

.btn-accept-all {
  background: #28a745;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Source Sans Pro', sans-serif;
}

.btn-accept-all:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40,167,69,0.3);
}

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

.btn-reject:hover {
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108,117,125,0.3);
}

.btn-manage {
  color: hsl(261, 30%, 38%);
  text-decoration: underline;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s;
}

.btn-manage:hover {
  color: hsl(261, 30%, 23%);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  footer h4 {
    margin-top: 30px;
    font-size: 1.2rem;
  }
  
  .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(261, 30%, 38%);
        }
        .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(261, 30%, 38%);
        }
        .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(261, 30%, 63%);
        }
        .blog-read-more {
            background-color: hsl(261, 30%, 38%);
            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(261, 30%, 63%);
            color: white;
            transform: translateX(5px);
        }

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

.hero-section {
  background: #ffffff;
    padding: 80px 0 90px;
  min-height: 85vh;
    display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
    max-width: 1320px;
  margin: 0 auto;
    padding: 0 20px;
}

.hero-text-wrapper {
  padding-right: 25px;
}

.hero-text-wrapper h1 {
  font-family: 'Montserrat', sans-serif;
    font-weight: 800;
  font-size: 3.2rem;
    color: hsl(261, 30%, 23%);
  margin-bottom: 18px;
    line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero-text-wrapper h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
    font-size: 1.5rem;
  color: hsl(261, 30%, 38%);
    margin-bottom: 24px;
  line-height: 1.4;
}

.hero-description {
  font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
  color: #333333;
    line-height: 1.75;
  margin-bottom: 30px;
    font-weight: 400;
}

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

.hero-benefits li {
  font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.05rem;
  color: rgb(51, 51, 51);
    padding: 12px 0 12px 35px;
  position: relative;
    font-weight: 400;
}

.hero-benefits li::before {
  content: '\F26B';
    font-family: 'bootstrap-icons';
  position: absolute;
    left: 0;
  color: hsl(261, 30%, 63%);
  font-size: 1.3rem;
    top: 10px;
}

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

.btn-primary-hero {
  background-color: hsl(261, 30%, 38%);
    color: white;
  padding: 15px 35px;
    font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1rem;
    font-weight: 600;
  border: none;
    border-radius: 6px;
  text-decoration: none;
    display: inline-flex;
  align-items: center;
    gap: 10px;
  transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.btn-secondary-hero {
  background: transparent;
    color: hsl(261, 30%, 38%);
  padding: 15px 35px;
    font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1rem;
    font-weight: 600;
  border: 2px solid hsl(261, 30%, 38%);
    border-radius: 6px;
  text-decoration: none;
    display: inline-flex;
  align-items: center;
    gap: 10px;
  transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
  background-color: hsl(261, 30%, 38%);
    color: #ffffff;
  transform: translateY(-2px);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
    height: auto;
  border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  object-fit: cover;
    max-height: 600px;
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
      gap: 45px;
  }
  
  .hero-text-wrapper {
    padding-right: 0;
      order: 2;
  }
  
  .hero-image-wrapper {
    order: 1;
  }
  
  .hero-text-wrapper h1 {
    font-size: 2.5rem;
  }
  
  .hero-text-wrapper h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
      min-height: auto;
  }
  
  .hero-text-wrapper h1 {
    font-size: 2rem;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
      justify-content: center;
  }
}

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

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

.contact-section .section-title {
font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2a2a2a;
  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-form-wrapper h3 {
  font-family: 'Montserrat', sans-serif;
font-weight: 600;
  color: hsl(261, 30%, 23%);
  margin-bottom: 25px;
  font-size: 1.75rem;
}

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

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

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: hsl(261, 30%, 63%);
  box-shadow: 0 0 0 0.2rem rgba(121, 90, 148, 0.15);
  background: white;
  outline: none;
}

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

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

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

.form-check-label a {
  color: hsl(261, 30%, 38%);
  text-decoration: none;
  font-weight: 600;
}

.form-check-label a:hover {
  color: hsl(261, 30%, 63%);
  text-decoration: underline;
}

.submit-btn {
  background: hsl(261, 30%, 38%);
  color: #ffffff;
  border: none;
  padding: 14px 45px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
  background: hsl(261, 30%, 28%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(121, 90, 148, 0.3);
}

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

.contact-info-box {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  margin-bottom: 25px;
}

.contact-info-box h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: hsl(261, 30%, 23%);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.contact-info-box p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 1rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: hsl(261, 30%, 95%);
  transform: translateX(5px);
}

.info-item-icon {
  width: 45px;
  height: 45px;
  background: hsl(261, 30%, 38%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.info-item-content h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.info-item-content p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

.process-box {
  background: linear-gradient(135deg, hsl(261, 30%, 38%) 0%, hsl(261, 30%, 28%) 100%);
  padding: 35px;
  border-radius: 12px;
  color: white;
}

.process-box h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #fff;
}

.process-step {
  margin-bottom: 18px;
  padding-left: 30px;
  position: relative;
}

.process-step:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: hsl(261, 30%, 63%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.process-step p {
  margin: 0;
  line-height: 1.6;
  color: #f0f0f0;
}

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

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

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

.gdpr-notice a {
  color: hsl(261, 30%, 38%);
  text-decoration: none;
  font-weight: 600;
}

.gdpr-notice a:hover {
  color: hsl(261, 30%, 63%);
  text-decoration: underline;
}

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

@media (max-width: 576px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-section .section-title {
    font-size: 1.75rem;
  }
  
  .contact-form-wrapper,
  .contact-info-box,
  .process-box {
    padding: 25px 20px;
  }
}

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

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

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

#portfolio .section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: hsl(261, 30%, 23%);
  margin-bottom: 15px;
  font-weight: 700;
}

#portfolio .section-header p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

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

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

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-color: hsl(261, 30%, 63%);
}

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

.portfolio-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: hsl(261, 30%, 23%);
  margin-bottom: 15px;
  font-weight: 700;
}

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

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

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

.portfolio-card .card-tech {
  font-family: 'Source Sans Pro', sans-serif;
  color: hsl(261, 30%, 38%);
  font-size: 0.85rem;
  font-weight: 600;
}

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

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

.modal-header h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  margin: 0;
  font-weight: 700;
}

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

.modal-body {
  padding: 35px;
}

.modal-body .modal-category {
  font-family: 'Source Sans Pro', sans-serif;
  color: hsl(261, 30%, 63%);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 600;
}

.modal-body .modal-description {
  font-family: 'Source Sans Pro', sans-serif;
  color: #444;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 25px;
}

.modal-body .modal-details {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 6px;
  margin-top: 25px;
}

.modal-body .modal-details h6 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(261, 30%, 23%);
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.modal-body .modal-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-body .modal-details li {
  font-family: 'Source Sans Pro', sans-serif;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px solid #dee2e6;
}

.modal-body .modal-details li:last-child {
  border-bottom: none;
}

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

@media (max-width: 576px) {
  .portfolio-card {
    padding: 25px;
  }
  
  .portfolio-card h3 {
    font-size: 1.3rem;
  }
  
  .modal-body {
    padding: 25px;
  }
}

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

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

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

#blog .section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: hsl(261, 30%, 23%);
  font-weight: 700;
  margin-bottom: 15px;
}

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

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

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

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

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

.blog-card-meta span {
  font-size: 0.875rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-category {
  background: hsl(261, 30%, 63%);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: hsl(261, 30%, 23%);
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.blog-card h3 a {
  color: hsl(261, 30%, 23%);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card h3 a:hover {
  color: hsl(261, 30%, 38%);
}

.blog-card-description {
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
}

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

.read-more {
  color: hsl(261, 30%, 38%);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.read-more:hover {
  gap: 12px;
  color: hsl(261, 30%, 23%);
}

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

.view-all-btn {
  display: inline-block;
  padding: 16px 45px;
  background: hsl(261, 30%, 38%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: 2px solid hsl(261, 30%, 38%);
}

.view-all-btn:hover {
  background: hsl(261, 30%, 23%);
  border-color: hsl(261, 30%, 23%);
  transform: scale(1.05);
  color: white;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  #blog {
    padding: 60px 0;
  }
  
  #blog .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .blog-card {
    padding: 25px;
  }
  
  .blog-card h3 {
    font-size: 1.3rem;
  }
  
  #blog .section-header h2 {
    font-size: 1.75rem;
  }
}

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

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

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

.services-header h2 {
font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  color: hsl(261, 30%, 23%);
  font-weight: 700;
  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(261, 30%, 63%);
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

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

.service-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(261, 30%, 38%) 0%, hsl(261, 30%, 48%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  transition: transform 0.3s ease;
}

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

.service-content {
  flex: 1;
}

.service-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: hsl(261, 30%, 23%);
  margin-bottom: 15px;
  font-weight: 600;
}

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

.service-price {
  display: inline-block;
  background: hsl(261, 30%, 63%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 10px;
}

.terms-section {
  background: hsl(261, 30%, 38%);
  color: #ffffff;
  padding: 50px;
  border-radius: 12px;
  margin-top: 60px;
}

.terms-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 25px;
  color: #fff;
}

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

.terms-section ul li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #f5f5f5;
}

.terms-section ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: hsl(261, 30%, 63%);
  font-weight: bold;
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .services-header h2 {
    font-size: 2.2rem;
  }
  
  .terms-section {
    padding: 35px 25px;
  }
}

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

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

.promo-offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(138, 99, 161, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

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

.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, hsl(261, 30%, 38%) 0%, hsl(261, 30%, 23%) 100%);
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(82, 59, 97, 0.3);
}

.promo-main-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #222;
  margin-bottom: 25px;
  line-height: 1.2;
}

.promo-main-title span {
  background: linear-gradient(135deg, hsl(261, 30%, 38%), hsl(261, 30%, 63%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, hsl(261, 30%, 38%), hsl(261, 30%, 63%));
  border-radius: 20px 20px 0 0;
}

.deadline-wrapper {
  background: linear-gradient(135deg, hsl(261, 30%, 38%) 0%, hsl(261, 30%, 23%) 100%);
  padding: 35px;
  border-radius: 15px;
  margin-bottom: 45px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(82, 59, 97, 0.25);
}

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

.deadline-date {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
}

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

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

.benefit-item:hover {
  background: #e9ecef;
  transform: translateY(-3px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, hsl(261, 30%, 63%), hsl(261, 30%, 38%));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.benefit-text {
  flex: 1;
}

.benefit-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.benefit-text p {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.discount-highlight {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-left: 4px solid hsl(261, 30%, 38%);
  padding: 25px 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.discount-percentage {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: hsl(261, 30%, 38%);
  line-height: 1;
}

.discount-info {
  flex: 1;
}

.discount-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.discount-info p {
  font-size: 16px;
  color: #555;
  margin: 0;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, hsl(261, 30%, 38%) 0%, hsl(261, 30%, 23%) 100%);
  color: #ffffff;
  padding: 18px 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(82, 59, 97, 0.3);
  border: none;
  cursor: pointer;
  font-family: 'Source Sans Pro', sans-serif;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(82, 59, 97, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.terms-note {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 25px;
  font-style: italic;
}

@media (max-width: 768px) {
  .promo-offer-section {
    padding: 60px 0;
  }
  
  .promo-main-title {
    font-size: 36px;
  }
  
  .promo-card {
    padding: 35px 25px;
  }
  
  .deadline-date {
    font-size: 32px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .discount-highlight {
    flex-direction: column;
    text-align: center;
  }
  
  .discount-percentage {
    font-size: 48px;
  }
}

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

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

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

.advantages-section .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(261, 30%, 23%);
  margin-bottom: 15px;
}

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

.advantage-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  margin-bottom: 30px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  border-left: 4px solid hsl(261, 30%, 63%);
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-left-color: hsl(261, 30%, 38%);
}

.advantage-icon {
  font-size: 2.8rem;
  color: hsl(261, 30%, 38%);
  margin-bottom: 20px;
  display: inline-block;
  transition: color 0.3s ease;
}

.advantage-card:hover .advantage-icon {
  color: hsl(261, 30%, 63%);
}

.advantage-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
}

.advantage-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .advantages-section {
    padding: 50px 0;
  }
  
  .advantages-section .section-title {
    font-size: 2rem;
  }
  
  .advantage-card {
    padding: 25px 20px;
  }
}

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

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

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

.testimonials-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: hsl(261, 30%, 23%);
  margin-bottom: 15px;
  font-weight: 700;
}

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

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

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

.testimonial-rating {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.testimonial-rating i {
  color: #ffc107;
  font-size: 18px;
}

.testimonial-rating i.text-muted {
  color: #dee2e6 !important;
}

.testimonial-text {
  color: #333;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.author-info h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: hsl(261, 30%, 38%);
  margin-bottom: 4px;
  font-weight: 600;
}

.author-info p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

.testimonial-date {
  font-size: 12px;
  color: #999;
}

@media (max-width: 768px) {
  #testimonials {
    padding: 50px 0;
  }
  
  .testimonials-header h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 25px;
  }
}

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

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

#statistics::before {
content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(139, 99, 156, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(139, 99, 156, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

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

.statistics-header h2 {
font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(261, 30%, 23%);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.statistics-header p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.15rem;
  color: #555;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.stat-card {
  background: white;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border: 1px solid rgba(139, 99, 156, 0.1);
  position: relative;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(139, 99, 156, 0.15);
  border-color: hsl(261, 30%, 63%);
}

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

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, hsl(261, 30%, 48%) 0%, hsl(261, 30%, 63%) 100%);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: hsl(261, 30%, 23%);
  margin-bottom: 8px;
  line-height: 1.2;
}

.stat-label {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-card:nth-child(4n+1) .stat-icon {
  background: linear-gradient(135deg, #8b639c 0%, #a07bb0 100%);
}

.stat-card:nth-child(4n+2) .stat-icon {
  background: linear-gradient(135deg, hsl(261, 30%, 38%) 0%, hsl(261, 30%, 50%) 100%);
}

.stat-card:nth-child(4n+3) .stat-icon {
background: linear-gradient(135deg, #6d4f7d 0%, #8b639c 100%);
}

.stat-card:nth-child(4n+4) .stat-icon {
  background: linear-gradient(135deg, hsl(261, 30%, 45%) 0%, hsl(261, 30%, 60%) 100%);
}

@media (max-width: 768px) {
  #statistics {
    padding: 60px 0;
  }
  
  .statistics-header h2 {
    font-size: 2.2rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .stat-card {
    padding: 28px 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .statistics-header h2 {
    font-size: 1.9rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

.faq-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: hsl(261, 30%, 23%);
  font-weight: 700;
  margin-bottom: 15px;
}

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

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

.faq-tab-btn {
  padding: 12px 28px;
  background: white;
  border: 2px solid hsl(261, 30%, 38%);
  color: hsl(261, 30%, 38%);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-tab-btn:hover {
  background: hsl(261, 30%, 63%);
  border-color: hsl(261, 30%, 63%);
  color: #fff;
  transform: translateY(-2px);
}

.faq-tab-btn.active {
  background: hsl(261, 30%, 38%);
  color: white;
  border-color: hsl(261, 30%, 38%);
}

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

.faq-tab-content {
  display: none;
}

.faq-tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

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

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

.faq-question h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  color: #222;
  margin: 0;
  font-weight: 600;
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: hsl(261, 30%, 38%);
  border-radius: 50%;
  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(261, 30%, 63%);
}

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

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

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

@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }
  
  .faq-header h2 {
    font-size: 2rem;
  }
  
  .faq-tabs {
    gap: 10px;
  }
  
  .faq-tab-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .faq-question {
    padding: 20px;
  }
  
  .faq-question h3 {
    font-size: 1.05rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

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

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

.video-section::before {
content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(261, 30%, 38%) 0%, hsl(261, 30%, 63%) 100%);
}

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

.video-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: hsl(261, 30%, 23%);
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.video-intro {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.video-intro p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 18px;
}

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

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.15);
  background-color: #000;
}

.video-container 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(135deg, rgba(94, 73, 116, 0.85) 0%, rgba(58, 45, 72, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 10;
  border-radius: 12px;
}

.video-overlay:hover {
  background: linear-gradient(135deg, rgba(94, 73, 116, 0.75) 0%, rgba(58, 45, 72, 0.8) 100%);
}

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

.video-overlay:hover .play-button {
  transform: scale(1.15);
  color: hsl(261, 30%, 63%);
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-cta {
  max-width: 750px;
  margin: 45px auto 0;
  text-align: center;
  padding: 35px 30px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.video-cta h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: hsl(261, 30%, 38%);
  margin-bottom: 18px;
}

.video-cta p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.05rem;
  color: #444444;
  line-height: 1.7;
  margin-bottom: 25px;
}

.video-cta-button {
  display: inline-block;
  padding: 14px 40px;
  background: hsl(261, 30%, 38%);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(94, 73, 116, 0.3);
}

.video-cta-button:hover {
  background: hsl(261, 30%, 63%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(94, 73, 116, 0.4);
  text-decoration: none;
}

@media (max-width: 768px) {
  .video-section {
    padding: 60px 0 65px;
  }
  
  .video-header h2 {
    font-size: 2.2rem;
  }
  
  .video-intro p {
    font-size: 1rem;
  }
  
  .video-overlay .play-button {
    font-size: 4.5rem;
  }
  
  .video-cta {
    padding: 25px 20px;
    margin-top: 35px;
  }
  
  .video-cta h3 {
    font-size: 1.4rem;
  }
}

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(261, 30%, 38%) 0%, hsl(261, 30%, 23%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.newsletter-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: #fff;
}

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

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

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

.form-group-newsletter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

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

.newsletter-input:focus {
  outline: none;
  border-color: hsl(261, 30%, 63%);
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

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

.newsletter-btn {
  padding: 16px 45px;
  background: hsl(261, 30%, 63%);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.newsletter-btn:hover {
  background: hsl(261, 30%, 55%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.95);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.95rem;
}

.benefit-icon {
  width: 22px;
  height: 22px;
  background: hsl(261, 30%, 63%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 60px 0;
  }
  
  .newsletter-title {
    font-size: 2rem;
  }
  
  .newsletter-subtitle {
    font-size: 1rem;
  }
  
  .form-group-newsletter {
    flex-direction: column;
  }
  
  .newsletter-input {
    min-width: 100%;
  }
  
  .newsletter-btn {
    width: 100%;
  }
  
  .newsletter-benefits {
    gap: 20px;
  }
}

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

.about-section {
  background: #ffffff;
  padding: 85px 0 90px;
  font-family: 'Source Sans Pro', sans-serif;
}

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

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

.about-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8em;
  color: hsl(261, 30%, 23%);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.about-subtitle {
  font-size: 1.15em;
  color: #555;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

.about-text-block h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.9em;
  color: hsl(261, 30%, 38%);
  margin-bottom: 22px;
  font-weight: 600;
}

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

.about-image-block {
  flex: 1;
}

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

.about-secondary-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-direction: row-reverse;
}

.about-values-section {
  background: rgb(248, 249, 250);
  padding: 60px 0;
  margin-top: 75px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.value-card {
  background: white;
  padding: 32px 28px;
  border-radius: 6px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

.value-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4em;
  color: hsl(261, 30%, 38%);
  margin-bottom: 15px;
  font-weight: 600;
}

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

.mission-statement {
  background: hsl(261, 30%, 38%);
  color: #ffffff;
  padding: 48px 40px;
  border-radius: 8px;
  margin-top: 65px;
  text-align: center;
}

.mission-statement h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: 600;
}

.mission-statement p {
  font-size: 1.1em;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .about-main-content,
  .about-secondary-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-text-block {
    padding-right: 0;
  }
  
  .about-title {
    font-size: 2.3em;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-title {
    font-size: 2em;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-statement {
    padding: 35px 25px;
  }
}

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

.disclaimer-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 65px 0 70px;
  font-family: 'Source Sans Pro', sans-serif;
}

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

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

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

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

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

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

.disclaimer-text strong {
  color: hsl(261, 30%, 23%);
  font-weight: 600;
}

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

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

.privacy-policy {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        color: #2c3e50;
        line-height: 1.8;
        background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    }
    
    .privacy-policy h1 {
        font-size: 2.5em;
        color: #1a252f;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 4px solid #3498db;
        font-weight: 700;
    }
    
    .privacy-policy h2 {
        font-size: 1.8em;
        color: #2c3e50;
        margin-top: 40px;
        margin-bottom: 20px;
        padding-left: 15px;
        border-left: 5px solid #3498db;
        font-weight: 600;
    }
    
    .privacy-policy h3 {
        font-size: 1.3em;
        color: #34495e;
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .effective-date {
        background: #e8f4f8;
        padding: 15px 25px;
        border-radius: 8px;
        margin-bottom: 30px;
        font-weight: 600;
        color: #2980b9;
        border-left: 4px solid #3498db;
    }
    
    .intro-text {
        background: #fff;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        margin-bottom: 30px;
        font-size: 1.05em;
    }
    
    .privacy-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .privacy-policy ul, .privacy-policy ol {
        margin: 15px 0;
        padding-left: 30px;
    }
    
    .privacy-policy li {
        margin-bottom: 12px;
        line-height: 1.7;
    }
    
    .highlight-box {
        background: #fff3cd;
        border-left: 5px solid #ffc107;
        padding: 20px;
        margin: 25px 0;
        border-radius: 5px;
    }
    
    .info-box {
        background: #d1ecf1;
        border-left: 5px solid #17a2b8;
        padding: 20px;
        margin: 25px 0;
        border-radius: 5px;
    }
    
    .rights-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin: 25px 0;
    }
    
    .right-card {
        background: #ffffff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        border-top: 4px solid #3498db;
        transition: transform 0.3s ease;
    }
    
    .right-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    }
    
    .right-card h4 {
        color: #2980b9;
        margin-bottom: 10px;
        font-size: 1.1em;
    }
    
    .platform-section {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        margin: 20px 0;
        border: 1px solid #dee2e6;
    }
    
    .company-info {
        background: #e9ecef;
        padding: 25px;
        border-radius: 10px;
        margin-top: 40px;
        border: 2px solid #adb5bd;
    }
    
    strong {
        color: #2c3e50;
        font-weight: 600;
    }

* {
    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: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }
  
  .header-section .subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 20px;
  }
  
  .sg-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
  }
  
  .entity-banner {
    background: linear-gradient(135deg, hsl(261, 30%, 38%) 0%, hsl(261, 30%, 23%) 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.2);
  }
  
  .entity-banner h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .entity-banner .company-type {
    font-size: 1.1rem;
    opacity: 0.9;
  }
  
  .info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  }
  
  .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(261, 30%, 38%);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid hsl(261, 30%, 63%);
  }
  
  .info-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
  }
  
  .info-row:last-child {
    border-bottom: none;
  }
  
  .info-label {
    flex: 0 0 40%;
    font-weight: 600;
    color: hsl(261, 30%, 23%);
    font-size: 0.95rem;
  }
  
  .info-value {
    flex: 0 0 60%;
    color: #333;
    font-size: 0.95rem;
  }
  
  .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;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  }
  
  .excellence-footer h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .excellence-footer p {
    font-size: 1.05rem;
    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.5rem;
    }
    
    .info-row {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .info-label, .info-value {
      flex: 0 0 100%;
      width: 100%;
    }
    
    .info-label {
      margin-bottom: 5px;
    }
    
    .info-card {
      padding: 20px;
    }
  }

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

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

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

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

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

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

.terms-section h2 {
    color: #3498db;
    font-size: 1.8em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ecf0f1;
    font-weight: 600;
}

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

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

.terms-section ul, .terms-section ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.terms-section li {
    margin-bottom: 12px;
    padding-left: 10px;
    font-size: 1.02em;
}

.terms-section ul li {
    list-style-type: none;
    position: relative;
}

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

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

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

.acceptance-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.acceptance-box h2 {
    color: white;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

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