:root {
            --primary-color: hsl(290, 49%, 47%);
            --secondary-color: hsl(290, 49%, 32%);
            --accent-color: hsl(290, 49%, 72%);
        }

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

        body {
            font-family: 'Nunito', sans-serif;
            color: #333;
            background: white;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        .navbar {
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .navbar-brand:hover {
            color: var(--secondary-color);
            transform: translateY(-2px);
        }

        .navbar-brand img {
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover img {
            transform: rotate(5deg) scale(1.05);
        }

        .nav-link {
            color: #333 !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .nav-link:hover::after {
            width: 80%;
        }

        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 0.5rem 0.75rem;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(147, 51, 234, 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='%239333ea' 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 15px rgba(0,0,0,0.1);
            }

            .nav-link {
                padding: 0.75rem 1rem !important;
                border-bottom: 1px solid #f0f0f0;
            }

            .nav-link:last-child {
                border-bottom: none;
            }
        }

        @media (min-width: 992px) {
            .navbar-expand-lg .navbar-nav .nav-link {
                padding-right: 0.8rem !important;
                padding-left: 0.8rem !important;
            }
        }

.cookies-policy {
        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%);
    }

    .cookies-policy h1 {
        font-size: 2.8em;
        color: #1a252f;
        text-align: center;
        margin-bottom: 20px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

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

    .cookies-policy h2 {
        font-size: 1.9em;
        color: #34495e;
        margin-top: 40px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 3px solid #667eea;
        font-weight: 600;
    }

    .cookies-policy h3 {
        font-size: 1.4em;
        color: #546e7a;
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .intro-text {
        background: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
        border-left: 5px solid #667eea;
    }

    .cookie-category {
        background: white;
        padding: 25px;
        margin: 25px 0;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .cookie-category:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    .cookie-type {
        display: inline-block;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 0.9em;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

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

    .cookie-list li {
        padding: 12px 0;
        padding-left: 30px;
        position: relative;
        border-bottom: 1px solid #ecf0f1;
    }

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

    .cookie-list li:before {
        content: "🍪";
        position: absolute;
        left: 0;
        font-size: 1.2em;
    }

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

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

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

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

    .control-card {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        border-top: 4px solid #667eea;
    }

    .control-card h4 {
        color: #667eea;
        margin-top: 0;
        font-size: 1.2em;
    }

    .retention-table {
        width: 100%;
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        margin: 25px 0;
    }

    .retention-table table {
        width: 100%;
        border-collapse: collapse;
    }

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

    .retention-table td {
        padding: 15px;
        border-bottom: 1px solid #ecf0f1;
    }

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

    .important-note {
        background: #e8f5e9;
        border-left: 5px solid #4caf50;
        padding: 20px;
        margin: 25px 0;
        border-radius: 8px;
    }

    .update-info {
        background: white;
        padding: 25px;
        border-radius: 10px;
        margin-top: 40px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

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

        .cookies-policy h2 {
            font-size: 1.5em;
        }

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

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

footer {
    background: linear-gradient(135deg, hsl(290, 49%, 32%) 0%, hsl(290, 49%, 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-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: hsl(290, 49%, 72%);
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

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

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

.footer-section ul li a {
    color: #f8f9fa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: hsl(290, 49%, 72%);
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
  align-items: flex-start;
    gap: 10px;
}

.contact-item i {
    color: hsl(290, 49%, 72%);
    margin-top: 3px;
}

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

.contact-item a:hover {
    color: hsl(290, 49%, 72%);
}

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

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

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

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

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

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

.cookie-category {
  margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
}

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

.cookie-category h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
}

.cookie-category p {
    color: #666;
    font-size: 0.88rem;
    margin-bottom: 0;
}

.cookie-category .badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    margin-left: 8px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    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;
    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: white;
    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(290, 49%, 47%);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 20px;
    transition: color 0.3s;
    font-size: 1rem;
}

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

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

.blog-page {
            padding: 4rem 0;
        }
        .blog-page h1 {
            margin-bottom: 3rem;
            text-align: center;
            color: hsl(290, 49%, 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(290, 49%, 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(290, 49%, 72%);
        }
        .blog-read-more {
            background-color: hsl(290, 49%, 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(290, 49%, 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.1/font/bootstrap-icons.css');

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: hsl(290, 49%, 72%);
  opacity: 0.08;
  border-radius: 50%;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: hsl(290, 49%, 47%);
  opacity: 0.06;
  border-radius: 50%;
  z-index: 0;
}

.hero-container {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-icon-wrapper {
  margin-bottom: 25px;
  animation: fadeInDown 0.8s ease-out;
}

.hero-icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(290, 49%, 47%) 0%, hsl(290, 49%, 32%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.2);
}

.hero-icon i {
  font-size: 32px;
  color: #fff;
}

.hero-image-container {
  margin-bottom: 35px;
  animation: fadeIn 1s ease-out 0.2s both;
}

.hero-image {
  width: 100%;
  max-width: 680px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

.hero-image:hover {
  transform: translateY(-8px) scale(1.01);
}

.hero-content {
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero-title-accent {
  color: hsl(290, 49%, 47%);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(290, 49%, 32%);
  margin-bottom: 28px;
  line-height: 1.4;
}

.hero-description {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 32px;
  text-align: left;
  padding: 0 15px;
}

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

.hero-feature-item {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 16px;
  padding-left: 40px;
  position: relative;
  line-height: 1.6;
  animation: fadeInLeft 0.6s ease-out both;
}

.hero-feature-item:nth-child(1) { animation-delay: 0.6s; }
.hero-feature-item:nth-child(2) { animation-delay: 0.7s; }
.hero-feature-item:nth-child(3) { animation-delay: 0.8s; }
.hero-feature-item:nth-child(4) { animation-delay: 0.9s; }
.hero-feature-item:nth-child(5) { animation-delay: 1s; }

.hero-feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  background: hsl(290, 49%, 72%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-feature-item i {
  position: absolute;
  left: 5px;
  top: 8px;
  font-size: 14px;
  color: hsl(290, 49%, 32%);
  z-index: 1;
}

.hero-cta-wrapper {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 42px;
  animation: fadeInUp 1s ease-out 1.1s both;
}

.hero-btn {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 38px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-btn-primary {
  background: linear-gradient(135deg, hsl(290, 49%, 47%) 0%, hsl(290, 49%, 32%) 100%);
  color: #fff;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.3);
  background: linear-gradient(135deg, hsl(290, 49%, 52%) 0%, hsl(290, 49%, 37%) 100%);
}

.hero-btn-secondary {
  background: #fff;
  color: hsl(290, 49%, 47%);
  border: 2px solid hsl(290, 49%, 47%);
}

.hero-btn-secondary:hover {
  background: hsl(290, 49%, 47%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.25);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px 70px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-btn {
    font-size: 1rem;
    padding: 14px 32px;
  }
  
  .hero-cta-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-icon {
    width: 60px;
    height: 60px;
  }
  
  .hero-icon i {
    font-size: 28px;
  }
}

@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.8rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 15px;
}

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

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

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

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

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

.blog-category {
  display: inline-block;
  background: hsl(290, 49%, 47%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

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

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

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

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

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

.blog-card a.read-more:hover {
  gap: 14px;
  color: hsl(290, 49%, 32%);
}

.blog-cta {
  text-align: center;
  margin-top: 45px;
}

.blog-cta .btn-view-all {
  display: inline-block;
  background: hsl(290, 49%, 47%);
  color: white;
  padding: 14px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: 2px solid hsl(290, 49%, 47%);
}

.blog-cta .btn-view-all:hover {
  background: hsl(290, 49%, 32%);
  border-color: hsl(290, 49%, 32%);
  transform: scale(1.05);
}

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

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

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

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

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

#testimonials .section-subtitle {
  color: #666;
font-size: 1.1rem;
  margin-bottom: 50px;
}

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

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

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

.client-info h5 {
  font-family: 'Poppins', sans-serif;
  color: #333;
  margin-bottom: 5px;
font-size: 1.1rem;
    font-weight: 600;
}

.client-location {
color: #888;
  font-size: 0.9rem;
}

.rating {
  color: hsl(290, 49%, 47%);
font-size: 1.1rem;
}

.rating i {
  margin-left: 2px;
}

.testimonial-text {
  color: #555;
line-height: 1.7;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

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

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

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

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

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

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

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

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

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

.promo-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 35px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.promo-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  margin-top: 40px;
}

.deadline-box {
  background: linear-gradient(135deg, hsl(290, 49%, 72%) 0%, hsl(290, 49%, 47%) 100%);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
}

.deadline-label {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.promo-description {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 35px;
  text-align: center;
}

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

.benefits-list li {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  color: #222;
  padding: 15px 20px;
  margin-bottom: 12px;
  background: #f8f9fa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.benefits-list li:hover {
  background: hsl(290, 49%, 72%);
  transform: translateX(5px);
  color: #fff;
}

.benefits-list i {
  font-size: 1.4rem;
  color: hsl(290, 49%, 47%);
  min-width: 30px;
}

.benefits-list li:hover i {
  color: #fff;
}

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

.promo-btn {
  display: inline-block;
  background: hsl(290, 49%, 47%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-btn:hover {
  background: hsl(290, 49%, 32%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  color: #fff;
}

.discount-badge {
  position: absolute;
  top: -20px;
  right: 30px;
  background: #ff4757;
  color: #fff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 10px 25px rgba(255,71,87,0.4);
  animation: pulse 2s infinite;
}

.discount-badge .percent {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.discount-badge .text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

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

@media (max-width: 768px) {
  .promo-section {
    padding: 60px 0;
  }
  
  .promo-title {
    font-size: 2.5rem;
  }
  
  .promo-subtitle {
    font-size: 1.1rem;
  }
  
  .promo-card {
    padding: 35px 25px;
  }
  
  .deadline-date {
    font-size: 2rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .discount-badge {
    width: 70px;
    height: 70px;
    right: 15px;
  }
  
  .discount-badge .percent {
    font-size: 1.5rem;
  }
}

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

.services-section {
  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: #222;
  margin-bottom: 15px;
}

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

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

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

.services-tabs .nav-tabs .nav-link:hover {
  color: hsl(290, 49%, 47%);
  background: rgba(146, 74, 143, 0.1);
}

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

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(146, 74, 143, 0.25);
  border-color: hsl(290, 49%, 72%);
}

.service-card .icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(290, 49%, 47%) 0%, hsl(290, 49%, 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: #fff;
}

.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-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(290, 49%, 47%);
  margin-bottom: 18px;
}

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

.service-card .btn-service {
  background: hsl(290, 49%, 47%);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.service-card .btn-service:hover {
  background: hsl(290, 49%, 32%);
  color: #fff;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

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

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

@media (max-width: 768px) {
  .services-section {
    padding: 50px 0;
  }
  
  .services-section .section-header h2 {
    font-size: 2rem;
  }
  
  .services-tabs .nav-tabs {
    flex-direction: column;
  }
  
  .service-card {
    margin-bottom: 20px;
  }
}

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

.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-weight: 700;
  color: hsl(290, 49%, 32%);
  margin-bottom: 25px;
  font-size: 2.5rem;
  text-align: center;
}

.video-intro-text {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.8;
}

.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

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

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 69, 139, 0.85) 0%, rgba(75, 0, 130, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 10;
}

.video-overlay:hover {
  background: linear-gradient(135deg, rgba(139, 69, 139, 0.75) 0%, rgba(75, 0, 130, 0.75) 100%);
}

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

.play-button {
  font-size: 90px;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.video-overlay:hover .play-button {
  transform: scale(1.15);
  color: hsl(290, 49%, 72%);
}

.video-cta {
  max-width: 750px;
  margin: 45px auto 0;
  text-align: center;
  padding: 35px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.video-cta h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: hsl(290, 49%, 47%);
  margin-bottom: 18px;
  font-size: 1.6rem;
}

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

.cta-button {
  display: inline-block;
  padding: 14px 40px;
  background: hsl(290, 49%, 47%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

.cta-button:hover {
  background: hsl(290, 49%, 32%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 69, 139, 0.3);
}

@media (max-width: 768px) {
  .video-section {
    padding: 60px 0;
  }
  
  .video-section .section-title {
    font-size: 2rem;
  }
  
  .video-intro-text {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  .play-button {
    font-size: 70px;
  }
  
  .video-cta {
    margin: 30px 15px 0;
    padding: 25px;
  }
  
  .video-cta h3 {
    font-size: 1.4rem;
  }
}

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

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

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

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

.portfolio-header p {
  font-size: 1.1rem;
  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: 35px;
  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 35px rgba(138, 78, 138, 0.25);
}

.portfolio-card-header {
  background: linear-gradient(135deg, hsl(290, 49%, 47%) 0%, hsl(290, 49%, 32%) 100%);
  padding: 30px 25px;
  color: #fff;
}

.portfolio-category {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

.portfolio-card-body {
  padding: 25px;
}

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

.portfolio-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 2px solid #f0f0f0;
}

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

.portfolio-tech {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tech-badge {
  background: hsl(290, 49%, 72%);
  color: #fff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

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

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

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

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

.modal-body {
  padding: 35px;
}

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

.modal-body p {
  color: #444;
  line-height: 1.8;
  font-size: 1.05rem;
}

.modal-body ul {
  color: #444;
  line-height: 1.9;
  padding-left: 25px;
}

.modal-body ul li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .portfolio-header h2 {
    font-size: 2.2rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .portfolio-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

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

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

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

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

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

.contact-form-wrapper {
  background: white;
  padding: 45px;
  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.9rem;
  color: hsl(290, 49%, 32%);
  margin-bottom: 25px;
  font-weight: 600;
}

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

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

.contact-form .form-control:focus {
  border-color: hsl(290, 49%, 47%);
  box-shadow: 0 0 0 0.2rem rgba(153, 77, 153, 0.15);
  background: white;
  outline: none;
}

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

.form-check-input {
  width: 1.2em;
  height: 1.2em;
  border: 2px solid #999;
  margin-top: 0.2em;
}

.form-check-input:checked {
  background-color: hsl(290, 49%, 47%);
  border-color: hsl(290, 49%, 47%);
}

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

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

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

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

.submit-btn:hover {
  background: hsl(290, 49%, 32%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(153, 77, 153, 0.3);
}

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

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

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

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

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

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

.info-block {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  margin-bottom: 25px;
}

.info-block h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: hsl(290, 49%, 32%);
  margin-bottom: 20px;
  font-weight: 600;
}

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

.info-item {
  display: flex;
  align-items: start;
  margin-bottom: 18px;
  padding: 12px;
  background: #fafafa;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.info-item:hover {
  background: #f0f0f0;
}

.info-icon {
  width: 45px;
  height: 45px;
  background: hsl(290, 49%, 72%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
  font-size: 1.3rem;
  color: white;
}

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

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

.working-hours {
  background: linear-gradient(135deg, hsl(290, 49%, 47%) 0%, hsl(290, 49%, 32%) 100%);
  padding: 30px;
  border-radius: 12px;
  color: white;
}

.working-hours h4 {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.working-hours .time-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  font-size: 0.98rem;
}

.working-hours .time-row:last-child {
  border-bottom: none;
}

.working-hours .day {
  font-weight: 600;
}

@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: 30px 20px;
  }
  
  .info-block {
    padding: 25px 20px;
  }
  
  .contact-section {
    padding: 60px 0;
  }
}

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

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

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

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

.advantage-card {
  background: white;
  border-radius: 16px;
  padding: 35px 28px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  border: 1px solid rgba(147, 74, 143, 0.1);
  height: 100%;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(147, 74, 143, 0.2);
  border-color: hsl(290, 49%, 47%);
}

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

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

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

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

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

@media (max-width: 768px) {
  #advantages {
    padding: 60px 0;
  }
  
  #advantages .section-title {
    font-size: 2.2rem;
  }
  
  .advantage-card {
    padding: 28px 22px;
  }
}

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(290, 49%, 47%) 0%, hsl(290, 49%, 32%) 100%);
  padding: 80px 0;
  font-family: 'Nunito', sans-serif;
  position: relative;
  overflow: hidden;
}

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

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

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

.newsletter-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 50px 45px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

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

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

.newsletter-subtitle {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

.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: hsl(290, 49%, 72%, 0.15);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 45px;
  height: 45px;
  background: hsl(290, 49%, 47%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

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

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

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

.form-group-inline {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

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

.newsletter-input:focus {
  outline: none;
  border-color: hsl(290, 49%, 47%);
  box-shadow: 0 0 0 4px rgba(155, 81, 155, 0.1);
}

.newsletter-btn {
  padding: 16px 40px;
  background: hsl(290, 49%, 47%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: hsl(290, 49%, 32%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(155, 81, 155, 0.3);
}

.newsletter-privacy {
  text-align: center;
  font-size: 0.85rem;
  color: #777;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 60px 0;
  }
  
  .newsletter-card {
    padding: 35px 25px;
  }
  
  .newsletter-title {
    font-size: 2rem;
  }
  
  .form-group-inline {
    flex-direction: column;
  }
  
  .newsletter-btn {
    width: 100%;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

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

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

.statistics-section::before {
  content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: hsl(290, 49%, 72%);
    opacity: 0.08;
    border-radius: 50%;
    z-index: 0;
}

.statistics-section::after {
    content: '';
position: absolute;
    bottom: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: hsl(290, 49%, 47%);
    opacity: 0.06;
    border-radius: 50%;
    z-index: 0;
}

.stats-container {
    position: relative;
    z-index: 1;
}

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

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

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

.stat-circle {
    text-align: center;
    padding: 25px 15px;
    margin-bottom: 40px;
    transition: transform 0.4s ease;
}

.stat-circle:hover {
    transform: translateY(-8px);
}

.circle-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
}

.circle-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(290, 49%, 47%) 0%, hsl(290, 49%, 32%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(147, 77, 147, 0.25);
    position: relative;
    overflow: hidden;
}

.circle-bg::before {
content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
}

.circle-content {
    position: relative;
    z-index: 2;
}

.circle-icon {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.circle-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

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

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .circle-wrapper {
        width: 140px;
        height: 140px;
    }
    
    .circle-icon {
        font-size: 2rem;
    }
    
    .circle-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.9rem;
    }
    
    .circle-wrapper {
        width: 130px;
        height: 130px;
    }
}

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

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

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

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

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

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

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

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

.faq-question::before {
  content: "Q:";
  font-weight: 700;
  color: hsl(290, 49%, 47%);
  margin-right: 12px;
  flex-shrink: 0;
}

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

.faq-answer::before {
  content: "A:";
  font-weight: 600;
  color: hsl(290, 49%, 72%);
  margin-right: 10px;
}

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

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

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

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

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

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

.about-header .subtitle {
    font-size: 1.2em;
    color: #555;
    font-weight: 400;
}

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

.about-image-left {
    flex: 0 0 35%;
    position: relative;
}

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

.about-text-center {
    flex: 1;
    padding: 0 30px;
}

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

.about-text-center p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.about-content-wrapper.reverse {
    flex-direction: row-reverse;
}

.about-image-right {
    flex: 0 0 35%;
}

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

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

.value-card {
    background: rgb(248, 249, 250);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(146, 77, 142, 0.15);
    border-color: hsl(290, 49%, 72%);
}

.value-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: hsl(290, 49%, 32%);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.mission-box {
    background: linear-gradient(135deg, hsl(290, 49%, 47%) 0%, hsl(290, 49%, 32%) 100%);
    padding: 50px 40px;
    border-radius: 15px;
    margin-top: 60px;
    text-align: center;
    color: white;
}

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

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

@media (max-width: 992px) {
    .about-content-wrapper {
        flex-direction: column;
    }
    
    .about-content-wrapper.reverse {
        flex-direction: column;
    }
    
    .about-image-left,
    .about-image-right {
        flex: 0 0 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-text-center {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-header h2 {
        font-size: 2.2rem;
    }
    
    .about-text-center h3 {
        font-size: 1.6rem;
    }
    
    .mission-box {
        padding: 35px 25px;
    }
    
    .mission-box h3 {
        font-size: 1.8rem;
    }
}

@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: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

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

.disclaimer-content {
  background: white;
  padding: 40px 35px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-left: 4px solid hsl(290, 49%, 47%);
}

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

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 45px 0;
  }
  
  .disclaimer-title {
    font-size: 1.8rem;
  }
  
  .disclaimer-content {
    padding: 30px 25px;
  }
  
  .disclaimer-text {
    font-size: 1rem;
    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(135deg, #f5f7fa 0%, #c3cfe2 100%);
        line-height: 1.8;
        color: #2c3e50;
    }
    
    .privacy-header {
        text-align: center;
        margin-bottom: 50px;
        padding: 40px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .privacy-header h1 {
        font-size: 2.8em;
        color: #1a237e;
        margin-bottom: 15px;
        font-weight: 700;
    }
    
    .last-updated {
        font-size: 1em;
        color: #546e7a;
        font-style: italic;
    }
    
    .privacy-content {
        background: white;
        padding: 50px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .section {
        margin-bottom: 45px;
        border-left: 4px solid #1a237e;
        padding-left: 25px;
    }
    
    .section h2 {
        font-size: 2em;
        color: #1a237e;
        margin-bottom: 20px;
        font-weight: 600;
    }
    
    .section h3 {
        font-size: 1.5em;
        color: #283593;
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .section p {
        margin-bottom: 15px;
        font-size: 1.05em;
        text-align: justify;
    }
    
    .section ul, .section ol {
        margin: 20px 0;
        padding-left: 30px;
    }
    
    .section li {
        margin-bottom: 12px;
        font-size: 1.05em;
    }
    
    .highlight-box {
        background: #e8eaf6;
        border-left: 5px solid #3f51b5;
        padding: 20px;
        margin: 25px 0;
        border-radius: 8px;
    }
    
    .important-notice {
        background: #fff3e0;
        border-left: 5px solid #ff9800;
        padding: 20px;
        margin: 25px 0;
        border-radius: 8px;
    }
    
    .rights-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin: 25px 0;
    }
    
    .right-item {
        background: #f5f5f5;
        padding: 20px;
        border-radius: 10px;
        border-top: 4px solid #1a237e;
    }
    
    .right-item h4 {
        color: #1a237e;
        margin-bottom: 10px;
        font-size: 1.2em;
    }
    
    .platform-box {
        background: #fafafa;
        padding: 20px;
        margin: 15px 0;
        border-radius: 8px;
        border: 2px solid #e0e0e0;
    }
    
    .platform-box h4 {
        color: #283593;
        margin-bottom: 10px;
        font-size: 1.3em;
    }
    
    .company-info {
        background: #e3f2fd;
        padding: 25px;
        border-radius: 10px;
        margin-top: 40px;
        text-align: center;
    }
    
    strong {
        color: #1a237e;
        font-weight: 600;
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 20px 0;
  }
  
  .header-section {
    background: linear-gradient(135deg, #ed1c24 0%, #dc143c 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  
  .header-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 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);
    border: 2px solid rgba(255,255,255,0.3);
  }
  
  .entity-banner {
    background: linear-gradient(135deg, hsl(290, 49%, 47%) 0%, hsl(290, 49%, 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.2);
  }
  
  .entity-banner h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    word-wrap: break-word;
  }
  
  .entity-banner .entity-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 25px 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 40px rgba(0,0,0,0.15);
  }
  
  .info-card h3 {
    color: hsl(290, 49%, 47%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid hsl(290, 49%, 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: 1rem;
  }
  
  .info-value {
    flex: 0 0 60%;
    color: #555;
    font-size: 1rem;
  }
  
  .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 20px;
    text-align: center;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  }
  
  .excellence-footer h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .excellence-footer p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
  }
  
  @media (max-width: 768px) {
    .header-section h1 {
      font-size: 1.8rem;
    }
    
    .entity-banner h2 {
      font-size: 1.8rem;
    }
    
    .info-row {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .info-label,
    .info-value {
      flex: 0 0 100%;
      width: 100%;
    }
    
    .info-value {
      margin-top: 5px;
      padding-left: 0;
    }
    
    .info-card {
      padding: 25px;
    }
  }

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    line-height: 1.8;
    color: #2c3e50;
  }
  
  .terms-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .terms-header h1 {
    font-size: 2.8em;
    color: #1a252f;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .terms-header .subtitle {
    font-size: 1.1em;
    color: #7f8c8d;
    font-style: italic;
  }
  
  .terms-content {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .terms-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-left: 5px solid #3498db;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .terms-section:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.2);
  }
  
  .terms-section h2 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
  }
  
  .terms-section h2::before {
    content: "♪";
    display: inline-block;
    margin-right: 15px;
    color: #3498db;
    font-size: 1.2em;
  }
  
  .terms-section p {
    margin-bottom: 15px;
    text-align: justify;
    color: #34495e;
  }
  
  .terms-section ul {
    list-style: none;
    padding-left: 0;
  }
  
  .terms-section ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #34495e;
  }
  
  .terms-section ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.2em;
  }
  
  .highlight-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 500;
  }
  
  .effective-date {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #ecf0f1;
    border-radius: 8px;
    font-weight: 600;
    color: #2c3e50;
  }
  
  @media (max-width: 768px) {
    .terms-container {
      padding: 30px 15px;
    }
    
    .terms-content {
      padding: 30px 20px;
    }
    
    .terms-header h1 {
      font-size: 2em;
    }
    
    .terms-section {
      padding: 20px;
    }
  }