:root {
            --primary-color: hsl(262, 50%, 47%);
            --secondary-color: hsl(262, 50%, 32%);
            --accent-color: hsl(262, 50%, 72%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Nunito', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: rotate(5deg) scale(1.05);
        }
        
        .navbar-nav {
            gap: 5px;
        }
        
        .nav-link {
            color: #444 !important;
            font-weight: 500;
            padding: 0.6rem 1rem !important;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 15px;
        }
        
        .nav-link:hover {
            background: rgba(123, 75, 176, 0.1);
            color: var(--primary-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 0.4rem 0.7rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(123, 75, 176, 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='rgb(123, 75, 176)' 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: #ffffff;
                padding: 1.5rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            }
            
            .nav-link {
                padding: 0.8rem 1rem !important;
                margin-bottom: 0.3rem;
            }
        }
        
        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1.1rem;
            }
            
            .navbar-brand img {
                width: 40px;
                height: 40px;
            }
        }

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

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

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

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

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

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

    .policy-section:hover {
        transform: translateX(10px);
        box-shadow: -5px 5px 20px 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: #764ba2;
        font-size: 1.4em;
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .cookie-type {
        background: #ffffff;
        padding: 20px;
        margin: 15px 0;
        border-radius: 10px;
        border: 2px solid #e2e8f0;
        transition: all 0.3s ease;
    }

    .cookie-type:hover {
        border-color: #667eea;
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
    }

    .cookie-type-title {
        font-weight: 700;
        color: #667eea;
        font-size: 1.1em;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

    .cookie-type-title::before {
        content: "▸";
        margin-right: 10px;
        color: #764ba2;
        font-size: 1.3em;
    }

    .highlight-box {
        background: linear-gradient(135deg, #667eea15, #764ba215);
        padding: 25px;
        border-radius: 12px;
        margin: 20px 0;
        border-left: 4px solid #764ba2;
    }

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

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

    .consent-mode-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
    }

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

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

    ul li {
        padding: 10px 0;
        padding-left: 30px;
        position: relative;
    }

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

    .gdpr-badge {
        display: inline-block;
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 0.9em;
        margin: 10px 5px;
        box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
    }

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

    strong {
        color: #764ba2;
        font-weight: 600;
    }

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

        .policy-content {
            padding: 30px 20px;
        }

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

        .consent-modes {
            grid-template-columns: 1fr;
        }

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

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

footer {
  background: linear-gradient(135deg, hsl(262, 50%, 32%) 0%, hsl(262, 50%, 47%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Nunito', sans-serif;
  margin-top: 80px;
}

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

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

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

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

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

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

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

.footer-links a:hover {
  color: hsl(262, 50%, 72%);
  padding-left: 5px;
}

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

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

.contact-info i {
  color: hsl(262, 50%, 72%);
  margin-top: 3px;
}

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

.contact-info a:hover {
  color: hsl(262, 50%, 72%);
}

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

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

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

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

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

.cookie-text h5 {
  font-family: 'Poppins', sans-serif;
  color: hsl(262, 50%, 32%);
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

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

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

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

.cookie-categories strong {
  color: hsl(262, 50%, 32%);
}

.cookie-categories .required {
  color: #28a745;
  font-weight: 600;
}

.cookie-categories .optional {
  color: #6c757d;
}

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

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

.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: 6px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}

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

.btn-manage {
  color: hsl(262, 50%, 47%);
  text-decoration: none;
  padding: 12px 20px;
  font-weight: 600;
  transition: color 0.3s;
  font-size: 1rem;
}

.btn-manage:hover {
  color: hsl(262, 50%, 32%);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-accept-all, .btn-reject {
    width: 100%;
  }
  
  #cookieNotice {
    padding: 20px 0;
  }
}

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

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

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

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

.hero-text {
    padding-right: 30px;
}

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

.hero-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(262, 50%, 47%);
    margin-bottom: 25px;
}

.hero-description {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px;
}

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

.hero-benefits li {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #333;
    padding: 12px 0 12px 35px;
    position: relative;
    line-height: 1.6;
}

.hero-benefits li:before {
    content: '\f26a';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: hsl(262, 50%, 47%);
    font-size: 1.3rem;
}

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

.btn-primary-hero {
    background: hsl(262, 50%, 47%);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid hsl(262, 50%, 47%);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-hero:hover {
    background: hsl(262, 50%, 32%);
    border-color: hsl(262, 50%, 32%);
    transform: translateY(-2px);
    color: #fff;
}

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

.btn-secondary-hero:hover {
    background: hsl(262, 50%, 47%);
    color: white;
    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.15);
}

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

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

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

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

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

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

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

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

.newsletter-description {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 15px;
  line-height: 1.6;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  color: #fff;
  font-size: 15px;
}

.benefit-icon {
  width: 22px;
  height: 22px;
  background: hsl(262, 50%, 72%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.newsletter-form-wrapper {
  background: rgba(255,255,255,0.95);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

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

.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: hsl(262, 50%, 47%);
  box-shadow: 0 0 0 3px rgba(124, 77, 182, 0.1);
}

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

.newsletter-button {
  padding: 16px 40px;
  background: hsl(262, 50%, 47%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-button:hover {
  background: hsl(262, 50%, 32%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 77, 182, 0.4);
}

.newsletter-button:active {
  transform: translateY(0);
}

.newsletter-privacy {
  text-align: center;
  margin-top: 20px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  color: #666;
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 60px 0;
  }
  
  .newsletter-title {
    font-size: 32px;
  }
  
  .newsletter-description {
    font-size: 16px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-button {
    width: 100%;
  }
  
  .newsletter-benefits {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .newsletter-form-wrapper {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .newsletter-title {
    font-size: 28px;
  }
  
  .newsletter-input {
    padding: 14px 18px;
  }
}

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

.promo-offer-section {
  font-family: 'Nunito', sans-serif;
    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: 600px;
    height: 600px;
  background: radial-gradient(circle, rgba(124, 77, 163, 0.08) 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(124, 77, 163, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

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

.promo-badge {
    display: inline-block;
  background: linear-gradient(135deg, hsl(262, 50%, 47%) 0%, hsl(262, 50%, 32%) 100%);
    color: #ffffff;
  padding: 8px 24px;
    border-radius: 50px;
font-size: 0.9rem;
    font-weight: 700;
  text-transform: uppercase;
    letter-spacing: 1.5px;
  margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(124, 77, 163, 0.3);
}

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

.promo-main-title .highlight {
    color: hsl(262, 50%, 47%);
  position: relative;
    display: inline-block;
}

.promo-description {
font-size: 1.15rem;
    color: #555;
  line-height: 1.8;
    margin-bottom: 35px;
  max-width: 700px;
    margin-left: auto;
margin-right: auto;
}

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

.promo-card::before {
content: '';
    position: absolute;
  top: 0;
    left: 0;
  right: 0;
    height: 6px;
  background: linear-gradient(90deg, hsl(262, 50%, 47%) 0%, hsl(262, 50%, 72%) 100%);
}

.deadline-block {
    background: linear-gradient(135deg, hsl(262, 50%, 47%) 0%, hsl(262, 50%, 32%) 100%);
  border-radius: 15px;
    padding: 30px;
  text-align: center;
    margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(124, 77, 163, 0.25);
}

.deadline-label {
    color: rgba(255,255,255,0.9);
  font-size: 1rem;
    font-weight: 600;
  text-transform: uppercase;
    letter-spacing: 1.2px;
  margin-bottom: 12px;
}

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

.deadline-date i {
font-size: 2.2rem;
}

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

.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: 50px;
    height: 50px;
  background: linear-gradient(135deg, hsl(262, 50%, 47%) 0%, hsl(262, 50%, 72%) 100%);
    border-radius: 10px;
  display: flex;
    align-items: center;
  justify-content: center;
    color: white;
  font-size: 1.5rem;
}

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

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

.discount-highlight {
    background: linear-gradient(135deg, hsl(262, 50%, 72%) 0%, hsl(262, 50%, 47%) 100%);
  border-radius: 15px;
    padding: 25px;
  text-align: center;
    margin-bottom: 35px;
}

.discount-highlight .percentage {
    font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
    font-weight: 800;
  color: #ffffff;
    line-height: 1;
  margin-bottom: 10px;
}

.discount-highlight .text {
    color: rgba(255,255,255,0.95);
  font-size: 1.1rem;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
  background: linear-gradient(135deg, hsl(262, 50%, 47%) 0%, hsl(262, 50%, 32%) 100%);
    color: #ffffff;
  padding: 18px 50px;
    border-radius: 50px;
  font-size: 1.1rem;
    font-weight: 700;
  text-decoration: none;
    text-transform: uppercase;
  letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(124, 77, 163, 0.35);
  transition: all 0.3s ease;
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(124, 77, 163, 0.45);
    color: #ffffff;
  text-decoration: none;
}

@media (max-width: 768px) {
    .promo-main-title {
      font-size: 2rem;
  }
  
    .deadline-date {
      font-size: 1.8rem;
      flex-direction: column;
      gap: 10px;
  }
  
    .benefits-grid {
      grid-template-columns: 1fr;
  }
  
    .discount-highlight .percentage {
      font-size: 2.5rem;
  }
}

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

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

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

#blog .section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  color: hsl(262, 50%, 32%);
  font-weight: 700;
  margin-bottom: 15px;
}

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

.blog-article {
  background: white;
  border-radius: 12px;
  padding: 35px;
  margin-bottom: 30px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.blog-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(123, 79, 166, 0.15);
}

.blog-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(262, 50%, 47%) 0%, hsl(262, 50%, 32%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
}

.blog-content {
  flex: 1;
}

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

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

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

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

.blog-article h3 a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-article h3 a:hover {
  color: hsl(262, 50%, 47%);
}

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

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

.blog-read-more:hover {
  gap: 12px;
  color: hsl(262, 50%, 32%);
}

.view-all-btn {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  padding: 14px 40px;
  background: hsl(262, 50%, 47%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(123, 79, 166, 0.3);
}

.view-all-btn:hover {
  background: hsl(262, 50%, 32%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 79, 166, 0.4);
  color: #fff;
}

@media (max-width: 768px) {
  #blog {
    padding: 60px 0;
  }
  
  .blog-article {
    flex-direction: column;
    padding: 25px;
  }
  
  .blog-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  #blog .section-header h2 {
    font-size: 2rem;
  }
  
  .blog-article h3 {
    font-size: 1.3rem;
  }
}

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

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

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

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

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

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

.about-image {
  flex: 1;
}

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

.about-text {
  flex: 1;
}

.about-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: hsl(262, 50%, 47%);
  margin-bottom: 25px;
  font-weight: 600;
}

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

.timeline-section {
  background: #f8f9fa;
  padding: 60px 40px;
  border-radius: 10px;
  margin-bottom: 70px;
}

.timeline-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  color: #222;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 600;
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: hsl(262, 50%, 72%);
  top: 0;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
  padding-right: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: left;
  padding-left: 50px;
  order: 2;
}

.timeline-content {
  flex: 1;
}

.timeline-year {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: hsl(262, 50%, 47%);
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: hsl(262, 50%, 47%);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid #f8f9fa;
  z-index: 2;
}

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

.value-card {
  background: white;
  padding: 35px 28px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: hsl(262, 50%, 72%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: white;
}

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

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

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

@media (max-width: 992px) {
  .about-content,
  .about-content-reverse {
    flex-direction: column;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    padding-left: 70px;
    padding-right: 0;
    order: 1;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .about-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-header h2 {
    font-size: 1.9rem;
  }
  
  .mission-values {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, hsl(262, 50%, 47%) 0%, hsl(262, 50%, 72%) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(103, 58, 183, 0.2);
  border-color: hsl(262, 50%, 72%);
}

.portfolio-card-category {
  display: inline-block;
  background: hsl(262, 50%, 47%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

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

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

.portfolio-card-tools {
  color: hsl(262, 50%, 47%);
  font-size: 0.9rem;
  font-weight: 600;
}

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

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

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

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

.modal-project-category {
  display: inline-block;
  background: hsl(262, 50%, 72%);
  color: #222;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.modal-project-details h5 {
  font-family: 'Poppins', sans-serif;
  color: #222;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.modal-project-details p {
  color: #444;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.modal-project-info {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-top: 25px;
}

.modal-project-info-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #dee2e6;
}

.modal-project-info-item:last-child {
  border-bottom: none;
}

.modal-project-info-label {
  font-weight: 700;
  color: #222;
}

.modal-project-info-value {
  color: #555;
}

.btn-close {
  filter: brightness(0) invert(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: 25px;
  }
  
  .portfolio-card {
    padding: 28px 22px;
  }
}

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

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

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

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

.video-wrapper {
position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  background-color: #000;
  transition: all 0.3s ease;
}

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

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
width: 100%;
  height: 100%;
  border: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, hsl(262, 50%, 47%) 0%, hsl(262, 50%, 32%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.4s ease;
}

.video-overlay:hover {
opacity: 0.9;
}

.video-overlay .play-button {
  font-size: 5rem;
  color: white;
  transition: transform 0.3s ease;
}

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

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

.video-cta {
  margin-top: 40px;
  text-align: center;
}

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

.video-cta p {
  font-size: 1.05rem;
  color: rgb(85, 85, 85);
  margin-bottom: 30px;
  line-height: 1.7;
}

.cta-button {
  display: inline-block;
  padding: 14px 40px;
  background-color: hsl(262, 50%, 47%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124, 77, 182, 0.3);
}

.cta-button:hover {
background-color: hsl(262, 50%, 32%);
  color: white;
  box-shadow: 0 6px 20px rgba(124, 77, 182, 0.4);
  transform: translateY(-2px);
}

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

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

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

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

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

.statistics-section .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.stat-item {
  background: white;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(123, 79, 149, 0.15);
  border-color: hsl(262, 50%, 72%);
}

.stat-icon {
  font-size: 3rem;
  color: hsl(262, 50%, 47%);
  margin-bottom: 20px;
  display: inline-block;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(262, 50%, 32%);
  margin-bottom: 10px;
  line-height: 1.2;
}

.stat-label {
  font-size: 1.05rem;
  color: #555;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .statistics-section {
    padding: 60px 0;
  }
  
  .statistics-section .section-title {
    font-size: 2rem;
  }
  
  .stats-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
  }
  
  .stat-item {
    padding: 30px 20px;
  }
  
  .stat-number {
    font-size: 2.3rem;
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

.faq-card {
  background: white;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 24px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid hsl(262, 50%, 47%);
}

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

.faq-question {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  color: hsl(262, 50%, 32%);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
}

.faq-question-icon {
  color: hsl(262, 50%, 47%);
  margin-right: 12px;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.faq-answer {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
  padding-left: 32px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-header h2 {
    font-size: 2.2rem;
  }
  
  .faq-card {
    padding: 22px 20px;
  }
  
  .faq-question {
    font-size: 1.1rem;
  }
  
  .faq-answer {
    font-size: 1rem;
    padding-left: 28px;
  }
}

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

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

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

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

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

.contact-form-wrapper h3 {
  font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
  color: hsl(262, 50%, 32%);
margin-bottom: 25px;
}

.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;
  border-radius: 8px;
    font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: hsl(262, 50%, 47%);
    box-shadow: 0 0 0 0.2rem rgba(124, 77, 182, 0.15);
}

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

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

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

.contact-info-card h4 {
font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
  color: hsl(262, 50%, 32%);
  margin-bottom: 20px;
}

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

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 45px;
    height: 45px;
  background: hsl(262, 50%, 72%);
    border-radius: 50%;
  display: flex;
    align-items: center;
  justify-content: center;
  margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-icon i {
  color: white;
    font-size: 1.2rem;
}

.contact-info-text h5 {
  font-weight: 600;
    color: #333;
  margin-bottom: 5px;
    font-size: 1rem;
}

.contact-info-text p {
color: #666;
  margin: 0;
    font-size: 0.95rem;
  line-height: 1.6;
}

.consultation-process {
  background: linear-gradient(to right, hsl(262, 50%, 47%), hsl(262, 50%, 32%));
    padding: 30px;
  border-radius: 12px;
  color: white;
}

.consultation-process h4 {
font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
  margin-bottom: 20px;
}

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

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
  width: 32px;
    height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
    display: flex;
  align-items: center;
    justify-content: center;
  font-weight: 700;
  margin-right: 15px;
    flex-shrink: 0;
  font-size: 0.9rem;
}

.step-text {
    font-size: 0.95rem;
  line-height: 1.7;
}

.submit-btn {
  background: hsl(262, 50%, 47%);
    color: white;
  padding: 14px 45px;
  border: none;
    border-radius: 8px;
  font-size: 1.05rem;
    font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
  width: 100%;
}

.submit-btn:hover {
    background: hsl(262, 50%, 32%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 77, 182, 0.3);
}

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

.form-check-label a {
  color: hsl(262, 50%, 47%);
    text-decoration: none;
  font-weight: 600;
}

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

.gdpr-notice {
  margin-top: 20px;
    padding: 18px;
  background: #f8f9fa;
    border-left: 4px solid hsl(262, 50%, 47%);
  font-size: 0.88rem;
  border-radius: 5px;
}

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

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

.gdpr-notice a {
    color: hsl(262, 50%, 47%);
  text-decoration: none;
  font-weight: 600;
}

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

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

@media (max-width: 576px) {
    .contact-form-wrapper {
    padding: 25px;
  }
  
  .contact-section {
        padding: 50px 0;
  }
  
    .contact-section .section-title {
    font-size: 1.9rem;
  }
}

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

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

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

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

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

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

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

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, hsl(262, 50%, 72%), hsl(262, 50%, 47%));
  transform: translateX(-50%);
}

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

.advantage-item:nth-child(odd) {
  flex-direction: row;
}

.advantage-item:nth-child(even) {
  flex-direction: row-reverse;
}

.advantage-content {
  width: 45%;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
}

.advantage-item:nth-child(odd) .advantage-content {
  margin-right: auto;
  text-align: right;
}

.advantage-item:nth-child(even) .advantage-content {
  margin-left: auto;
  text-align: left;
}

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

.advantage-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: hsl(262, 50%, 47%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 0 0 8px #f8f9fa;
  transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon {
  background: hsl(262, 50%, 32%);
  transform: translateX(-50%) scale(1.1);
}

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

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

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

@media (max-width: 992px) {
  .timeline-line {
    left: 30px;
  }
  
  .advantage-item {
    flex-direction: row !important;
  }
  
  .advantage-content {
    width: calc(100% - 100px);
    margin-left: auto !important;
    text-align: left !important;
  }
  
  .advantage-icon {
    left: 30px;
    transform: translateX(0);
  }
  
  .advantage-item:hover .advantage-icon {
    transform: translateX(0) scale(1.1);
  }
}

@media (max-width: 576px) {
  #advantages {
    padding: 60px 0;
  }
  
  .advantages-header h2 {
    font-size: 2.2rem;
  }
  
  .advantage-content {
    padding: 25px;
  }
  
  .advantage-icon {
    width: 60px;
    height: 60px;
  }
  
  .advantage-icon i {
    font-size: 28px;
  }
}

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

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

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

.services-section .section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(262, 50%, 32%);
  margin-bottom: 20px;
}

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

.services-tabs {
  margin-bottom: 50px;
}

.services-tabs .nav-tabs {
  border-bottom: 3px solid hsl(262, 50%, 72%);
  justify-content: center;
  gap: 15px;
}

.services-tabs .nav-tabs .nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #666;
  border: none;
  padding: 12px 28px;
  border-radius: 8px 8px 0 0;
  transition: all 0.3s ease;
  background: transparent;
}

.services-tabs .nav-tabs .nav-link:hover {
  color: hsl(262, 50%, 47%);
  background: rgba(147, 79, 189, 0.1);
}

.services-tabs .nav-tabs .nav-link.active {
  color: white;
  background: hsl(262, 50%, 47%);
  border: none;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(147, 79, 189, 0.2);
  border-color: hsl(262, 50%, 72%);
}

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

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

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

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

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

.service-card .price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: hsl(262, 50%, 47%);
  margin-bottom: 18px;
}

.service-card .price span {
  font-size: 0.9rem;
  color: #777;
  font-weight: 400;
}

.service-card .features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.service-card .features li {
  padding: 8px 0;
  color: #555;
  font-size: 0.95rem;
}

.service-card .features li i {
  color: hsl(262, 50%, 47%);
  margin-right: 10px;
}

.service-card .btn-service {
  background: hsl(262, 50%, 47%);
  color: #fff;
  border: none;
  padding: 11px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.service-card .btn-service:hover {
  background: hsl(262, 50%, 32%);
  transform: scale(1.05);
}

.tab-content {
  padding-top: 20px;
}

@media (max-width: 768px) {
  .services-section .section-header h2 {
    font-size: 2.2rem;
  }
  
  .services-tabs .nav-tabs {
    flex-direction: column;
    gap: 8px;
  }
  
  .services-tabs .nav-tabs .nav-link {
    border-radius: 8px;
  }
}

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

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

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

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

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

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

.testimonial-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.testimonial-track {
display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: hsl(262, 50%, 47%) #e0e0e0;
}

.testimonial-track::-webkit-scrollbar {
  height: 8px;
}

.testimonial-track::-webkit-scrollbar-track {
background: #e0e0e0;
  border-radius: 10px;
}

.testimonial-track::-webkit-scrollbar-thumb {
  background: hsl(262, 50%, 47%);
  border-radius: 10px;
}

.testimonial-card {
  min-width: 350px;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

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

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

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

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

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

.author-info h4 {
  font-size: 1.05rem;
  color: hsl(262, 50%, 32%);
  margin-bottom: 4px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

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

.testimonial-date {
font-size: 0.82rem;
  color: #999;
  font-style: normal;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.carousel-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: hsl(262, 50%, 47%);
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
background: hsl(262, 50%, 32%);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  #testimonials {
    padding: 60px 0;
  }
  
  .testimonials-header h2 {
    font-size: 2.2rem;
  }
  
  .testimonial-card {
    min-width: 300px;
    padding: 25px;
  }
  
  .testimonials-header p {
    font-size: 1rem;
  }
}

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

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

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

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

.disclaimer-icon {
  font-size: 48px;
  color: hsl(262, 50%, 47%);
  margin-bottom: 20px;
}

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

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

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

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

.privacy-policy {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
        color: #2c3e50;
        line-height: 1.8;
    }
    
    .privacy-header {
        text-align: center;
        padding: 40px 0;
        border-bottom: 3px solid #3498db;
        margin-bottom: 50px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 10px;
        color: white;
    }
    
    .privacy-header h1 {
        font-size: 2.5em;
        margin: 0 0 15px 0;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    }
    
    .last-updated {
        font-size: 0.95em;
        color: #ecf0f1;
        font-style: italic;
    }
    
    .privacy-section {
        background: white;
        padding: 35px;
        margin-bottom: 30px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        border-left: 5px solid #3498db;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .privacy-section:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    }
    
    .privacy-section h2 {
        color: #2c3e50;
        font-size: 1.8em;
        margin-top: 0;
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 2px solid #ecf0f1;
        font-weight: 600;
    }
    
    .privacy-section h3 {
        color: #34495e;
        font-size: 1.3em;
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .privacy-section p {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .privacy-section ul, .privacy-section ol {
        margin: 15px 0;
        padding-left: 30px;
    }
    
    .privacy-section li {
        margin-bottom: 12px;
        line-height: 1.7;
    }
    
    .highlight-box {
        background: #e8f4f8;
        border-left: 4px solid #3498db;
        padding: 20px;
        margin: 20px 0;
        border-radius: 6px;
    }
    
    .important-notice {
        background: #fff3cd;
        border-left: 4px solid #ffc107;
        padding: 20px;
        margin: 20px 0;
        border-radius: 6px;
    }
    
    .rights-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin: 25px 0;
    }
    
    .right-item {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        border: 2px solid #e9ecef;
        transition: all 0.3s ease;
    }
    
    .right-item:hover {
        border-color: #3498db;
        background: #e8f4f8;
    }
    
    .right-item h4 {
        color: #3498db;
        margin-top: 0;
        font-size: 1.1em;
        font-weight: 600;
    }
    
    .company-info {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 30px;
        border-radius: 10px;
        margin-top: 40px;
        text-align: center;
    }
    
    .company-info strong {
        font-size: 1.1em;
        display: block;
        margin-bottom: 8px;
    }
    
    .data-category {
        background: #f1f3f5;
        padding: 15px;
        margin: 10px 0;
        border-radius: 6px;
        border-left: 3px solid #6c757d;
    }
    
    @media (max-width: 768px) {
        .privacy-policy {
            padding: 20px 15px;
        }
        
        .privacy-header h1 {
            font-size: 1.8em;
        }
        
        .privacy-section {
            padding: 25px 20px;
        }
        
        .rights-grid {
            grid-template-columns: 1fr;
        }
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 20px 0;
  }
  
  .header-section {
    background: linear-gradient(135deg, #ed1c24 0%, #dc143c 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  
  .header-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }
  
  .header-section .subtitle {
    font-size: 1.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: 1rem;
    backdrop-filter: blur(10px);
  }
  
  .entity-banner {
    background: linear-gradient(135deg, hsl(262, 50%, 47%) 0%, hsl(262, 50%, 32%) 100%);
    color: white;
    padding: 50px 20px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  }
  
  .entity-banner h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    word-wrap: break-word;
  }
  
  .entity-banner .company-type {
    font-size: 1.1rem;
    opacity: 0.9;
    letter-spacing: 2px;
  }
  
  .info-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }
  
  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0,0,0,0.12);
  }
  
  .card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(262, 50%, 32%);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid hsl(262, 50%, 72%);
  }
  
  .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: #2c3e50;
    font-size: 0.95rem;
  }
  
  .info-value {
    flex: 0 0 60%;
    color: #555;
    font-size: 0.95rem;
  }
  
  .status-active {
    color: #27ae60;
    font-weight: 700;
  }
  
  .status-active::before {
    content: '✓ ';
    font-weight: bold;
  }
  
  .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 30px rgba(0,0,0,0.12);
  }
  
  .excellence-footer h3 {
    font-size: 2rem;
    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.8rem;
    }
    
    .info-row {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .info-label, .info-value {
      flex: 0 0 100%;
      width: 100%;
    }
    
    .info-label {
      margin-bottom: 5px;
    }
    
    .card-title {
      font-size: 1.4rem;
    }
  }

.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Georgia', serif;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    line-height: 1.8;
  }

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

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

  .effective-date {
    font-size: 1.1em;
    color: #555;
    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: 25px;
    border-left: 4px solid #3498db;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .terms-section:hover {
    transform: translateX(5px);
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
  }

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

  .terms-section h2::before {
    content: "§";
    margin-right: 15px;
    color: #3498db;
    font-size: 1.3em;
    font-weight: bold;
  }

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

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

  .terms-section li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #444;
  }

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

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

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

  .acceptance-box {
    background: #d4edda;
    border: 2px solid #28a745;
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
  }

  .acceptance-box p {
    font-size: 1.1em;
    color: #155724;
    font-weight: 500;
    margin: 0;
  }