:root {
            --primary-color: hsl(236, 39%, 35%);
            --secondary-color: hsl(236, 39%, 20%);
            --accent-color: hsl(236, 39%, 60%);
        }
        
        * {
            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: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.25rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
            font-family: 'Nunito', sans-serif;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }
        
        .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='hsl(236, 39%, 35%)' 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 12px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
            }
        }

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

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

  #about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, hsla(236, 39%, 60%, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }

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

  #about .section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(236, 39%, 20%);
    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: linear-gradient(90deg, hsl(236, 39%, 35%) 0%, hsl(236, 39%, 60%) 100%);
    border-radius: 2px;
  }

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

  #about .about-content {
    position: relative;
    z-index: 1;
  }

  #about .story-block {
    background: #ffffff;
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border-left: 5px solid hsl(236, 39%, 35%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #about .story-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  }

  #about .story-block h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: hsl(236, 39%, 35%);
    margin-bottom: 20px;
  }

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

  #about .story-block p:last-child {
    margin-bottom: 0;
  }

  #about .image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    height: 100%;
  }

  #about .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

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

  #about .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, hsla(236, 39%, 35%, 0.1) 0%, transparent 100%);
    pointer-events: none;
  }

  #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: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(236, 39%, 60%);
  }

  #about .value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-top-color: hsl(236, 39%, 35%);
  }

  #about .value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(236, 39%, 35%) 0%, hsl(236, 39%, 60%) 100%);
    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: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(236, 39%, 20%);
    margin-bottom: 12px;
  }

  #about .value-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
  }

  #about .mission-vision {
    background: linear-gradient(135deg, hsl(236, 39%, 35%) 0%, hsl(236, 39%, 20%) 100%);
    border-radius: 16px;
    padding: 50px 40px;
    margin-top: 50px;
    color: #ffffff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
  }

  #about .mission-vision h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
  }

  #about .mission-vision p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #f8f9fa;
    margin-bottom: 30px;
  }

  #about .mission-vision .row:last-child p {
    margin-bottom: 0;
  }

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

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

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

    #about .story-block h3 {
      font-size: 1.6rem;
    }

    #about .mission-vision {
      padding: 35px 25px;
    }

    #about .mission-vision h3 {
      font-size: 1.7rem;
    }

    #about .values-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }

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

  .portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(236, 39%, 35%), hsl(236, 39%, 60%));
  }

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

  .portfolio-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(236, 39%, 20%);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  .portfolio-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(236, 39%, 60%);
  }

  .portfolio-section .section-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 25px 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: 10px 28px;
    border: 2px solid hsl(236, 39%, 35%);
    background: transparent;
    color: hsl(236, 39%, 35%);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(236, 39%, 35%);
    color: #ffffff;
    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;
  }

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

  .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }

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

  .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(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
  }

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

  .portfolio-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: hsl(236, 39%, 60%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
  }

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(236, 39%, 20%);
    margin-bottom: 12px;
    line-height: 1.3;
  }

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

  .portfolio-link {
    font-family: 'Nunito', sans-serif;
    color: hsl(236, 39%, 35%);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  .portfolio-link:hover {
    color: hsl(236, 39%, 60%);
    gap: 12px;
  }

  .portfolio-link::after {
    content: '→';
    font-size: 1.2rem;
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(236, 39%, 35%) 0%, hsl(236, 39%, 20%) 100%);
    color: #ffffff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
  }

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

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

  .modal-body {
    padding: 35px;
  }

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

  .modal-detail-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: hsl(236, 39%, 20%);
    font-size: 1.1rem;
    margin-bottom: 10px;
    margin-top: 20px;
  }

  .modal-detail-text {
    font-family: 'Nunito', sans-serif;
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
  }

  .modal-detail-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
  }

  .modal-detail-list li {
    font-family: 'Nunito', sans-serif;
    color: #555;
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
  }

  .modal-detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(236, 39%, 60%);
    font-weight: bold;
    font-size: 1.2rem;
  }

  .modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 20px 30px;
  }

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

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

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

    .filter-buttons {
      gap: 10px;
    }

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

    .portfolio-image {
      height: 220px;
    }

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

  @media (max-width: 576px) {
    .portfolio-section .section-title {
      font-size: 1.7rem;
    }

    .portfolio-title {
      font-size: 1.2rem;
    }

    .filter-buttons {
      flex-direction: column;
      align-items: stretch;
    }

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

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

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

  #advantages::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(236, 39%, 35%);
    opacity: 0.03;
    border-radius: 50%;
  }

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

  .advantages-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(236, 39%, 20%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

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

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

  .advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    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;
    position: relative;
    overflow: hidden;
  }

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

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

  .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: hsl(236, 39%, 60%);
  }

  .advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(236, 39%, 35%), hsl(236, 39%, 60%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
  }

  .advantage-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    transform: scale(0);
    transition: transform 0.4s ease;
  }

  .advantage-card:hover .advantage-icon::after {
    transform: scale(1.3);
  }

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

  .advantage-icon i {
    font-size: 32px;
    color: #ffffff;
    position: relative;
    z-index: 1;
  }

  .advantage-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: hsl(236, 39%, 20%);
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
  }

  .advantage-card:hover h3 {
    color: hsl(236, 39%, 35%);
  }

  .advantage-card p {
    font-family: 'Nunito', sans-serif;
    font-size: 0.98rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
    margin: 0;
  }

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

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

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

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

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

    .advantage-icon {
      width: 60px;
      height: 60px;
    }

    .advantage-icon i {
      font-size: 28px;
    }

    .advantage-card h3 {
      font-size: 1.2rem;
    }
  }

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

  #statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(236, 39%, 35%) 0%, hsl(236, 39%, 20%) 100%);
    position: relative;
    overflow: hidden;
  }

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
  }

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

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

  .statistics-header p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
  }

  .stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    height: 100%;
  }

  .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background: #ffffff;
  }

  .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, hsl(236, 39%, 60%) 0%, hsl(236, 39%, 35%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }

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

  .stat-icon i {
    font-size: 2.2rem;
    color: #ffffff;
  }

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

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

  .stat-context {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: #777777;
    margin-top: 8px;
  }

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

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

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

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

    .stat-icon {
      width: 70px;
      height: 70px;
    }

    .stat-icon i {
      font-size: 1.8rem;
    }
  }

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

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

footer {
  background: hsl(236, 39%, 20%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  font-family: 'Nunito', sans-serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 1.2rem;
}

footer p, footer ul {
  color: #e0e0e0;
  line-height: 1.8;
}

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

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

footer a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: hsl(236, 39%, 60%);
}

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

.footer-contact-info i {
  color: hsl(236, 39%, 60%);
  margin-right: 10px;
  width: 20px;
}

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

.footer-description {
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.7;
}

#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(236, 39%, 35%);
  font-family: 'Nunito', sans-serif;
}

#cookieNotice .container {
  max-width: 1200px;
}

#cookieNotice h4 {
  font-family: 'Poppins', sans-serif;
  color: hsl(236, 39%, 20%);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

#cookieNotice p {
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cookie-categories {
  margin: 20px 0;
}

.cookie-category {
  background: #f8f9fa;
  padding: 12px 15px;
  border-radius: 6px;
  margin-bottom: 10px;
  border-left: 3px solid hsl(236, 39%, 60%);
}

.cookie-category strong {
  color: hsl(236, 39%, 20%);
  font-weight: 600;
}

.cookie-category span {
  color: #666;
  font-size: 0.9rem;
  display: block;
  margin-top: 5px;
}

.cookie-category.required {
  border-left-color: #28a745;
}

.cookie-category.optional {
  border-left-color: hsl(236, 39%, 60%);
}

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

.cookie-buttons .btn {
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.95rem;
}

.cookie-buttons .btn-accept {
  background: #28a745;
  color: #ffffff;
}

.cookie-buttons .btn-accept:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.cookie-buttons .btn-reject {
  background: #6c757d;
  color: #ffffff;
}

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

.cookie-buttons .btn-manage {
  background: hsl(236, 39%, 35%);
  color: #ffffff;
}

.cookie-buttons .btn-manage:hover {
  background: hsl(236, 39%, 25%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  footer h5 {
    margin-top: 30px;
    font-size: 1.1rem;
  }
  
  footer h5:first-child {
    margin-top: 0;
  }
  
  #cookieNotice {
    padding: 20px 0;
  }
  
  #cookieNotice h4 {
    font-size: 1.2rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
}

.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(236, 39%, 35%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Poppins, sans-serif; color: hsl(236, 39%, 20%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(236, 39%, 35%); }
.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(236, 39%, 20%); font-family: Poppins, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(236, 39%, 20%); font-family: Poppins, sans-serif; }
.blog-article a { color: hsl(236, 39%, 35%); }
.blog-article a:hover { color: hsl(236, 39%, 60%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(236, 39%, 35%); 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%);
    font-family: 'Nunito', sans-serif;
}

.contact-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: hsl(236, 39%, 20%);
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.contact-section .section-subtitle {
    color: hsl(236, 39%, 35%);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

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

.contact-form-wrapper h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: hsl(236, 39%, 20%);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

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

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

.contact-form .form-control:focus {
    border-color: hsl(236, 39%, 60%);
    box-shadow: 0 0 0 0.2rem rgba(95, 87, 153, 0.15);
    outline: none;
}

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

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

.contact-form .btn-submit:hover {
    background: hsl(236, 39%, 20%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.contact-info-wrapper {
    background: hsl(236, 39%, 35%);
    padding: 40px;
    border-radius: 12px;
    color: #ffffff;
    height: 100%;
}

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

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.contact-info-content h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-info-content p,
.contact-info-content a {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

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

.contact-info-content a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.required-mark {
    color: #dc3545;
    margin-left: 3px;
}

@media (max-width: 991px) {
    .contact-info-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px 25px;
    }
    
    .contact-form-wrapper h3,
    .contact-info-wrapper h3 {
        font-size: 1.5rem;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Nunito:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(236, 39%, 35%);
    --secondary-color: hsl(236, 39%, 20%);
    --accent-color: hsl(236, 39%, 60%);
  }
  
  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: 700;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-top: 2.5rem;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    color: var(--primary-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;
    border-bottom: 2px solid transparent;
  }
  
  .policy-content a:hover {
    color: var(--accent-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: 700;
  }
  
  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .info-box p {
    margin-bottom: 0.5rem;
    color: white;
  }
  
  .info-box a {
    color: white;
    border-bottom-color: white;
  }
  
  .info-box a:hover {
    opacity: 0.8;
  }
  
  .cookie-table {
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .cookie-table th {
    background-color: var(--primary-color);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
  }
  
  .cookie-table td {
    vertical-align: middle;
  }
  
  .last-updated {
    font-style: italic;
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    margin: 3rem 0;
    border: none;
  }

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

  .faq-section h2 {
    font-family: 'Poppins', sans-serif;
    color: hsl(236, 39%, 20%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

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

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

  .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(236, 39%, 20%);
    background-color: #ffffff;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
  }

  .accordion-button:not(.collapsed) {
    background-color: hsl(236, 39%, 35%);
    color: #ffffff;
    box-shadow: none;
  }

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

  .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23434f75'%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");
  }

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

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

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

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

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

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

  .faq-highlight {
    background-color: #f8f9fa;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: hsl(236, 39%, 35%);
    font-weight: 600;
  }

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

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

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

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

#newsletter {
    background: linear-gradient(135deg, hsl(236, 39%, 35%) 0%, hsl(236, 39%, 20%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  #newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(236, 39%, 60%);
    opacity: 0.1;
    border-radius: 50%;
  }

  #newsletter::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(236, 39%, 60%);
    opacity: 0.08;
    border-radius: 50%;
  }

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

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

  .newsletter-icon {
    width: 70px;
    height: 70px;
    background: hsl(236, 39%, 60%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

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

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

  .newsletter-description {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: #f8f9fa;
    margin-bottom: 40px;
    line-height: 1.7;
  }

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

  .newsletter-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }

  .newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333333;
    transition: all 0.3s ease;
  }

  .newsletter-input:focus {
    outline: none;
    border-color: hsl(236, 39%, 60%);
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }

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

  .newsletter-submit {
    padding: 18px 45px;
    background: hsl(236, 39%, 60%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .newsletter-submit:hover {
    background: hsl(236, 39%, 55%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

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

  .newsletter-privacy {
    font-family: 'Nunito', sans-serif;
    font-size: 0.875rem;
    color: #e0e0e0;
    margin-top: 15px;
  }

  .newsletter-privacy a {
    color: hsl(236, 39%, 60%);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .newsletter-privacy a:hover {
    color: hsl(236, 39%, 70%);
    text-decoration: underline;
  }

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

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

  .newsletter-benefit svg {
    width: 24px;
    height: 24px;
    fill: hsl(236, 39%, 60%);
    flex-shrink: 0;
  }

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

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

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

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

    .newsletter-submit {
      width: 100%;
      padding: 16px 35px;
    }

    .newsletter-benefits {
      gap: 25px;
      margin-top: 35px;
    }

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

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

    .newsletter-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 25px;
    }

    .newsletter-icon svg {
      width: 30px;
      height: 30px;
    }

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

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

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

  .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(236, 39%, 60%, 0.08);
    border-radius: 50%;
    z-index: 0;
  }

  .hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(236, 39%, 35%, 0.05);
    border-radius: 50%;
    z-index: 0;
  }

  .hero-container {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, hsl(236, 39%, 35%) 0%, hsl(236, 39%, 20%) 100%);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
  }

  .hero-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.4;
    color: hsl(236, 39%, 35%);
    margin-bottom: 32px;
    text-align: center;
  }

  .hero-image-wrapper {
    margin: 40px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  }

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

  .hero-description {
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 36px;
    text-align: left;
  }

  .hero-description p {
    margin-bottom: 18px;
  }

  .hero-advantages {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    margin: 36px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-left: 4px solid hsl(236, 39%, 35%);
  }

  .hero-advantages h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 24px;
  }

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

  .hero-advantages li {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
  }

  .hero-advantages li:last-child {
    margin-bottom: 0;
  }

  .hero-advantages li::before {
    content: '\F26B';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: hsl(236, 39%, 35%);
    font-size: 20px;
    font-weight: bold;
  }

  .hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
  }

  .hero-btn-primary {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 17px;
    padding: 16px 40px;
    background: linear-gradient(135deg, hsl(236, 39%, 35%) 0%, hsl(236, 39%, 20%) 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

  .hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: #ffffff;
    background: linear-gradient(135deg, hsl(236, 39%, 40%) 0%, hsl(236, 39%, 25%) 100%);
  }

  .hero-btn-secondary {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 17px;
    padding: 16px 40px;
    background: #ffffff;
    color: hsl(236, 39%, 35%);
    border: 2px solid hsl(236, 39%, 35%);
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
  }

  .hero-btn-secondary:hover {
    background: hsl(236, 39%, 35%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  }

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

    .hero-section h1 {
      font-size: 36px;
    }

    .hero-section h2 {
      font-size: 20px;
    }

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

    .hero-advantages {
      padding: 24px;
    }

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

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

  @media (max-width: 576px) {
    .hero-section h1 {
      font-size: 30px;
    }

    .hero-section h2 {
      font-size: 18px;
    }

    .hero-advantages li {
      font-size: 15px;
    }
  }

.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(236, 39%, 35%) 0%, hsl(236, 39%, 20%) 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

.offer-badge {
    display: inline-block;
    background: hsl(236, 39%, 60%);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

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

.deadline-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.deadline-date {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(236, 39%, 35%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.calendar-icon {
    width: 50px;
    height: 50px;
    background: hsl(236, 39%, 60%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: hsl(236, 39%, 60%);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: hsl(236, 39%, 60%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

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

.discount-highlight {
    display: inline-block;
    background: hsl(236, 39%, 60%);
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.offer-cta {
    display: inline-block;
    background: hsl(236, 39%, 60%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: none;
}

.offer-cta:hover {
    background: hsl(236, 39%, 50%);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

@media (max-width: 768px) {
    .offer-section {
        padding: 60px 0;
    }
    
    .offer-heading {
        font-size: 2.2rem;
    }
    
    .deadline-date {
        font-size: 1.8rem;
        flex-direction: column;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .discount-highlight {
        font-size: 1.5rem;
        padding: 8px 25px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Nunito:wght@400;600&display=swap');
  
  #credentials {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Nunito', sans-serif;
  }
  
  #credentials .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: hsl(236, 39%, 20%);
    text-align: center;
    margin-bottom: 15px;
  }
  
  #credentials .section-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  #credentials .credential-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  
  #credentials .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    border-color: #28a745;
  }
  
  #credentials .credential-icon {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 15px;
  }
  
  #credentials .credential-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #222;
    margin-bottom: 8px;
  }
  
  #credentials .credential-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
  }
  
  @media (max-width: 768px) {
    #credentials {
      padding: 40px 0;
    }
    
    #credentials .section-title {
      font-size: 1.6rem;
    }
    
    #credentials .credential-card {
      margin-bottom: 15px;
    }
  }
  
  @media (max-width: 576px) {
    #credentials .section-title {
      font-size: 1.4rem;
    }
    
    #credentials .credential-icon {
      font-size: 2rem;
    }
  }

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

  .services-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(236, 39%, 35%);
    margin-bottom: 1rem;
    text-align: center;
  }

  .services-section .lead-text {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
  }

  .services-tabs {
    margin-bottom: 3rem;
  }

  .nav-tabs {
    border-bottom: 2px solid hsl(236, 39%, 60%);
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .nav-tabs .nav-link:hover {
    color: hsl(236, 39%, 35%);
    background: rgba(236, 239, 60, 0.1);
  }

  .nav-tabs .nav-link.active {
    color: #fff;
    background: hsl(236, 39%, 35%);
    border: none;
  }

  .service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    border-color: hsl(236, 39%, 60%);
  }

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(236, 39%, 35%) 0%, hsl(236, 39%, 20%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }

  .service-card:hover .service-icon {
    background: linear-gradient(135deg, hsl(236, 39%, 60%) 0%, hsl(236, 39%, 35%) 100%);
    transform: rotate(360deg);
  }

  .service-icon i {
    font-size: 2rem;
    color: #fff;
  }

  .service-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(236, 39%, 35%);
    margin-bottom: 1rem;
  }

  .service-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

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

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

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

  .service-terms {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 4px solid hsl(236, 39%, 60%);
  }

  .service-terms h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(236, 39%, 35%);
    margin-bottom: 1rem;
  }

  .service-terms ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .service-terms li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
  }

  .service-terms li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(236, 39%, 60%);
    font-weight: bold;
  }

  .urgent-banner {
    background: linear-gradient(135deg, hsl(236, 39%, 35%) 0%, hsl(236, 39%, 20%) 100%);
    color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }

  .urgent-banner h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .urgent-banner p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
  }

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

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

    .nav-tabs .nav-link {
      padding: 0.75rem 1.25rem;
      font-size: 0.9rem;
    }

    .service-card {
      padding: 1.5rem;
    }

    .service-icon {
      width: 60px;
      height: 60px;
    }

    .service-icon i {
      font-size: 1.5rem;
    }

    .urgent-banner h3 {
      font-size: 1.3rem;
    }

    .urgent-banner p {
      font-size: 1rem;
    }
  }

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

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(236, 39%, 60%);
  opacity: 0.05;
  border-radius: 50%;
}

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

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(236, 39%, 20%);
  margin-bottom: 15px;
}

.section-header p {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  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;
}

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

.testimonial-card.featured {
  border-left: 4px solid hsl(236, 39%, 60%);
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.testimonial-card.compact {
  padding: 25px;
}

.testimonial-card.detailed {
  padding: 35px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

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

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

.rating-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: hsl(236, 39%, 35%);
  margin-left: 10px;
  font-size: 1rem;
}

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

.testimonial-text.short {
  font-size: 1.05rem;
  font-weight: 500;
}

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

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

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(236, 39%, 60%) 0%, hsl(236, 39%, 35%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.customer-details h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(236, 39%, 20%);
  margin: 0 0 3px 0;
}

.customer-location {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.customer-location i {
  color: hsl(236, 39%, 60%);
  font-size: 0.85rem;
}

.highlight-badge {
  display: inline-block;
  background: hsl(236, 39%, 60%);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.testimonial-date {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  color: #999;
  margin-top: 10px;
}

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

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

  .blog-preview-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(236, 39%, 20%);
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

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

  .blog-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 3px solid hsl(236, 39%, 35%);
  }

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

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

  .blog-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .blog-meta-item i {
    color: hsl(236, 39%, 60%);
  }

  .blog-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(236, 39%, 20%);
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .blog-card-title a {
    color: hsl(236, 39%, 20%);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .blog-card-title a:hover {
    color: hsl(236, 39%, 35%);
  }

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

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

  .blog-read-more:hover {
    color: hsl(236, 39%, 60%);
    gap: 12px;
  }

  .blog-read-more i {
    transition: transform 0.3s ease;
  }

  .blog-read-more:hover i {
    transform: translateX(4px);
  }

  .view-all-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 15px 40px;
    background: hsl(236, 39%, 35%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid hsl(236, 39%, 35%);
  }

  .view-all-btn:hover {
    background: hsl(236, 39%, 20%);
    border-color: hsl(236, 39%, 20%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

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

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

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

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

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

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

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

  .disclaimer-section .section-icon {
    font-size: 3.5rem;
    color: hsl(236, 39%, 35%);
    margin-bottom: 25px;
    opacity: 0.9;
  }

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

  .disclaimer-section .subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }

  .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;
    border-left: 4px solid hsl(236, 39%, 35%);
  }

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

  .disclaimer-notice {
    background: hsl(236, 39%, 97%);
    border-left: 3px solid hsl(236, 39%, 60%);
    padding: 20px 25px;
    margin-top: 30px;
    border-radius: 6px;
  }

  .disclaimer-notice p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
  }

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

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

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

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

    .disclaimer-notice {
      padding: 18px 20px;
    }
  }

  @media (max-width: 576px) {
    .disclaimer-section .section-icon {
      font-size: 2.8rem;
    }

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

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

@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(236, 39%, 35%);
    --secondary-color: hsl(236, 39%, 20%);
    --accent-color: hsl(236, 39%, 60%);
  }
  
  .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(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    color: var(--primary-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(--accent-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-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 0.5rem;
  }
  
  .policy-header h1 {
    color: white;
    border: none;
    margin: 0;
    padding: 0;
  }
  
  .last-updated {
    background-color: hsl(236, 39%, 95%);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 600;
  }
  
  .contact-box {
    background-color: hsl(236, 39%, 97%);
    border: 2px solid var(--accent-color);
    border-radius: 0.5rem;
    padding: 2rem;
    margin-top: 2rem;
  }
  
  .contact-box h3 {
    margin-top: 0;
    color: var(--secondary-color);
  }
  
  .info-highlight {
    background-color: hsl(236, 39%, 98%);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-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(236, 39%, 35%);
    --secondary-color: hsl(236, 39%, 20%);
    --accent-color: hsl(236, 39%, 60%);
  }

  .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(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

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

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

  .policy-content h3 {
    font-size: 1.4rem;
    color: var(--primary-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(--accent-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;
  }

  .highlight-box {
    background-color: hsl(236, 39%, 95%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }

  .contact-info {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
  }

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

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

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

  .last-updated {
    font-style: italic;
    color: #666;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid #ddd;
  }

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

  .thank-you-section {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, hsl(236, 39%, 97%) 0%, hsl(236, 39%, 92%) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
  }

  .thank-you-container {
    max-width: 650px;
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(66, 68, 110, 0.15);
    padding: 3rem 2rem;
    text-align: center;
  }

  .success-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, hsl(236, 39%, 35%) 0%, hsl(236, 39%, 20%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
    position: relative;
  }

  .success-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border: 3px solid hsl(236, 39%, 60%);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
  }

  .checkmark-svg {
    width: 60px;
    height: 60px;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: drawCheck 0.8s ease-out 0.3s forwards;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }

  @keyframes scaleIn {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
      opacity: 0.3;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.1;
    }
  }

  @keyframes drawCheck {
    to {
      stroke-dashoffset: 0;
    }
  }

  .thank-you-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(236, 39%, 20%);
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
  }

  .thank-you-subheading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(236, 39%, 35%);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.5s both;
  }

  .thank-you-message {
    font-size: 1.1rem;
    color: hsl(236, 39%, 30%);
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.6s both;
  }

  .thank-you-message strong {
    color: hsl(236, 39%, 20%);
    font-weight: 700;
  }

  .info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease-out 0.7s both;
  }

  .info-box {
    background: linear-gradient(135deg, hsl(236, 39%, 96%) 0%, hsl(236, 39%, 98%) 100%);
    border-left: 4px solid hsl(236, 39%, 60%);
    padding: 1.25rem;
    border-radius: 10px;
    text-align: left;
  }

  .info-box-icon {
    font-size: 1.5rem;
    color: hsl(236, 39%, 35%);
    margin-bottom: 0.5rem;
  }

  .info-box-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: hsl(236, 39%, 30%);
    margin-bottom: 0.25rem;
  }

  .info-box-text {
    font-size: 0.95rem;
    color: hsl(236, 39%, 40%);
    line-height: 1.5;
  }

  .btn-home {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, hsl(236, 39%, 35%) 0%, hsl(236, 39%, 20%) 100%);
    color: #ffffff;
    border: none;
    padding: 0.875rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    animation: fadeInUp 0.6s ease-out 0.8s both;
    box-shadow: 0 4px 15px rgba(66, 68, 110, 0.3);
  }

  .btn-home:hover {
    background: linear-gradient(135deg, hsl(236, 39%, 40%) 0%, hsl(236, 39%, 25%) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 68, 110, 0.4);
    color: #ffffff;
  }

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

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

  @media (max-width: 768px) {
    .thank-you-container {
      padding: 2.5rem 1.5rem;
    }

    .thank-you-heading {
      font-size: 2rem;
    }

    .thank-you-subheading {
      font-size: 1.1rem;
    }

    .thank-you-message {
      font-size: 1rem;
    }

    .success-icon-wrapper {
      width: 100px;
      height: 100px;
    }

    .success-icon-wrapper::before {
      width: 120px;
      height: 120px;
    }

    .checkmark-svg {
      width: 50px;
      height: 50px;
    }

    .info-boxes {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 480px) {
    .thank-you-section {
      padding: 2rem 1rem;
    }

    .thank-you-heading {
      font-size: 1.75rem;
    }

    .btn-home {
      padding: 0.75rem 2rem;
      font-size: 1rem;
    }
  }