:root {
            --primary-color: hsl(241, 32%, 44%);
            --secondary-color: hsl(241, 32%, 29%);
            --accent-color: hsl(241, 32%, 69%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Source Sans Pro', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #ffffff;
            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: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-nav {
            align-items: center;
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
            text-decoration: none;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(95, 88, 130, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(95, 88, 130, 1)' 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: #ffffff;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }
            
            .nav-link {
                padding: 0.75rem 1rem;
            }
        }

#about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }

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

  #about .section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(241, 32%, 29%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  #about .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(241, 32%, 44%);
  }

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

  #about .story-block {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin-bottom: 50px;
  }

  #about .story-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  #about .story-image {
    flex: 1;
    min-width: 300px;
  }

  #about .story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  #about .story-text {
    flex: 1;
    min-width: 300px;
  }

  #about .story-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(241, 32%, 29%);
    margin-bottom: 20px;
  }

  #about .story-text p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
  }

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

  #about .value-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 3px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid hsl(241, 32%, 44%);
  }

  #about .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  }

  #about .value-icon {
    width: 70px;
    height: 70px;
    background: hsl(241, 32%, 69%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #ffffff;
  }

  #about .value-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(241, 32%, 29%);
    margin-bottom: 15px;
  }

  #about .value-card p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
  }

  #about .mission-vision {
    background: hsl(241, 32%, 44%);
    border-radius: 12px;
    padding: 50px;
    margin-top: 50px;
    color: #ffffff;
  }

  #about .mission-vision-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
  }

  #about .mission-box,
  #about .vision-box {
    flex: 1;
    min-width: 280px;
  }

  #about .mission-box h3,
  #about .vision-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
  }

  #about .mission-box p,
  #about .vision-box p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: #f0f0f0;
    line-height: 1.8;
  }

  #about .expertise-section {
    margin-top: 60px;
  }

  #about .expertise-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  #about .expertise-text {
    flex: 1;
    min-width: 300px;
  }

  #about .expertise-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: hsl(241, 32%, 29%);
    margin-bottom: 25px;
  }

  #about .expertise-text p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  #about .expertise-image {
    flex: 1;
    min-width: 300px;
  }

  #about .expertise-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

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

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

    #about .story-block {
      padding: 30px 20px;
    }

    #about .story-content {
      flex-direction: column;
    }

    #about .mission-vision {
      padding: 30px 20px;
    }

    #about .mission-vision-content {
      flex-direction: column;
      gap: 30px;
    }

    #about .expertise-content {
      flex-direction: column-reverse;
    }
  }

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

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

  .portfolio-section .lead-text {
    font-family: 'Source Sans Pro', sans-serif;
    color: #555;
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
  }

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

  .filter-btn {
    font-family: 'Source Sans Pro', sans-serif;
    padding: 10px 25px;
    border: 2px solid hsl(241, 32%, 44%);
    background: transparent;
    color: hsl(241, 32%, 44%);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(241, 32%, 44%);
    color: #fff;
    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(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }

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

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

  .portfolio-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

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

  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.85) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
  }

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

  .portfolio-content {
    padding: 25px;
  }

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

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

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

  .portfolio-overlay-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .portfolio-overlay-text {
    font-family: 'Source Sans Pro', sans-serif;
    color: #f0f0f0;
    font-size: 0.95rem;
    line-height: 1.5;
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(241, 32%, 44%) 0%, hsl(241, 32%, 29%) 100%);
    color: #fff;
    border-radius: 12px 12px 0 0;
    padding: 25px 30px;
  }

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

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

  .modal-body {
    padding: 35px;
  }

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

  .modal-category {
    font-family: 'Source Sans Pro', sans-serif;
    color: hsl(241, 32%, 44%);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
  }

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

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

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

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

  .project-details li {
    font-family: 'Source Sans Pro', sans-serif;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
  }

  .project-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(241, 32%, 44%);
    font-weight: bold;
  }

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

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

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

    .filter-buttons {
      gap: 10px;
    }

    .filter-btn {
      padding: 8px 18px;
      font-size: 0.9rem;
    }

    .modal-body {
      padding: 25px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Source+Sans+Pro:wght@400;600&display=swap');
  
  #advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Source Sans Pro', sans-serif;
  }
  
  #advantages .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  #advantages .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(241, 32%, 29%);
    margin-bottom: 15px;
  }
  
  #advantages .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  #advantages .advantage-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }
  
  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    border-color: hsl(241, 32%, 69%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }
  
  #advantages .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(241, 32%, 44%) 0%, hsl(241, 32%, 29%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
  }
  
  #advantages .advantage-card:hover .icon-wrapper {
    transform: rotate(360deg);
    background: linear-gradient(135deg, hsl(241, 32%, 69%) 0%, hsl(241, 32%, 44%) 100%);
  }
  
  #advantages .icon-wrapper i {
    font-size: 32px;
    color: #ffffff;
  }
  
  #advantages .advantage-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: hsl(241, 32%, 29%);
    margin-bottom: 15px;
  }
  
  #advantages .advantage-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    #advantages {
      padding: 50px 0;
    }
    
    #advantages .section-title {
      font-size: 2rem;
    }
    
    #advantages .advantage-card {
      margin-bottom: 25px;
    }
  }

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

  #statistics {
    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(241, 32%, 44%) 0%, hsl(241, 32%, 69%) 100%);
  }

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

  #statistics .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(241, 32%, 29%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

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

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

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

  #statistics .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(241, 32%, 44%), hsl(241, 32%, 69%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  #statistics .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: hsl(241, 32%, 69%);
  }

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

  #statistics .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, hsl(241, 32%, 44%), hsl(241, 32%, 69%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.4s ease;
  }

  #statistics .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(91, 81, 128, 0.3);
  }

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

  #statistics .stat-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    line-height: 1.5;
  }

  #statistics .stat-context {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.85rem;
    color: #888;
    margin-top: 8px;
    font-style: italic;
  }

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

  #statistics .stat-card {
    animation: countUp 0.6s ease-out backwards;
  }

  #statistics .stat-card:nth-child(1) { animation-delay: 0.1s; }
  #statistics .stat-card:nth-child(2) { animation-delay: 0.15s; }
  #statistics .stat-card:nth-child(3) { animation-delay: 0.2s; }
  #statistics .stat-card:nth-child(4) { animation-delay: 0.25s; }
  #statistics .stat-card:nth-child(5) { animation-delay: 0.3s; }
  #statistics .stat-card:nth-child(6) { animation-delay: 0.35s; }
  #statistics .stat-card:nth-child(7) { animation-delay: 0.4s; }
  #statistics .stat-card:nth-child(8) { animation-delay: 0.45s; }
  #statistics .stat-card:nth-child(9) { animation-delay: 0.5s; }
  #statistics .stat-card:nth-child(10) { animation-delay: 0.55s; }
  #statistics .stat-card:nth-child(11) { animation-delay: 0.6s; }
  #statistics .stat-card:nth-child(12) { animation-delay: 0.65s; }
  #statistics .stat-card:nth-child(13) { animation-delay: 0.7s; }
  #statistics .stat-card:nth-child(14) { animation-delay: 0.75s; }

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

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

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

    #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: 2rem;
    }

    #statistics .stat-icon {
      width: 60px;
      height: 60px;
      font-size: 1.7rem;
    }
  }

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

footer {
    background: linear-gradient(135deg, hsl(241, 32%, 29%) 0%, hsl(241, 32%, 44%) 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px;
    font-family: 'Source Sans Pro', sans-serif;
  }

  footer h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  footer p, footer a, footer li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
  }

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

  footer a:hover {
    color: hsl(241, 32%, 69%);
    padding-left: 5px;
  }

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

  footer ul li {
    margin-bottom: 10px;
  }

  footer .contact-info {
    margin-bottom: 15px;
  }

  footer .contact-info i {
    margin-right: 10px;
    color: hsl(241, 32%, 69%);
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
  }

  .footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
  }

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
  }

  #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(241, 32%, 44%);
    animation: slideUp 0.4s ease-out;
  }

  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }

  #cookieNotice h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    font-size: 1.3rem;
  }

  #cookieNotice p {
    color: #555;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
  }

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

  .cookie-category {
    padding: 8px 0;
    color: #333;
    font-size: 0.9rem;
  }

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

  .cookie-category.required {
    color: hsl(241, 32%, 44%);
  }

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

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

  .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: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }

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

  .btn-settings {
    background: transparent;
    color: hsl(241, 32%, 44%);
    border: 2px solid hsl(241, 32%, 44%);
    padding: 10px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }

  .btn-settings:hover {
    background: hsl(241, 32%, 44%);
    color: #ffffff;
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    footer {
      padding: 40px 0 20px;
      margin-top: 50px;
    }

    footer h5 {
      margin-top: 25px;
      font-size: 1rem;
    }

    #cookieNotice {
      padding: 20px 0;
    }

    #cookieNotice h4 {
      font-size: 1.1rem;
    }

    .cookie-buttons {
      flex-direction: column;
    }

    .btn-accept-all, .btn-reject, .btn-settings {
      width: 100%;
      text-align: center;
    }

    .footer-links {
      flex-direction: column;
      gap: 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: Source Sans Pro, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(241, 32%, 44%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Montserrat, sans-serif; color: hsl(241, 32%, 29%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(241, 32%, 44%); }
.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(241, 32%, 29%); font-family: Montserrat, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(241, 32%, 29%); font-family: Montserrat, sans-serif; }
.blog-article a { color: hsl(241, 32%, 44%); }
.blog-article a:hover { color: hsl(241, 32%, 69%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(241, 32%, 44%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

  .contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(241, 32%, 69%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }

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

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

  .contact-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(241, 32%, 29%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

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

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

  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
  }

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

  .contact-form-wrapper h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(241, 32%, 29%);
    margin-bottom: 30px;
  }

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

  .form-group label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
  }

  .form-group label span {
    color: hsl(241, 32%, 44%);
  }

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

  .form-control:focus {
    border-color: hsl(241, 32%, 44%);
    box-shadow: 0 0 0 0.2rem hsla(241, 32%, 44%, 0.15);
    outline: none;
    background: #ffffff;
  }

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

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

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

  .submit-btn:hover {
    background: hsl(241, 32%, 29%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

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

  .info-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-left: 4px solid hsl(241, 32%, 44%);
    transition: all 0.3s ease;
  }

  .info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  }

  .info-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(241, 32%, 29%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .info-card h4 i {
    color: hsl(241, 32%, 44%);
    font-size: 1.4rem;
  }

  .info-item {
    margin-bottom: 15px;
  }

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

  .info-item p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
  }

  .info-item a {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: hsl(241, 32%, 44%);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
  }

  .info-item a:hover {
    color: hsl(241, 32%, 29%);
    text-decoration: underline;
  }

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

  .hours-list li {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.98rem;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
  }

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

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

  .hours-list li .time {
    color: hsl(241, 32%, 44%);
  }

  @media (max-width: 992px) {
    .contact-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }

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

    .contact-form-wrapper {
      padding: 35px;
    }
  }

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

    .contact-header {
      margin-bottom: 40px;
    }

    .contact-header h2 {
      font-size: 1.75rem;
    }

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

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

    .contact-form-wrapper h3 {
      font-size: 1.5rem;
    }

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

    .info-card h4 {
      font-size: 1.15rem;
    }
  }

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

  :root {
    --primary-color: hsl(241, 32%, 44%);
    --secondary-color: hsl(241, 32%, 29%);
    --accent-color: hsl(241, 32%, 69%);
  }

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

  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

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

  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
  }

  .policy-content h3 {
    font-size: 1.25rem;
    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: color 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-intro {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
  }

  .policy-intro p {
    margin-bottom: 0;
    font-size: 1.1rem;
  }

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

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

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

  .contact-box a {
    color: white;
    text-decoration: underline;
  }

  .last-updated {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 2rem;
  }

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

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

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

  #faq .section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(241, 32%, 29%);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  #faq .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(241, 32%, 44%);
  }

  #faq .section-header p {
    font-size: 1.1rem;
    color: #666;
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  #faq .accordion-button {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(241, 32%, 29%);
    background-color: #ffffff;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  #faq .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: hsl(241, 32%, 44%);
  }

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

  #faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23525f7f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
  }

  #faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }

  #faq .accordion-body {
    padding: 25px;
    background-color: #ffffff;
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid hsl(241, 32%, 69%, 0.2);
  }

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

  #faq .faq-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
  }

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

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

    #faq .accordion-button {
      font-size: 1rem;
      padding: 18px 20px;
    }

    #faq .accordion-body {
      padding: 20px;
      font-size: 0.95rem;
    }
  }

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

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(241, 32%, 44%) 0%, hsl(241, 32%, 29%) 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: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

.newsletter-description {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.125rem;
  color: #f8f9fa;
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  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: 'Source Sans Pro', 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: hsl(241, 32%, 69%);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

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

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

.newsletter-submit-btn:hover {
  background: hsl(241, 32%, 69%);
  border-color: hsl(241, 32%, 69%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.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: 'Source Sans Pro', 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;
    gap: 15px;
  }
}

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

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

  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(241, 32, 44, 0.03) 0%, rgba(241, 32, 69, 0.05) 100%);
    z-index: 0;
  }

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

  .hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.2rem;
    color: hsl(241, 32%, 29%);
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    color: hsl(241, 32%, 44%);
    margin-bottom: 1.8rem;
    line-height: 1.4;
  }

  .hero-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
  }

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

  .hero-advantages li {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.05rem;
    color: #222222;
    padding: 0.8rem 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
  }

  .hero-advantages li::before {
    content: '\F26A';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: hsl(241, 32%, 44%);
    font-size: 1.3rem;
    font-weight: bold;
  }

  .hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
  }

  .btn-hero-primary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    background: hsl(241, 32%, 44%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    border: 2px solid hsl(241, 32%, 44%);
    font-size: 1.05rem;
  }

  .btn-hero-primary:hover {
    background: hsl(241, 32%, 29%);
    border-color: hsl(241, 32%, 29%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .btn-hero-secondary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    background: transparent;
    color: hsl(241, 32%, 44%);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    border: 2px solid hsl(241, 32%, 44%);
    font-size: 1.05rem;
  }

  .btn-hero-secondary:hover {
    background: hsl(241, 32%, 44%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .hero-image-wrapper {
    position: relative;
    z-index: 2;
    padding: 1rem;
  }

  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
  }

  .hero-image-wrapper:hover img {
    transform: scale(1.02);
  }

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

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

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

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

    .hero-image-wrapper {
      margin-top: 3rem;
    }
  }

  @media (max-width: 767px) {
    .hero-section h1 {
      font-size: 2rem;
    }

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

    .hero-buttons {
      flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
      width: 100%;
      justify-content: center;
    }
  }

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

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

.credential-card {
  background: #ffffff;
  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%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.credential-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .credentials-section {
    padding: 50px 0;
  }
  
  .credentials-section .section-title {
    font-size: 1.75rem;
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .credentials-section {
    padding: 40px 0;
  }
  
  .credentials-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .credential-card {
    padding: 20px 15px;
    margin-bottom: 15px;
  }
  
  .credential-icon {
    font-size: 2rem;
  }
}

.offer-section {
  background: linear-gradient(135deg, hsl(241, 32%, 44%) 0%, hsl(241, 32%, 29%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.offer-badge {
  display: inline-block;
  background: hsl(241, 32%, 69%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.offer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.offer-description {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  color: #f8f9fa;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 700px;
}

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

.deadline-wrapper {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, hsl(241, 32%, 69%) 0%, hsl(241, 32%, 44%) 100%);
  border-radius: 15px;
}

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

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

.calendar-icon {
  font-size: 36px;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid #e9ecef;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 17px;
  color: #333;
  line-height: 1.6;
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: hsl(241, 32%, 44%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 2px;
}

.discount-badge {
  display: inline-block;
  background: hsl(241, 32%, 44%);
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

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

.offer-btn {
  display: inline-block;
  background: hsl(241, 32%, 44%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.offer-btn:hover {
  background: hsl(241, 32%, 29%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

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

  .offer-title {
    font-size: 36px;
  }

  .offer-description {
    font-size: 16px;
  }

  .offer-card {
    padding: 35px 25px;
  }

  .deadline-date {
    font-size: 32px;
    flex-direction: column;
    gap: 10px;
  }

  .discount-badge {
    font-size: 24px;
    padding: 12px 24px;
  }

  .benefit-item {
    font-size: 16px;
  }

  .offer-btn {
    font-size: 16px;
    padding: 15px 40px;
  }
}

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

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

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

  .services-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(241, 32%, 44%);
    border-radius: 2px;
  }

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

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 28px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(66, 60, 110, 0.18);
    border-color: hsl(241, 32%, 69%);
  }

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(241, 32%, 44%) 0%, hsl(241, 32%, 29%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
  }

  .service-card:hover .service-icon {
    background: linear-gradient(135deg, hsl(241, 32%, 29%) 0%, hsl(241, 32%, 44%) 100%);
    transform: rotate(360deg);
  }

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

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

  .service-description {
    font-size: 0.98rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
  }

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

  .service-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(241, 32%, 44%);
  }

  .service-price-label {
    font-size: 0.85rem;
    color: #777;
    display: block;
    margin-top: 3px;
  }

  .service-btn {
    background: hsl(241, 32%, 44%);
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .service-btn:hover {
    background: hsl(241, 32%, 29%);
    color: #ffffff;
    transform: scale(1.05);
  }

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

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

    .service-card {
      padding: 28px 22px;
    }

    .service-title {
      font-size: 1.25rem;
    }

    .service-description {
      font-size: 0.95rem;
    }
  }

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

.blog-preview::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(241, 32%, 69%);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

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

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

.blog-preview .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(241, 32%, 29%);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.blog-preview .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: hsl(241, 32%, 44%);
  border-radius: 2px;
}

.blog-preview .section-subtitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin-top: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

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

.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-card-meta {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: flex;
  gap: 15px;
  z-index: 2;
}

.blog-meta-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.85rem;
  color: hsl(241, 32%, 29%);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(5px);
}

.blog-meta-item i {
  color: hsl(241, 32%, 44%);
  font-size: 0.9rem;
}

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

.blog-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(241, 32%, 29%);
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-card-title a {
  color: hsl(241, 32%, 29%);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: hsl(241, 32%, 44%);
}

.blog-card-excerpt {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card-link {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(241, 32%, 44%);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.blog-card-link:hover {
  color: hsl(241, 32%, 29%);
  gap: 12px;
}

.blog-card-link i {
  transition: transform 0.3s ease;
}

.blog-card-link:hover i {
  transform: translateX(4px);
}

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

.btn-view-all {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: hsl(241, 32%, 44%);
  padding: 16px 45px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border: 2px solid hsl(241, 32%, 44%);
}

.btn-view-all:hover {
  background: hsl(241, 32%, 29%);
  border-color: hsl(241, 32%, 29%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

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

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

  .blog-preview .section-subtitle {
    font-size: 1rem;
  }

  .blog-card-image {
    height: 220px;
  }

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

  .blog-card-title {
    font-size: 1.3rem;
  }

  .blog-card-excerpt {
    font-size: 0.95rem;
  }

  .blog-card-meta {
    flex-direction: column;
    gap: 8px;
  }

  .btn-view-all {
    font-size: 1rem;
    padding: 14px 35px;
  }
}

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

.testimonials-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(241, 32%, 29%);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

.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(241, 32%, 44%) 0%, hsl(241, 32%, 29%) 100%);
  color: #ffffff;
  border-left: 4px solid hsl(241, 32%, 69%);
}

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

.testimonial-card.compact {
  padding: 25px;
  background: #f8f9fa;
  border-left: 3px solid hsl(241, 32%, 44%);
}

.testimonial-card.detailed {
  padding: 35px;
  background: #ffffff;
  border: 2px solid hsl(241, 32%, 69%);
  border-left: 5px solid hsl(241, 32%, 44%);
}

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

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

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

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

.testimonial-text.short {
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
}

.testimonial-text.detailed {
  font-size: 0.98rem;
  line-height: 1.8;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.testimonial-card.featured .customer-info {
  border-top: 1px solid rgba(255,255,255,0.2);
}

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(241, 32%, 69%) 0%, hsl(241, 32%, 44%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-card.featured .customer-avatar {
  background: #ffffff;
  color: hsl(241, 32%, 44%);
}

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

.customer-name {
  font-weight: 700;
  color: hsl(241, 32%, 29%);
  font-size: 1.05rem;
  margin-bottom: 3px;
  font-family: 'Montserrat', sans-serif;
}

.customer-location {
  color: #666;
  font-size: 0.9rem;
}

.testimonial-card.featured .customer-location {
  color: rgba(255,255,255,0.9);
}

.service-tag {
  display: inline-block;
  background: hsl(241, 32%, 69%);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.testimonial-card.featured .service-tag {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
}

.quote-icon {
  color: hsl(241, 32%, 69%);
  font-size: 2.5rem;
  opacity: 0.3;
  margin-bottom: 10px;
}

.testimonial-card.featured .quote-icon {
  color: #ffffff;
  opacity: 0.2;
}

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

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

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

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

.disclaimer-icon {
  font-size: 56px;
  color: hsl(241, 32%, 44%);
  margin-bottom: 20px;
}

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

.disclaimer-subtitle {
  font-size: 1.1rem;
  color: #666;
  font-weight: 400;
}

.disclaimer-content {
  background: #f8f9fa;
  padding: 35px;
  border-left: 4px solid hsl(241, 32%, 44%);
  border-radius: 8px;
}

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

.disclaimer-footer {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #e9ecef;
  text-align: center;
}

.disclaimer-footer-text {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 40px 0;
  }
  
  .disclaimer-container {
    padding: 30px 20px;
  }
  
  .disclaimer-title {
    font-size: 2rem;
  }
  
  .disclaimer-icon {
    font-size: 48px;
  }
  
  .disclaimer-content {
    padding: 25px 20px;
  }
  
  .disclaimer-text {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .disclaimer-title {
    font-size: 1.75rem;
  }
  
  .disclaimer-subtitle {
    font-size: 1rem;
  }
  
  .disclaimer-icon {
    font-size: 42px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Source+Sans+Pro:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(241, 32%, 44%);
    --secondary-color: hsl(241, 32%, 29%);
    --accent-color: hsl(241, 32%, 69%);
  }
  
  .policy-content {
    font-family: 'Source Sans Pro', sans-serif;
    color: #2c3e50;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Montserrat', 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: 3px 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: 5px;
    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(--primary-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-color: 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: 600;
  }
  
  .info-box {
    background-color: hsl(241, 32%, 95%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-details {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2.5rem;
  }
  
  .contact-details h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-details a {
    color: white;
    border-bottom-color: var(--accent-color);
  }
  
  .contact-details a:hover {
    color: var(--accent-color);
  }
  
  .last-updated {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }

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

  :root {
    --primary-color: hsl(241, 32%, 44%);
    --secondary-color: hsl(241, 32%, 29%);
    --accent-color: hsl(241, 32%, 69%);
  }

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

  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

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

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

  .policy-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
  }

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

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

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

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

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

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

  .info-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }

  .last-updated {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
  }

  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 2rem 0;
    border: none;
  }