:root {
            --primary-color: hsl(256, 45%, 46%);
            --secondary-color: hsl(256, 45%, 31%);
            --accent-color: hsl(256, 45%, 71%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Nunito', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--accent-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: #fff;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
            }
        }

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

  .about-section h2 {
    font-family: 'Poppins', sans-serif;
    color: hsl(256, 45%, 31%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .about-section h3 {
    font-family: 'Poppins', sans-serif;
    color: hsl(256, 45%, 46%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .about-section p {
    color: #333333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .about-intro {
    background: linear-gradient(135deg, hsl(256, 45%, 96%), #ffffff);
    padding: 60px 0;
    margin-bottom: 60px;
  }

  .about-intro .lead-text {
    font-size: 1.3rem;
    color: #222222;
    font-weight: 500;
    line-height: 1.9;
  }

  .about-image-wrapper {
    position: relative;
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }

  .about-image-wrapper:hover img {
    transform: scale(1.05);
  }

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

  .value-card {
    background: #f8f9fa;
    padding: 35px 25px;
    border-radius: 10px;
    border-left: 4px solid hsl(256, 45%, 46%);
    transition: all 0.3s ease;
  }

  .value-card:hover {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
  }

  .value-card h4 {
    font-family: 'Poppins', sans-serif;
    color: hsl(256, 45%, 31%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
  }

  .value-card p {
    color: #444444;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.7;
  }

  .stats-row {
    background: hsl(256, 45%, 31%);
    padding: 50px 0;
    margin: 60px 0;
    border-radius: 12px;
  }

  .stat-item {
    text-align: center;
    padding: 20px;
  }

  .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
  }

  .stat-label {
    color: hsl(256, 45%, 85%);
    font-size: 1.1rem;
    font-weight: 500;
  }

  .timeline-section {
    margin: 50px 0;
  }

  .timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    align-items: flex-start;
  }

  .timeline-year {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(256, 45%, 46%);
    min-width: 80px;
  }

  .timeline-content {
    flex: 1;
  }

  .timeline-content p {
    margin-bottom: 10px;
  }

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

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

    .about-section h3 {
      font-size: 1.5rem;
    }

    .about-intro {
      padding: 40px 0;
      margin-bottom: 40px;
    }

    .stat-number {
      font-size: 2.2rem;
    }

    .timeline-item {
      flex-direction: column;
      gap: 15px;
    }

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

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

  .portfolio-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(256, 45%, 71%);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
  }

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

  .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: 20px;
    position: relative;
    display: inline-block;
  }

  .portfolio-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(256, 45%, 46%);
    border-radius: 2px;
  }

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

  .filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
  }

  .filter-btn {
    font-family: 'Nunito', sans-serif;
    padding: 12px 28px;
    background: #ffffff;
    color: #333;
    border: 2px solid hsl(256, 45%, 71%);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(256, 45%, 46%);
    color: #ffffff;
    border-color: hsl(256, 45%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

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

  .portfolio-item {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
  }

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

  .portfolio-image {
    position: relative;
    overflow: hidden;
    height: 280px;
  }

  .portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
  }

  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsl(256, 45%, 46%) 0%, hsl(256, 45%, 31%) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .portfolio-item:hover .portfolio-overlay {
    opacity: 0.9;
  }

  .overlay-icon {
    color: #ffffff;
    font-size: 3rem;
    transform: scale(0);
    transition: transform 0.4s ease;
  }

  .portfolio-item:hover .overlay-icon {
    transform: scale(1);
  }

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-category {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: hsl(256, 45%, 46%);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

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

  .portfolio-description {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .view-details {
    font-family: 'Nunito', sans-serif;
    color: hsl(256, 45%, 46%);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
  }

  .view-details:hover {
    gap: 12px;
    color: hsl(256, 45%, 31%);
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(256, 45%, 46%) 0%, hsl(256, 45%, 31%) 100%);
    color: #ffffff;
    border: none;
    padding: 25px 30px;
  }

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

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

  .btn-close:hover {
    opacity: 1;
  }

  .modal-body {
    padding: 30px;
  }

  .modal-body img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 25px;
  }

  .modal-category {
    font-family: 'Nunito', sans-serif;
    color: hsl(256, 45%, 46%);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  .modal-description {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
  }

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

  .project-details h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 15px;
  }

  .detail-item {
    font-family: 'Nunito', sans-serif;
    display: flex;
    margin-bottom: 10px;
    font-size: 0.95rem;
  }

  .detail-label {
    font-weight: 700;
    color: #333;
    min-width: 120px;
  }

  .detail-value {
    color: #666;
  }

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

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

    .portfolio-grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .filter-buttons {
      gap: 10px;
    }

    .filter-btn {
      padding: 10px 20px;
      font-size: 0.9rem;
    }

    .portfolio-image {
      height: 220px;
    }

    .modal-title {
      font-size: 1.5rem;
    }
  }

  @media (max-width: 576px) {
    .portfolio-header h2 {
      font-size: 1.8rem;
    }

    .portfolio-header p {
      font-size: 1rem;
    }

    .portfolio-content {
      padding: 20px;
    }

    .portfolio-title {
      font-size: 1.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.3/font/bootstrap-icons.min.css');

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

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

  #advantages .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  #advantages .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(256, 45%, 46%);
    border-radius: 2px;
  }

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

  #advantages .advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
  }

  #advantages .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(256, 45%, 46%), hsl(256, 45%, 71%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  #advantages .advantage-card:hover {
    transform: translateY(-10px);
    border-color: hsl(256, 45%, 71%);
    box-shadow: 0 12px 35px rgba(126, 87, 194, 0.2);
  }

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

  #advantages .icon-wrapper {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, hsl(256, 45%, 46%), hsl(256, 45%, 31%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 6px 20px rgba(126, 87, 194, 0.3);
  }

  #advantages .advantage-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(126, 87, 194, 0.4);
  }

  #advantages .icon-wrapper i {
    font-size: 2rem;
    color: #ffffff;
  }

  #advantages .advantage-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 15px;
    text-align: center;
  }

  #advantages .advantage-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
    margin: 0;
  }

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

    #advantages .section-title {
      font-size: 2rem;
    }

    #advantages .section-subtitle {
      font-size: 1rem;
    }

    #advantages .advantage-card {
      margin-bottom: 25px;
    }
  }

  @media (max-width: 576px) {
    #advantages .section-title {
      font-size: 1.75rem;
    }

    #advantages .icon-wrapper {
      width: 65px;
      height: 65px;
    }

    #advantages .icon-wrapper i {
      font-size: 1.75rem;
    }
  }

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

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

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(256, 45%, 46%), hsl(256, 45%, 71%));
  }

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

  #statistics .section-subtitle {
    color: hsl(256, 45%, 46%);
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }

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

  #statistics .section-description {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

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

  #statistics .stat-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  #statistics .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, hsl(256, 45%, 46%), hsl(256, 45%, 71%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  #statistics .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(106, 73, 147, 0.15);
    border-color: hsl(256, 45%, 71%);
  }

  #statistics .stat-card:hover::before {
    transform: scaleX(1);
  }

  #statistics .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, hsl(256, 45%, 46%), hsl(256, 45%, 71%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }

  #statistics .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
  }

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

  #statistics .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: hsl(256, 45%, 46%);
    margin-bottom: 12px;
    line-height: 1;
  }

  #statistics .stat-label {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
  }

  #statistics .stat-context {
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    color: #777;
    line-height: 1.5;
  }

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

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

    #statistics .section-description {
      font-size: 16px;
    }

    #statistics .stats-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }

    #statistics .stat-card {
      padding: 30px 20px;
    }

    #statistics .stat-number {
      font-size: 36px;
    }

    #statistics .stat-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 20px;
    }

    #statistics .stat-icon i {
      font-size: 28px;
    }
  }

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

footer {
    background: linear-gradient(135deg, hsl(256, 45%, 31%) 0%, hsl(256, 45%, 46%) 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    font-family: 'Nunito', sans-serif;
  }
  
  footer h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 1.1rem;
  }
  
  footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.8;
  }
  
  footer a {
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: hsl(256, 45%, 71%);
  }
  
  footer .contact-info {
    margin-bottom: 15px;
  }
  
  footer .contact-info i {
    width: 20px;
    margin-right: 10px;
    color: hsl(256, 45%, 71%);
  }
  
  footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  footer ul li {
    margin-bottom: 10px;
  }
  
  footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
  }
  
  footer .company-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  #cookieNotice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px 0;
    z-index: 9999;
    border-top: 3px solid hsl(256, 45%, 46%);
  }
  
  #cookieNotice h5 {
    font-family: 'Poppins', sans-serif;
    color: #222;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  #cookieNotice p {
    color: #555;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  #cookieNotice .cookie-categories {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  
  #cookieNotice .cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
  }
  
  #cookieNotice .cookie-category:last-child {
    border-bottom: none;
  }
  
  #cookieNotice .cookie-category-name {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
  }
  
  #cookieNotice .cookie-category-desc {
    font-size: 0.85rem;
    color: #666;
    margin-top: 3px;
  }
  
  #cookieNotice .cookie-category-status {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
  }
  
  #cookieNotice .btn-accept-all {
    background: #28a745;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
  }
  
  #cookieNotice .btn-accept-all:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
  }
  
  #cookieNotice .btn-reject {
    background: #6c757d;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
  }
  
  #cookieNotice .btn-reject:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
  }
  
  #cookieNotice .btn-manage {
    background: transparent;
    color: hsl(256, 45%, 46%);
    border: 2px solid hsl(256, 45%, 46%);
    padding: 10px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Nunito', sans-serif;
  }
  
  #cookieNotice .btn-manage:hover {
    background: hsl(256, 45%, 46%);
    color: #ffffff;
    transform: translateY(-2px);
  }
  
  @media (max-width: 768px) {
    footer {
      padding: 40px 0 20px;
    }
    
    footer h5 {
      margin-top: 25px;
    }
    
    #cookieNotice {
      padding: 20px 0;
    }
    
    #cookieNotice .btn-accept-all,
    #cookieNotice .btn-reject,
    #cookieNotice .btn-manage {
      width: 100%;
      margin-bottom: 10px;
    }
  }

.blog-page { padding: 4rem 0; }
.blog-page h1 { margin-bottom: 3rem; text-align: center; }
.blog-card { margin-bottom: 2rem; transition: transform 0.3s; overflow: hidden; }
.blog-card:hover { transform: translateY(-5px); }
.blog-card .card-img-top { height: 200px; object-fit: cover; }
.blog-meta { font-size: 0.9rem; color: #888; margin-bottom: 1rem; }

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Nunito, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(256, 45%, 46%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Poppins, sans-serif; color: hsl(256, 45%, 31%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(256, 45%, 46%); }
.article-hero-img { width: 100%; height: auto; border-radius: 12px; margin-bottom: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.blog-article h2 { color: hsl(256, 45%, 31%); font-family: Poppins, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(256, 45%, 31%); font-family: Poppins, sans-serif; }
.blog-article a { color: hsl(256, 45%, 46%); }
.blog-article a:hover { color: hsl(256, 45%, 71%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(256, 45%, 46%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

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

#contact::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: hsl(256, 45%, 71%);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

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

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

#contact .section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

#contact .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: hsl(256, 45%, 46%);
  border-radius: 2px;
}

#contact .section-header p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

#contact .contact-wrapper {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

#contact .contact-form-container {
  flex: 1;
  background: #ffffff;
  padding: 45px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

#contact .contact-form-container h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 30px;
}

#contact .form-group {
  margin-bottom: 25px;
}

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

#contact .form-label .text-danger {
  color: hsl(256, 45%, 46%);
  margin-left: 3px;
}

#contact .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Nunito', sans-serif;
  color: #333;
  background: #ffffff;
}

#contact .form-control:focus {
  border-color: hsl(256, 45%, 46%);
  box-shadow: 0 0 0 0.2rem rgba(126, 73, 147, 0.15);
  outline: none;
  background: #ffffff;
}

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

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

#contact .btn-submit:hover {
  background: hsl(256, 45%, 31%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(126, 73, 147, 0.3);
}

#contact .contact-info-container {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

#contact .info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-left: 4px solid hsl(256, 45%, 46%);
  transition: all 0.3s ease;
}

#contact .info-card:hover {
  transform: translateX(5px);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.12);
}

#contact .info-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, hsl(256, 45%, 46%), hsl(256, 45%, 71%));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 1.5rem;
}

#contact .info-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
}

#contact .info-card p {
  color: #555;
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 0.95rem;
}

#contact .info-card a {
  color: hsl(256, 45%, 46%);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

#contact .info-card a:hover {
  color: hsl(256, 45%, 31%);
  text-decoration: underline;
}

#contact .hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#contact .hours-list li {
  padding: 8px 0;
  color: #555;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
}

#contact .hours-list li:last-child {
  border-bottom: none;
}

#contact .hours-list li strong {
  color: #333;
  font-weight: 600;
}

@media (max-width: 992px) {
  #contact .contact-wrapper {
    flex-direction: column;
  }

  #contact .contact-info-container {
    flex: 1;
  }

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

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

  #contact .contact-form-container {
    padding: 30px 20px;
  }

  #contact .info-card {
    padding: 25px 20px;
  }

  #contact .section-header h2 {
    font-size: 1.8rem;
  }

  #contact .section-header p {
    font-size: 1rem;
  }
}

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

  :root {
    --primary-color: hsl(256, 45%, 46%);
    --secondary-color: hsl(256, 45%, 31%);
    --accent-color: hsl(256, 45%, 71%);
  }

  .policy-content {
    font-family: 'Nunito', sans-serif;
    color: #333;
    line-height: 1.8;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }

  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
  }

  .policy-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
  }

  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background-color: var(--accent-color);
  }

  .policy-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }

  .policy-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }

  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }

  .policy-content li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
  }

  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }

  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(256, 45%, 85%) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
  }

  .contact-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }

  .contact-section h2 {
    color: white;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
  }

  .contact-section a {
    color: var(--accent-color);
  }

  .contact-section a:hover {
    color: white;
  }

  .last-updated {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-top: 1rem;
  }

  .cookie-type-card {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    transition: transform 0.3s ease;
  }

  .cookie-type-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

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

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

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

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

  .faq-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }

  .faq-accordion .accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
  }

  .faq-accordion .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    background-color: #ffffff;
    padding: 1.5rem 1.75rem;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  .faq-accordion .accordion-button:not(.collapsed) {
    background-color: hsl(256, 45%, 46%);
    color: #ffffff;
  }

  .faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
  }

  .faq-accordion .accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem;
    transition: transform 0.3s ease;
  }

  .faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
  }

  .faq-accordion .accordion-body {
    padding: 1.75rem;
    background-color: #ffffff;
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
  }

  .faq-accordion .accordion-body p {
    margin-bottom: 0.75rem;
  }

  .faq-accordion .accordion-body p:last-child {
    margin-bottom: 0;
  }

  .faq-accordion .accordion-body ul {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
  }

  .faq-accordion .accordion-body li {
    margin-bottom: 0.5rem;
    color: #444;
  }

  .faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background-color: hsl(256, 45%, 96%);
    border-radius: 12px;
  }

  .faq-cta h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
  }

  .faq-cta p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
  }

  .faq-cta .btn-contact {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background-color: hsl(256, 45%, 46%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .faq-cta .btn-contact:hover {
    background-color: hsl(256, 45%, 31%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

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

    .faq-section h2 {
      font-size: 2rem;
    }

    .faq-accordion .accordion-button {
      font-size: 1rem;
      padding: 1.25rem 1.25rem;
    }

    .faq-accordion .accordion-body {
      padding: 1.25rem;
      font-size: 0.95rem;
    }

    .faq-cta h3 {
      font-size: 1.5rem;
    }

    .faq-cta {
      padding: 2rem 1.5rem;
    }
  }

.newsletter-section {
  background: linear-gradient(135deg, hsl(256, 45%, 46%) 0%, hsl(256, 45%, 31%) 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-content {
  position: relative;
  z-index: 2;
}

.newsletter-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

.newsletter-description {
  font-family: 'Nunito', sans-serif;
  font-size: 1.125rem;
  color: #f8f9fa;
  text-align: center;
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

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

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

.newsletter-email-input:focus {
  outline: none;
  border-color: #ffffff;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-email-input::placeholder {
  color: #666;
}

.newsletter-submit-btn {
  padding: 16px 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(256, 45%, 46%);
  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit-btn:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.newsletter-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f8f9fa;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
}

.newsletter-benefit-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-benefit-icon svg {
  width: 14px;
  height: 14px;
  fill: #ffffff;
}

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

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

  .newsletter-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

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

  .newsletter-submit-btn {
    width: 100%;
  }

  .newsletter-benefits {
    gap: 20px;
    margin-top: 30px;
  }

  .newsletter-benefit-item {
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .newsletter-heading {
    font-size: 1.75rem;
  }

  .newsletter-benefits {
    flex-direction: column;
    align-items: center;
  }
}

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

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

  .hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: hsl(256, 45%, 31%);
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: hsl(256, 45%, 46%);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.4;
  }

  .hero-description {
    color: #333333;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: left;
  }

  .hero-image-wrapper {
    margin: 2.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }

  .advantages-list {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
  }

  .advantages-list li {
    color: #333333;
    font-size: 1.05rem;
    padding: 0.9rem 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
  }

  .advantages-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: hsl(256, 45%, 71%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .advantages-list li i {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(256, 45%, 31%);
    font-size: 0.9rem;
  }

  .cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
  }

  .btn-primary-hero {
    background-color: hsl(256, 45%, 46%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid hsl(256, 45%, 46%);
    transition: all 0.3s ease;
    display: inline-block;
  }

  .btn-primary-hero:hover {
    background-color: hsl(256, 45%, 31%);
    border-color: hsl(256, 45%, 31%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

  .btn-secondary-hero {
    background-color: transparent;
    color: hsl(256, 45%, 46%);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid hsl(256, 45%, 46%);
    transition: all 0.3s ease;
    display: inline-block;
  }

  .btn-secondary-hero:hover {
    background-color: hsl(256, 45%, 46%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

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

    .hero-section h1 {
      font-size: 2rem;
    }

    .hero-section h2 {
      font-size: 1.2rem;
    }

    .hero-description {
      font-size: 1rem;
    }

    .advantages-list li {
      font-size: 1rem;
    }

    .cta-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@400;600;700&family=Nunito:wght@400;600;700&display=swap');
  @import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

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

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

  .services-section .subtitle {
    font-family: 'Nunito', sans-serif;
    color: #555;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(108, 73, 138, 0.15);
    border-color: hsl(256, 45%, 71%);
  }

  .service-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(256, 45%, 46%) 0%, hsl(256, 45%, 31%) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
  }

  .service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(256, 45%, 31%) 0%, hsl(256, 45%, 46%) 100%);
  }

  .service-content {
    flex: 1;
  }

  .service-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #222;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }

  .service-content p {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  .service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
  }

  .service-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: hsl(256, 45%, 46%);
    font-size: 1.5rem;
  }

  .service-term {
    font-size: 0.88rem;
    color: #777;
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 6px;
  }

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

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

    .service-card {
      flex-direction: column;
      text-align: center;
      padding: 24px;
    }

    .service-icon {
      margin: 0 auto;
    }

    .service-footer {
      justify-content: center;
    }

    .service-price {
      font-size: 1.3rem;
    }
  }

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

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

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

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-left: 4px solid hsl(256, 45%, 46%);
}

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(256, 45%, 46%) 0%, hsl(256, 45%, 31%) 100%);
  color: #ffffff;
  border-left: 4px solid hsl(256, 45%, 71%);
}

.testimonial-card.featured .testimonial-text,
.testimonial-card.featured .customer-name,
.testimonial-card.featured .customer-location {
  color: #ffffff;
}

.testimonial-card.featured .stars i {
  color: hsl(256, 45%, 71%);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: hsl(256, 45%, 71%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-card.featured .customer-avatar {
  background: #ffffff;
  color: hsl(256, 45%, 46%);
}

.customer-info {
  flex-grow: 1;
}

.customer-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.25rem;
}

.customer-location {
  font-size: 0.95rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.customer-location i {
  color: hsl(256, 45%, 46%);
  font-size: 0.9rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

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

.stars i.empty {
  color: #ddd;
}

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

.testimonial-service {
  font-size: 0.9rem;
  color: hsl(256, 45%, 46%);
  font-weight: 600;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.testimonial-card.featured .testimonial-service {
  color: hsl(256, 45%, 71%);
  border-top-color: rgba(255,255,255,0.2);
}

.testimonial-card.compact {
  padding: 1.5rem;
}

.testimonial-card.compact .testimonial-text {
  font-size: 1rem;
}

.testimonial-card.detailed {
  padding: 2.5rem;
}

.testimonial-quote {
  font-size: 3rem;
  color: hsl(256, 45%, 71%);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
}

.testimonial-card.featured .testimonial-quote {
  color: rgba(255,255,255,0.3);
}

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

.credentials-section {
    padding: 60px 0;
    background-color: #f8f9fa;
  }

  .credentials-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
  }

  .credential-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
  }

  .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .credential-icon {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 15px;
  }

  .credential-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
  }

  @media (max-width: 767px) {
    .credentials-section {
      padding: 40px 0;
    }

    .credentials-section .section-title {
      font-size: 1.6rem;
      margin-bottom: 30px;
    }

    .credential-card {
      padding: 20px 15px;
    }

    .credential-icon {
      font-size: 2rem;
    }
  }

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

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

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

  #blog .blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

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

  #blog .blog-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }

  #blog .blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  #blog .blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
  }

  #blog .blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
  }

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

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

  #blog .blog-title a:hover {
    color: hsl(256, 45%, 46%);
  }

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

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

  #blog .read-more:hover {
    gap: 12px;
    color: hsl(256, 45%, 31%);
  }

  #blog .view-all-btn {
    background: hsl(256, 45%, 46%);
    color: #fff;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 40px;
  }

  #blog .view-all-btn:hover {
    background: hsl(256, 45%, 31%);
    transform: translateY(-2px);
    color: #fff;
  }

  #blog .btn-container {
    text-align: center;
  }

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

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

    #blog .blog-image {
      height: 200px;
    }

    #blog .blog-title {
      font-size: 1.2rem;
    }
  }

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

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

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

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

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, hsl(256, 45%, 46%) 0%, hsl(256, 45%, 31%) 100%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.offer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.offer-description {
    font-family: 'Nunito', sans-serif;
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.deadline-block {
    background: linear-gradient(135deg, hsl(256, 45%, 46%) 0%, hsl(256, 45%, 31%) 100%);
    border-radius: 15px;
    padding: 35px 30px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.deadline-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.deadline-label {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.calendar-icon {
    font-size: 2.5rem;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid hsl(256, 45%, 46%);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, hsl(256, 45%, 46%) 0%, hsl(256, 45%, 31%) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}

.benefit-text {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.discount-highlight {
    background: hsl(256, 45%, 71%);
    color: hsl(256, 45%, 31%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 35px;
}

.discount-percentage {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.discount-text {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 5px 0 0 0;
}

.offer-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, hsl(256, 45%, 46%) 0%, hsl(256, 45%, 31%) 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(103, 72, 142, 0.3);
}

.offer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(103, 72, 142, 0.4);
    color: #fff;
}

.offer-note {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: #777;
    margin-top: 25px;
    font-style: italic;
}

@media (max-width: 768px) {
    .offer-section {
        padding: 60px 0;
    }
    
    .offer-heading {
        font-size: 2rem;
    }
    
    .offer-description {
        font-size: 1rem;
    }
    
    .offer-card {
        padding: 35px 25px;
    }
    
    .deadline-date {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .discount-percentage {
        font-size: 2.5rem;
    }
    
    .benefit-item {
        padding: 15px;
    }
}

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

  .disclaimer-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #222;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  .disclaimer-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
  }

  .disclaimer-icon {
    text-align: center;
    margin-bottom: 30px;
  }

  .disclaimer-icon i {
    font-size: 3.5rem;
    color: hsl(256, 45%, 46%);
    opacity: 0.9;
  }

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

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

    .disclaimer-section h2 {
      font-size: 2rem;
    }

    .disclaimer-content {
      padding: 35px 25px;
    }

    .disclaimer-icon i {
      font-size: 2.8rem;
    }

    .disclaimer-text {
      font-size: 1rem;
      text-align: left;
    }
  }

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

  :root {
    --primary-color: hsl(256, 45%, 46%);
    --secondary-color: hsl(256, 45%, 31%);
    --accent-color: hsl(256, 45%, 71%);
  }

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

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4,
  .policy-content h5,
  .policy-content h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
  }

  .policy-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
  }

  .policy-content h2 {
    font-size: 1.85rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }

  .policy-content h3 {
    font-size: 1.4rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }

  .policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }

  .policy-content a:hover {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--accent-color);
  }

  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }

  .policy-content li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
  }

  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }

  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(256, 45%, 85%) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .info-box p {
    margin-bottom: 0.5rem;
  }

  .info-box p:last-child {
    margin-bottom: 0;
  }

  .effective-date {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
  }

  .section-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--accent-color);
  }

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

  :root {
    --primary-color: hsl(256, 45%, 46%);
    --secondary-color: hsl(256, 45%, 31%);
    --accent-color: hsl(256, 45%, 71%);
  }

  .policy-content {
    font-family: 'Nunito', sans-serif;
    color: #333;
    line-height: 1.8;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }

  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
  }

  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 20px;
  }

  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 70%;
    background-color: var(--accent-color);
    border-radius: 3px;
  }

  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }

  .policy-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }

  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }

  .policy-content li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
  }

  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }

  .intro-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(256, 45%, 85%) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    border-left: 6px solid var(--primary-color);
  }

  .contact-box {
    background-color: hsl(256, 45%, 96%);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2.5rem;
    border: 2px solid var(--accent-color);
  }

  .effective-date {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .highlight-box {
    background-color: hsl(256, 45%, 98%);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin: 1.5rem 0;
    border-radius: 6px;
  }