:root {
            --primary-color: hsl(230, 64%, 30%);
            --secondary-color: hsl(230, 64%, 15%);
            --accent-color: hsl(230, 64%, 55%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Source Sans Pro', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Montserrat', 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-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(33, 37, 41, 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, #667eea 0%, #764ba2 100%);
        color: #ffffff;
        line-height: 1.8;
    }

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

    .policy-header h1 {
        font-size: 3em;
        margin-bottom: 15px;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        letter-spacing: 1px;
    }

    .policy-header .subtitle {
        font-size: 1.2em;
        opacity: 0.95;
        font-weight: 300;
    }

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

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

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

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

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

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

    .policy-section h3 {
        color: #4a5568;
        font-size: 1.3em;
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .policy-section p {
        margin-bottom: 15px;
        color: #4a5568;
        text-align: justify;
    }

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

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

    .cookie-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(118, 75, 162, 0.2);
    }

    .cookie-card h4 {
        color: #764ba2;
        font-size: 1.2em;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .cookie-card p {
        font-size: 0.95em;
        line-height: 1.6;
    }

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

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

    .control-list {
        list-style: none;
        padding: 0;
    }

    .control-list li {
        padding: 15px;
        margin: 12px 0;
        background: white;
        border-radius: 8px;
        border-left: 4px solid #667eea;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .control-list li:hover {
        background: #f7fafc;
        transform: translateX(8px);
    }

    .control-list li::before {
        content: "✓";
        color: #667eea;
        font-weight: bold;
        margin-right: 12px;
        font-size: 1.2em;
    }

    .gdpr-badge {
        display: inline-block;
        background: #48bb78;
        color: white;
        padding: 8px 20px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.9em;
        margin: 10px 5px;
        box-shadow: 0 4px 10px rgba(72, 187, 120, 0.3);
    }

    .consent-box {
        background: #fff5f5;
        border: 2px solid #fc8181;
        padding: 25px;
        border-radius: 12px;
        margin: 25px 0;
    }

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

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

        .policy-content {
            padding: 25px;
        }

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

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

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

@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(230, 64%, 15%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  font-family: 'Source Sans Pro', sans-serif;
}

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

footer p {
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

footer a {
  color: hsl(230, 64%, 55%);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 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(230, 64%, 55%);
  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: rgba(255,255,255,0.7);
}

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

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

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

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

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

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

.cookie-required {
  color: hsl(230, 64%, 30%);
  font-size: 0.85rem;
  font-style: italic;
}

.cookie-optional {
  color: #666;
  font-size: 0.85rem;
  font-style: italic;
}

.btn-accept-all {
  background: #28a745;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-right: 10px;
}

.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;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-right: 10px;
}

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

.btn-manage {
  color: hsl(230, 64%, 30%);
  text-decoration: underline;
  font-weight: 600;
  padding: 12px 20px;
  display: inline-block;
  transition: color 0.3s;
}

.btn-manage:hover {
  color: hsl(230, 64%, 55%);
}

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

.blog-page {
            padding: 4rem 0;
        }
        .blog-page h1 {
            margin-bottom: 3rem;
            text-align: center;
            color: hsl(230, 64%, 30%);
        }
        .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(230, 64%, 30%);
        }
        .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(230, 64%, 55%);
        }
        .blog-read-more {
            background-color: hsl(230, 64%, 30%);
            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(230, 64%, 55%);
            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');

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

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 35, 70, 0.75);
  z-index: 2;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: hsl(230, 64%, 85%);
  line-height: 1.4;
}

.hero-description {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #f8f9fa;
  font-weight: 400;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.hero-features li {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.05rem;
  color: #ffffff;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.hero-features li:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.hero-features li i {
  color: hsl(230, 64%, 75%);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 45px;
}

.btn-hero-primary {
  font-family: 'Montserrat', sans-serif;
  background: hsl(230, 64%, 55%);
  color: #ffffff;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-hero-primary:hover {
  background: hsl(230, 64%, 45%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  color: #fff;
}

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

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

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.4rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-section {
    min-height: 90vh;
  }
}

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

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

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

.portfolio-section .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(230, 64%, 30%);
  margin-bottom: 15px;
}

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

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

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

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

.portfolio-card:nth-child(1) { grid-row: span 1; }
.portfolio-card:nth-child(2) { grid-row: span 2; }
.portfolio-card:nth-child(3) { grid-row: span 1; }
.portfolio-card:nth-child(4) { grid-row: span 2; }
.portfolio-card:nth-child(5) { grid-row: span 1; }
.portfolio-card:nth-child(6) { grid-row: span 1; }
.portfolio-card:nth-child(7) { grid-row: span 2; }
.portfolio-card:nth-child(8) { grid-row: span 1; }
.portfolio-card:nth-child(9) { grid-row: span 1; }

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

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

.project-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(230, 64%, 15%);
  margin-bottom: 12px;
}

.project-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

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

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

.view-details {
  color: hsl(230, 64%, 55%);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}

.view-details:hover {
  color: hsl(230, 64%, 30%);
}

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

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

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

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

.modal-category {
  display: inline-block;
  background: hsl(230, 64%, 55%);
  color: white;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.modal-description {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.project-details-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.project-details-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
  color: #555;
  font-size: 1rem;
}

.project-details-list li strong {
  color: hsl(230, 64%, 30%);
  font-weight: 600;
  margin-right: 10px;
}

.btn-close {
  background-color: white;
  opacity: 1;
}

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

@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 .section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: hsl(230, 64%, 30%);
  margin-bottom: 15px;
  text-align: center;
}

#testimonials .section-subtitle {
  font-size: 1.15rem;
  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: 35px 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(230, 64%, 55%);
}

.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 h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 5px;
}

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

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

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

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

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

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

@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.0/font/bootstrap-icons.css');

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

.video-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="2" cy="2" r="1" fill="rgba(42,64,107,0.03)"/></svg>');
  pointer-events: none;
}

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

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

.video-header .lead-text {
  font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
    max-width: 820px;
  margin: 0 auto;
    font-weight: 400;
}

.video-container-wrapper {
  position: relative;
    max-width: 1100px;
  margin: 0 auto 45px;
  z-index: 1;
}

.video-container {
    position: relative;
  padding-bottom: 56.25%;
  height: 0;
    overflow: hidden;
  border-radius: 16px;
    box-shadow: 0 20px 60px rgba(42,64,107,0.15), 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.video-container:hover {
    box-shadow: 0 25px 70px rgba(42,64,107,0.2), 0 10px 25px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

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

.video-overlay {
    position: absolute;
  top: 0;
  left: 0;
    width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(42,64,107,0.85) 0%, rgba(21,32,54,0.9) 100%);
    display: flex;
  align-items: center;
    justify-content: center;
  cursor: pointer;
    z-index: 10;
  transition: all 0.3s ease;
    border-radius: 16px;
}

.video-overlay:hover {
  background: linear-gradient(135deg, rgba(42,64,107,0.75) 0%, rgba(21,32,54,0.8) 100%);
}

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

.play-button {
  color: #ffffff;
    font-size: 6rem;
  transition: all 0.3s ease;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.video-overlay:hover .play-button {
    transform: scale(1.15);
  color: hsl(230, 64%, 55%);
}

.video-cta {
  text-align: center;
    padding: 0 20px;
  position: relative;
    z-index: 1;
}

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

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

.cta-button {
  display: inline-block;
    padding: 14px 40px;
  background: hsl(230, 64%, 30%);
    color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
  font-weight: 600;
    font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(42,64,107,0.25);
}

.cta-button:hover {
    background: hsl(230, 64%, 55%);
  transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42,64,107,0.35);
  color: #ffffff;
}

@media (max-width: 768px) {
  .video-section {
      padding: 60px 0 65px;
  }
  
  .video-header h2 {
    font-size: 2rem;
      margin-bottom: 20px;
  }
  
    .video-header .lead-text {
    font-size: 1rem;
  }
  
  .play-button {
      font-size: 4.5rem;
  }
  
    .video-cta h3 {
    font-size: 1.4rem;
  }
}

@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: 80px 0;
}

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

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

.about-image-block {
    flex: 1;
  max-width: 500px;
}

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

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

.about-section-title {
    font-family: 'Montserrat', sans-serif;
font-size: 42px;
    font-weight: 700;
    color: hsl(230, 64%, 30%);
  margin-bottom: 25px;
    line-height: 1.2;
}

.about-intro-text {
font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #333333;
line-height: 1.8;
    margin-bottom: 30px;
}

.about-story-block {
    background: #f8f9fa;
padding: 35px;
    border-radius: 6px;
  margin-bottom: 25px;
}

.about-story-title {
font-family: 'Montserrat', sans-serif;
    font-size: 24px;
font-weight: 600;
    color: hsl(230, 64%, 15%);
    margin-bottom: 15px;
}

.about-story-text {
    font-family: 'Source Sans Pro', sans-serif;
font-size: 16px;
    color: #444;
    line-height: 1.7;
}

.about-values-section {
  margin-top: 50px;
}

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

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

.about-value-card:hover {
    border-color: hsl(230, 64%, 55%);
transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-value-icon {
    font-size: 38px;
    color: hsl(230, 64%, 55%);
margin-bottom: 18px;
}

.about-value-title {
font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
color: hsl(230, 64%, 15%);
    margin-bottom: 12px;
}

.about-value-description {
    font-family: 'Source Sans Pro', sans-serif;
font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.about-mission-block {
background: linear-gradient(135deg, hsl(230, 64%, 30%) 0%, hsl(230, 64%, 15%) 100%);
    padding: 50px;
border-radius: 8px;
    margin-top: 60px;
    color: #ffffff;
}

.about-mission-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
font-weight: 700;
    margin-bottom: 20px;
}

.about-mission-text {
font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px;
    line-height: 1.8;
  margin-bottom: 0;
}

.about-second-content {
display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 80px;
flex-direction: row-reverse;
}

.about-company-description {
    background: #f5f5f5;
padding: 40px;
    border-radius: 8px;
}

.about-description-title {
    font-family: 'Montserrat', sans-serif;
font-size: 28px;
    font-weight: 600;
    color: hsl(230, 64%, 30%);
margin-bottom: 20px;
}

.about-description-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-highlight-box {
background: white;
    padding: 25px;
border-left: 4px solid hsl(230, 64%, 55%);
    margin-top: 25px;
}

.about-highlight-text {
font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    color: #222;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
.about-content-wrapper,
.about-second-content {
    flex-direction: column;
}

.about-image-block {
    max-width: 100%;
}

.about-section-title {
    font-size: 36px;
}

.about-mission-block {
padding: 40px 30px;
}
}

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

.about-section-title {
font-size: 32px;
}

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

.about-mission-title {
    font-size: 28px;
}
}

@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: #f8f9fa;
  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(230, 64%, 30%);
  margin-bottom: 15px;
font-weight: 700;
}

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

.blog-card {
  background: white;
border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  padding: 30px;
  height: 100%;
transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.blog-category {
  background: hsl(230, 64%, 55%);
color: white;
  padding: 5px 12px;
  border-radius: 4px;
font-size: 0.85rem;
  font-weight: 600;
}

.blog-date {
color: #666;
  font-size: 0.9rem;
display: flex;
  align-items: center;
}

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

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

.blog-card p {
  color: #555;
  line-height: 1.7;
margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card .read-more {
  color: hsl(230, 64%, 55%);
text-decoration: none;
  font-weight: 600;
  display: inline-flex;
align-items: center;
  transition: color 0.3s ease;
}

.blog-card .read-more:hover {
color: hsl(230, 64%, 30%);
}

.blog-card .read-more::after {
  content: '→';
margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.blog-card .read-more:hover::after {
  margin-left: 12px;
}

.view-all-btn {
  text-align: center;
margin-top: 50px;
}

.view-all-btn a {
  display: inline-block;
  background: hsl(230, 64%, 55%);
color: white;
  padding: 14px 40px;
  border-radius: 6px;
text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
transition: background 0.3s ease, transform 0.2s ease;
}

.view-all-btn a:hover {
background: hsl(230, 64%, 30%);
  transform: scale(1.05);
}

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

  #blog .section-header h2 {
font-size: 2rem;
  }

.blog-card {
    margin-bottom: 25px;
}
}

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

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

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23304a7d" opacity="0.03"/></svg>');
    background-size: 50px 50px;
    pointer-events: none;
}

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

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

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

.stat-item {
    text-align: center;
    padding: 35px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(48,74,125,0.08);
    transition: all 0.4s ease;
    position: relative;
    margin-bottom: 30px;
    height: 100%;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(48,74,125,0.15);
}

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

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(230, 64%, 55%) 0%, hsl(230, 64%, 45%) 100%);
}

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

.stat-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.05rem;
    color: #666;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .statistics-section .section-title {
        font-size: 2.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-item {
        padding: 30px 15px;
    }
}

@media (max-width: 576px) {
    .statistics-section .section-title {
        font-size: 1.9rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

@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');

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

#advantages::before {
content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(69, 97, 163, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

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

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

.advantage-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 38px 28px;
  margin-bottom: 32px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(69, 97, 163, 0.12);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

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

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(69, 97, 163, 0.18);
  border-color: hsl(230, 64%, 55%);
}

.advantage-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, hsl(230, 64%, 55%) 0%, hsl(230, 64%, 30%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  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: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: hsl(230, 64%, 15%);
  margin-bottom: 14px;
  line-height: 1.4;
}

.advantage-card p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.98rem;
  color: #666;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 991px) {
  #advantages {
    padding: 70px 0;
  }
  
  .advantages-header h2 {
    font-size: 2.3rem;
  }
  
  .advantage-card {
    padding: 32px 24px;
  }
}

@media (max-width: 767px) {
  #advantages {
    padding: 55px 0;
  }
  
  .advantages-header h2 {
    font-size: 2rem;
  }
  
  .advantages-header {
    margin-bottom: 45px;
  }
  
  .advantage-icon {
    width: 64px;
    height: 64px;
  }
  
  .advantage-icon i {
    font-size: 28px;
  }
}

@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(230, 64%, 30%) 0%, hsl(230, 64%, 15%) 100%);
  padding: 80px 0;
position: relative;
overflow: hidden;
}

.newsletter-section::before {
content: '';
  position: absolute;
top: 0;
left: 0;
  right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
  opacity: 0.4;
}

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

.newsletter-content {
  text-align: center;
max-width: 720px;
margin: 0 auto;
}

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

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

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

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

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

.benefit-icon {
font-size: 2.2rem;
margin-bottom: 12px;
}

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

.benefit-text {
font-family: 'Source Sans Pro', sans-serif;
font-size: 0.95rem;
color: rgba(255,255,255,0.85);
  line-height: 1.5;
margin: 0;
}

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

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

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

.email-input:focus {
outline: none;
  border-color: hsl(230, 64%, 55%);
background: #ffffff;
box-shadow: 0 0 0 4px rgba(255,255,255,0.1);
}

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

.subscribe-btn {
  padding: 16px 40px;
font-family: 'Montserrat', sans-serif;
font-size: 1rem;
font-weight: 600;
  background: hsl(230, 64%, 55%);
color: #ffffff;
border: none;
border-radius: 8px;
  cursor: pointer;
transition: all 0.3s ease;
white-space: nowrap;
}

.subscribe-btn:hover {
background: hsl(230, 64%, 45%);
  transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

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

.privacy-note {
  font-family: 'Source Sans Pro', sans-serif;
font-size: 0.85rem;
color: rgba(255,255,255,0.7);
margin-top: 20px;
}

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

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

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

.benefits-grid {
grid-template-columns: 1fr;
    gap: 20px;
}

.form-wrapper {
flex-direction: column;
}

  .email-input {
min-width: 100%;
}

.subscribe-btn {
    width: 100%;
}
}

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

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

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

.contact-section .section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  color: hsl(230, 64%, 30%);
  font-weight: 700;
  margin-bottom: 15px;
}

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

.contact-form-container {
  background: white;
  padding: 45px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.contact-form-container h3 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(230, 64%, 30%);
  font-size: 1.9rem;
  margin-bottom: 25px;
  font-weight: 600;
}

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

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

.contact-form-container .form-control:focus {
  border-color: hsl(230, 64%, 55%);
  box-shadow: 0 0 0 0.2rem rgba(72, 95, 199, 0.15);
  outline: none;
}

.contact-form-container 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(230, 64%, 55%);
  text-decoration: none;
  font-weight: 600;
}

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

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

.submit-btn:hover {
  background: hsl(230, 64%, 55%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(72, 95, 199, 0.3);
}

.gdpr-notice {
  margin-top: 20px;
  padding: 18px;
  background: #f0f4ff;
  border-left: 4px solid hsl(230, 64%, 55%);
  font-size: 0.88rem;
  border-radius: 6px;
}

.gdpr-notice strong {
  color: hsl(230, 64%, 30%);
  font-size: 1rem;
  display: block;
  margin-bottom: 8px;
}

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

.gdpr-notice a {
  color: hsl(230, 64%, 55%);
  font-weight: 600;
  text-decoration: none;
}

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

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

.contact-info-container h3 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(230, 64%, 30%);
  font-size: 1.9rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.consultation-process {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  margin-bottom: 30px;
}

.consultation-process h4 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(230, 64%, 30%);
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.step-number {
  background: hsl(230, 64%, 55%);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-right: 18px;
}

.step-content h5 {
  color: #333;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

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

.contact-details {
  background: hsl(230, 64%, 30%);
  padding: 30px;
  border-radius: 12px;
  color: white;
}

.contact-details h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #ffffff;
}

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

.contact-icon {
  width: 35px;
  height: 35px;
  background: hsl(230, 64%, 55%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.contact-text {
  color: #f8f9fa;
}

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

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

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

@media (max-width: 576px) {
  .contact-section {
    padding: 50px 0;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
  
  .consultation-process,
  .contact-details {
    padding: 20px;
  }
}

@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.0/font/bootstrap-icons.css');

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

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

.services-section .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(230, 64%, 30%);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

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

.service-card {
  background: white;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 25px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  border: 1px solid #e9ecef;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(41, 56, 115, 0.15);
  border-color: hsl(230, 64%, 55%);
}

.service-icon {
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, hsl(230, 64%, 55%) 0%, hsl(230, 64%, 45%) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotate(8deg) scale(1.08);
}

.service-content {
  flex: 1;
}

.service-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: hsl(230, 64%, 20%);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-description {
  color: #666;
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 16px;
  font-weight: 400;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}

.service-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: hsl(230, 64%, 30%);
}

.service-price-label {
  font-size: 0.85rem;
  color: #888;
  font-weight: 400;
  display: block;
  margin-bottom: 3px;
}

.service-terms {
  font-size: 0.88rem;
  color: #777;
  font-style: italic;
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .services-section .section-title {
    font-size: 2.1rem;
  }
  
  .service-card {
    flex-direction: column;
    padding: 24px;
  }
  
  .service-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
  
  .service-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@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 {
  background: linear-gradient(135deg, hsl(230, 64%, 30%) 0%, hsl(230, 64%, 15%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.promo-offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(230, 64%, 55%);
  opacity: 0.1;
  border-radius: 50%;
}

.promo-offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(230, 64%, 55%);
  opacity: 0.08;
  border-radius: 50%;
}

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

.promo-badge {
  display: inline-block;
  background: hsl(230, 64%, 55%);
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

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

.promo-date-wrapper {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 40px;
  margin: 40px auto;
  max-width: 500px;
  border: 2px solid rgba(255,255,255,0.2);
}

.promo-date-label {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

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

.promo-date i {
  font-size: 2rem;
  color: hsl(230, 64%, 55%);
}

.promo-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 50px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.promo-feature-item {
  background: rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}

.promo-feature-item:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px);
  border-color: hsl(230, 64%, 55%);
}

.promo-feature-icon {
  width: 50px;
  height: 50px;
  background: hsl(230, 64%, 55%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: white;
}

.promo-feature-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}

.promo-cta-btn {
  display: inline-block;
  background: hsl(230, 64%, 55%);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.promo-cta-btn:hover {
  background: hsl(230, 64%, 65%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  color: #fff;
}

.promo-discount-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: #ff6b6b;
  color: white;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 10px 30px rgba(255,107,107,0.4);
  z-index: 3;
}

.promo-discount-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.promo-discount-text {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .promo-title {
    font-size: 2.2rem;
  }
  
  .promo-date {
    font-size: 1.8rem;
  }
  
  .promo-features {
    grid-template-columns: 1fr;
  }
  
  .promo-discount-badge {
    width: 90px;
    height: 90px;
    top: 20px;
    right: 20px;
  }
  
  .promo-discount-number {
    font-size: 1.8rem;
  }
  
  .promo-discount-text {
    font-size: 0.75rem;
  }
}

@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-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

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

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

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

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

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

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

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

.faq-content {
  display: none;
}

.faq-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: white;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.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: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  color: #222;
  margin: 0;
  font-weight: 600;
  padding-right: 20px;
}

.faq-icon {
  font-size: 1.5rem;
  color: hsl(230, 64%, 55%);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.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: #555;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 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: 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

@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: 60px 0;
  font-family: 'Source Sans Pro', sans-serif;
}

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

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

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

.disclaimer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: hsl(230, 64%, 30%);
  margin-bottom: 15px;
}

.disclaimer-content {
  background: white;
  padding: 40px 45px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(230, 64%, 55%);
}

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

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

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

.privacy-policy-container {
    max-width: 1200px;
    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%);
  }

  .privacy-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

  .privacy-header h1 {
    color: #ffffff;
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  }

  .last-updated {
    color: #f0f0f0;
    font-size: 1.1em;
    font-weight: 300;
  }

  .privacy-content {
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  }

  .intro-text {
    font-size: 1.15em;
    color: #555;
    margin-bottom: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-left: 5px solid #667eea;
    border-radius: 8px;
  }

  .company-info {
    background: #e8eaf6;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 2px solid #667eea;
  }

  .company-info strong {
    color: #667eea;
    font-size: 1.1em;
  }

  .section-title {
    color: #667eea;
    font-size: 2em;
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
    font-weight: 600;
  }

  .subsection-title {
    color: #764ba2;
    font-size: 1.5em;
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .content-block {
    margin-bottom: 25px;
    padding: 20px;
    background: #fafbfc;
    border-radius: 10px;
    border-left: 4px solid #667eea;
  }

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

  .info-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    line-height: 1.7;
  }

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

  .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: 30px 0;
  }

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

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

  .right-card h4 {
    color: #667eea;
    margin-bottom: 12px;
    font-size: 1.2em;
  }

  .platform-box {
    background: #fff;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    border-left: 5px solid #764ba2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .platform-box h4 {
    color: #764ba2;
    margin-bottom: 10px;
  }

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

  .warning-box strong {
    color: #856404;
  }

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

  .contact-section h3 {
    font-size: 2em;
    margin-bottom: 20px;
  }

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

  @media (max-width: 768px) {
    .privacy-content {
      padding: 30px 20px;
    }

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

    .section-title {
      font-size: 1.6em;
    }

    .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 10px 30px rgba(0,0,0,0.2);
  }
  
  .header-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  }
  
  .header-section .subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 20px;
  }
  
  .sg-badge {
    display: inline-block;
    background: white;
    color: #ed1c24;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  .entity-banner {
    background: linear-gradient(135deg, hsl(230, 64%, 30%) 0%, hsl(230, 64%, 15%) 100%);
    color: white;
    padding: 50px 20px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
  
  .entity-banner h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .entity-banner .company-type {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
  }
  
  .info-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
  }
  
  .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(230, 64%, 30%);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid hsl(230, 64%, 55%);
  }
  
  .info-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #ecf0f1;
    align-items: center;
  }
  
  .info-row:last-child {
    border-bottom: none;
  }
  
  .info-label {
    flex: 0 0 40%;
    font-weight: 700;
    color: hsl(230, 64%, 15%);
    font-size: 0.95rem;
  }
  
  .info-value {
    flex: 0 0 60%;
    color: #2c3e50;
    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 20px;
    text-align: center;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px 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;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
  }
  
  @media (max-width: 768px) {
    .header-section h1 {
      font-size: 1.8rem;
    }
    
    .entity-banner h2 {
      font-size: 1.6rem;
    }
    
    .info-row {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .info-label,
    .info-value {
      flex: 0 0 100%;
      width: 100%;
    }
    
    .info-value {
      margin-top: 8px;
      padding-left: 15px;
    }
    
    .info-card {
      padding: 25px;
    }
  }

.terms-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
        font-family: 'Georgia', serif;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        line-height: 1.8;
        color: #2c3e50;
    }
    
    .terms-header {
        text-align: center;
        margin-bottom: 50px;
        padding-bottom: 30px;
        border-bottom: 3px solid #3498db;
    }
    
    .terms-header h1 {
        font-size: 2.8em;
        color: #1a252f;
        margin-bottom: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .terms-header p {
        font-size: 1.1em;
        color: #546e7a;
        font-style: italic;
    }
    
    .terms-content {
        background: white;
        padding: 50px;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }
    
    .terms-section {
        margin-bottom: 40px;
        padding: 30px;
        border-left: 5px solid #3498db;
        background: #f8f9fa;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .terms-section:hover {
        transform: translateX(10px);
        box-shadow: -5px 5px 15px rgba(52, 152, 219, 0.2);
    }
    
    .terms-section h2 {
        font-size: 1.9em;
        color: #2980b9;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        font-weight: 600;
    }
    
    .terms-section h2:before {
        content: "§";
        margin-right: 15px;
        font-size: 1.3em;
        color: #3498db;
        font-weight: bold;
    }
    
    .terms-section p {
        margin-bottom: 15px;
        text-align: justify;
        color: #34495e;
        font-size: 1.05em;
    }
    
    .terms-section ul {
        list-style: none;
        padding-left: 0;
    }
    
    .terms-section ul li {
        padding: 12px 0;
        padding-left: 30px;
        position: relative;
        color: #2c3e50;
    }
    
    .terms-section ul li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #27ae60;
        font-weight: bold;
        font-size: 1.2em;
    }
    
    .important-notice {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 30px;
        border-radius: 10px;
        margin: 40px 0;
        text-align: center;
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }
    
    .important-notice h3 {
        font-size: 1.6em;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .effective-date {
        text-align: center;
        font-style: italic;
        color: #7f8c8d;
        margin-top: 50px;
        padding-top: 30px;
        border-top: 2px solid #ecf0f1;
        font-size: 1.1em;
    }
    
    @media (max-width: 768px) {
        .terms-content {
            padding: 30px 20px;
        }
        
        .terms-section {
            padding: 20px;
        }
        
        .terms-header h1 {
            font-size: 2em;
        }
    }