:root {
--primary-color: hsl(222, 59%, 36%);
  --secondary-color: hsl(222, 59%, 21%);
    --accent-color: hsl(222, 59%, 61%);
}

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

body {
font-family: 'Open Sans', sans-serif;
    color: #333;
    background: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
    font-weight: 700;
  color: #222;
}

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

.navbar-brand {
    display: flex;
  align-items: center;
    gap: 12px;
    font-family: 'Roboto', sans-serif;
  font-weight: 700;
    font-size: 1.35rem;
    color: var(--primary-color);
}

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

.navbar-nav .nav-link:hover {
    color: var(--accent-color);
}

.navbar-toggler {
  border-color: var(--primary-color);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(45, 78, 132, 0.25);
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }
  
  .about-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .about-header h2 {
    font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 21%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .about-header .subtitle {
    font-family: 'Open Sans', sans-serif;
    color: hsl(222, 59%, 36%);
    font-size: 1.1rem;
  }
  
  .about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }
  
  .about-image:hover img {
    transform: scale(1.05);
  }
  
  .about-text {
    flex: 1;
    font-family: 'Open Sans', sans-serif;
    color: #333;
  }
  
  .about-text h3 {
    font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 21%);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .about-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .value-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid hsl(222, 59%, 61%);
  }
  
  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  }
  
  .value-card h4 {
    font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 36%);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
  }
  
  .value-card p {
    font-family: 'Open Sans', sans-serif;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
  }
  
  .stats-row {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    padding: 40px;
    background: hsl(222, 59%, 36%);
    border-radius: 12px;
  }
  
  .stat-item {
    text-align: center;
    color: #ffffff;
  }
  
  .stat-number {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
  }
  
  .stat-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    opacity: 0.9;
  }
  
  @media (max-width: 768px) {
    .about-section {
      padding: 50px 0;
    }
    
    .about-content {
      flex-direction: column;
      gap: 30px;
    }
    
    .about-header h2 {
      font-size: 2rem;
    }
    
    .stats-row {
      flex-direction: column;
      gap: 25px;
      padding: 30px 20px;
    }
    
    .stat-number {
      font-size: 2rem;
    }
  }

.portfolio-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }
  
  .portfolio-section h2 {
    font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 21%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .portfolio-section .lead-text {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
  }
  
  .filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 3rem;
  }
  
  .filter-btn {
    font-family: 'Open Sans', sans-serif;
    padding: 10px 24px;
    border: 2px solid hsl(222, 59%, 36%);
    background: transparent;
    color: hsl(222, 59%, 36%);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
  }
  
  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(222, 59%, 36%);
    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: 2rem;
  }
  
  .portfolio-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
  }
  
  .portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
  
  .portfolio-item.hidden {
    display: none;
  }
  
  .portfolio-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .portfolio-item:hover .portfolio-image {
    transform: scale(1.08);
  }
  
  .portfolio-content {
    padding: 24px;
  }
  
  .portfolio-category {
    font-family: 'Open Sans', sans-serif;
    display: inline-block;
    padding: 5px 14px;
    background: hsl(222, 59%, 61%);
    color: #fff;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .portfolio-item h3 {
    font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 21%);
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
  }
  
  .portfolio-item p {
    font-family: 'Open Sans', sans-serif;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
  }
  
  .view-details {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: hsl(222, 59%, 36%);
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.3s ease;
  }
  
  .view-details:hover {
    gap: 12px;
    color: hsl(222, 59%, 21%);
  }
  
  .modal-content {
    border-radius: 12px;
    border: none;
  }
  
  .modal-header {
    background: hsl(222, 59%, 36%);
    color: #fff;
    border-radius: 12px 12px 0 0;
    padding: 20px 24px;
  }
  
  .modal-header .btn-close {
    filter: brightness(0) invert(1);
  }
  
  .modal-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
  }
  
  .modal-body {
    padding: 30px;
  }
  
  .modal-body img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 24px;
  }
  
  .modal-body h5 {
    font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 21%);
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 700;
  }
  
  .modal-body p,
  .modal-body ul {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    line-height: 1.7;
  }
  
  .modal-body ul {
    padding-left: 20px;
  }
  
  .modal-body ul li {
    margin-bottom: 8px;
  }
  
  @media (max-width: 768px) {
    .portfolio-section {
      padding: 60px 0;
    }
    
    .portfolio-section h2 {
      font-size: 2rem;
    }
    
    .portfolio-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    
    .filter-buttons {
      gap: 8px;
    }
    
    .filter-btn {
      padding: 8px 18px;
      font-size: 0.85rem;
    }
  }

#advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
  }
  
  #advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(40, 70, 130, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: movePattern 60s linear infinite;
  }
  
  @keyframes movePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
  }
  
  #advantages .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
  }
  
  #advantages .section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(222, 59%, 21%);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }
  
  #advantages .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(222, 59%, 61%);
    border-radius: 2px;
  }
  
  #advantages .section-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.6;
  }
  
  .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.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
  }
  
  .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, hsl(222, 59%, 36%) 0%, hsl(222, 59%, 61%) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
  }
  
  .advantage-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(40, 70, 130, 0.25);
    border-color: hsl(222, 59%, 61%);
  }
  
  .advantage-card:hover::before {
    opacity: 0.05;
  }
  
  .advantage-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, hsl(222, 59%, 36%) 0%, hsl(222, 59%, 61%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
  }
  
  .advantage-card:hover .advantage-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 25px rgba(40, 70, 130, 0.3);
  }
  
  .advantage-icon i {
    font-size: 2rem;
    color: #ffffff;
  }
  
  .advantage-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(222, 59%, 21%);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
  }
  
  .advantage-card:hover .advantage-title {
    color: hsl(222, 59%, 36%);
  }
  
  .advantage-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0;
  }
  
  .advantages-row {
    position: relative;
    z-index: 1;
  }
  
  @media (max-width: 768px) {
    #advantages {
      padding: 60px 0;
    }
    
    #advantages .section-title {
      font-size: 2.2rem;
    }
    
    .advantage-card {
      margin-bottom: 25px;
      padding: 30px 20px;
    }
    
    .advantage-icon {
      width: 65px;
      height: 65px;
    }
    
    .advantage-icon i {
      font-size: 1.7rem;
    }
    
    .advantage-title {
      font-size: 1.25rem;
    }
  }
  
  @media (max-width: 576px) {
    #advantages .section-title {
      font-size: 1.9rem;
    }
    
    #advantages .section-subtitle {
      font-size: 1rem;
    }
  }

#statistics {
    padding: 70px 0;
    background: linear-gradient(135deg, hsl(222, 59%, 36%) 0%, hsl(222, 59%, 21%) 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"><rect width="2" height="2" x="0" y="0" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.4;
  }

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

  .stats-header {
    text-align: center;
    margin-bottom: 55px;
  }

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

  .stats-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto;
  }

  .stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .stat-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: hsl(222, 59%, 61%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
  }

  .stat-box:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: hsl(222, 59%, 51%);
  }

  .stat-number {
    font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .stat-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 5px;
  }

  .stat-context {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
  }

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

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

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

    .stat-box {
      margin-bottom: 20px;
    }
  }

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

    .stat-icon {
      width: 60px;
      height: 60px;
      font-size: 28px;
    }
  }

footer {
  background: hsl(222, 59%, 21%);
    color: #f8f9fa;
  padding: 3rem 0 1rem;
  font-family: 'Open Sans', sans-serif;
}

footer h5 {
font-family: 'Roboto', sans-serif;
  color: #fff;
    margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

footer p, footer a {
  color: #d1d5db;
    font-size: 0.95rem;
}

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

footer a:hover {
  color: hsl(222, 59%, 61%);
}

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

footer ul li {
  margin-bottom: 0.6rem;
}

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

.footer-links {
  display: flex;
    gap: 1.5rem;
  justify-content: center;
    flex-wrap: wrap;
  margin-bottom: 1rem;
}

#cookieNotice {
  position: fixed;
    bottom: 0;
  left: 0;
    right: 0;
  background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
    padding: 1.5rem 0;
  border-top: 3px solid hsl(222, 59%, 36%);
}

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

#cookieNotice h5 {
  font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 21%);
  margin-bottom: 0.8rem;
    font-size: 1.25rem;
}

#cookieNotice p {
  color: #4b5563;
    margin-bottom: 1rem;
  font-size: 0.95rem;
}

.cookie-categories {
  background: #f9fafb;
    padding: 1rem;
  border-radius: 6px;
    margin: 1rem 0;
  border-left: 4px solid hsl(222, 59%, 61%);
}

.cookie-categories ul {
  margin: 0;
    padding-left: 1.2rem;
  color: #374151;
}

.cookie-categories li {
  margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.cookie-categories strong {
  color: hsl(222, 59%, 21%);
}

.cookie-buttons {
  display: flex;
    gap: 0.8rem;
  flex-wrap: wrap;
    margin-top: 1.2rem;
}

.btn-accept-all {
  background: #10b981;
    color: #fff;
  border: none;
    padding: 0.7rem 1.8rem;
  border-radius: 5px;
    font-weight: 600;
  cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept-all:hover {
  background: #059669;
    transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}

.btn-reject {
  background: #6b7280;
    color: #fff;
  border: none;
    padding: 0.7rem 1.8rem;
  border-radius: 5px;
    font-weight: 600;
  cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-manage {
  background: transparent;
    color: hsl(222, 59%, 36%);
  border: 2px solid hsl(222, 59%, 36%);
    padding: 0.7rem 1.8rem;
  border-radius: 5px;
    font-weight: 600;
  text-decoration: none;
    display: inline-block;
  transition: all 0.3s ease;
}

.btn-manage:hover {
  background: hsl(222, 59%, 36%);
    color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button,
  .cookie-buttons a {
    width: 100%;
      text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
      gap: 0.8rem;
  }
}

.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: Open Sans, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(222, 59%, 36%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Roboto, sans-serif; color: hsl(222, 59%, 21%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(222, 59%, 36%); }
.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(222, 59%, 21%); font-family: Roboto, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(222, 59%, 21%); font-family: Roboto, sans-serif; }
.blog-article a { color: hsl(222, 59%, 36%); }
.blog-article a:hover { color: hsl(222, 59%, 61%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(222, 59%, 36%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
  }
  
  .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(222, 59%, 36%), hsl(222, 59%, 61%));
  }

  .contact-section h2 {
    font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 21%);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }

  .contact-section .lead-text {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }

  .contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(222, 59%, 36%);
  }

  .contact-form-wrapper h3 {
    font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 21%);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
  }

  .contact-form .form-label {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }

  .contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }

  .contact-form .form-control:focus {
    border-color: hsl(222, 59%, 61%);
    box-shadow: 0 0 0 0.2rem rgba(63, 100, 155, 0.15);
    outline: none;
  }

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

  .contact-form .btn-submit {
    background: hsl(222, 59%, 36%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 1rem;
  }

  .contact-form .btn-submit:hover {
    background: hsl(222, 59%, 21%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

  .contact-info-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    height: 100%;
  }

  .contact-info-wrapper h3 {
    font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 21%);
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    font-weight: 600;
  }

  .contact-info-item {
    margin-bottom: 2rem;
    padding-left: 45px;
    position: relative;
  }

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

  .contact-info-item .icon {
    position: absolute;
    left: 0;
    top: 2px;
    width: 36px;
    height: 36px;
    background: hsl(222, 59%, 61%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
  }

  .contact-info-item h4 {
    font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 21%);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }

  .contact-info-item p {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .contact-info-item a {
    color: hsl(222, 59%, 36%);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
  }

  .contact-info-item a:hover {
    color: hsl(222, 59%, 61%);
    text-decoration: underline;
  }

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

  .working-hours-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Open Sans', sans-serif;
    color: #555;
    font-size: 0.95rem;
  }

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

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

  @media (max-width: 991px) {
    .contact-section {
      padding: 60px 0;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
      padding: 30px;
      margin-bottom: 30px;
    }

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

  @media (max-width: 576px) {
    .contact-section {
      padding: 50px 0;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
      padding: 25px;
    }

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

    .contact-info-item {
      padding-left: 40px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(222, 59%, 36%);
    --secondary-color: hsl(222, 59%, 21%);
    --accent-color: hsl(222, 59%, 61%);
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
  }
  
  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background-color: var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .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 p {
    margin-bottom: 1.25rem;
    text-align: justify;
  }
  
  .policy-content ul, .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .info-box {
    background-color: #f8f9fa;
    border-left: 5px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }
  
  .contact-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-top: 2.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .contact-card h3 {
    color: white;
    margin-bottom: 1.25rem;
  }
  
  .contact-card p {
    margin-bottom: 0.5rem;
    text-align: left;
  }
  
  .last-updated {
    background-color: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
  }
  
  .cookie-type-card {
    border: 2px solid var(--accent-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cookie-type-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  }
  
  .cookie-type-card h3 {
    color: var(--primary-color);
    margin-top: 0;
  }

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

  .faq-section .section-title {
    font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 21%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

  .faq-accordion .accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }

  .faq-accordion .accordion-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .faq-accordion .accordion-button {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(222, 59%, 21%);
    background-color: #ffffff;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: background-color 0.3s ease;
  }

  .faq-accordion .accordion-button:not(.collapsed) {
    background-color: hsl(222, 59%, 36%);
    color: #ffffff;
    box-shadow: none;
  }

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

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

  .faq-accordion .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 .accordion-body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    padding: 1.5rem;
    background-color: #fafbfc;
  }

  .faq-accordion .accordion-body strong {
    color: hsl(222, 59%, 36%);
    font-weight: 600;
  }

  .faq-accordion .accordion-body ul {
    margin-top: 0.75rem;
    padding-left: 1.25rem;
  }

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

  .faq-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: hsl(222, 59%, 36%);
    border-radius: 50%;
    margin: 0 auto 2rem;
    position: relative;
  }

  .faq-icon::before,
  .faq-icon::after {
    content: '';
    position: absolute;
    background: #ffffff;
  }

  .faq-icon::before {
    width: 3px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .faq-icon::after {
    width: 20px;
    height: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

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

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

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(222, 59%, 36%) 0%, hsl(222, 59%, 21%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(222, 59%, 61%);
    opacity: 0.1;
    border-radius: 50%;
  }
  
  .newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(222, 59%, 61%);
    opacity: 0.08;
    border-radius: 50%;
  }
  
  .newsletter-container {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .newsletter-icon {
    width: 70px;
    height: 70px;
    background: hsl(222, 59%, 61%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  
  .newsletter-icon svg {
    width: 35px;
    height: 35px;
    fill: #fff;
  }
  
  .newsletter-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 18px;
  }
  
  .newsletter-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 35px;
    line-height: 1.6;
  }
  
  .newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  
  .benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
  }
  
  .benefit-item svg {
    width: 20px;
    height: 20px;
    fill: hsl(222, 59%, 61%);
    flex-shrink: 0;
  }
  
  .newsletter-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
  }
  
  .form-group-newsletter {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
  }
  
  .newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    background: rgba(255,255,255,0.95);
    color: #333;
    transition: all 0.3s ease;
  }
  
  .newsletter-input:focus {
    outline: none;
    border-color: hsl(222, 59%, 61%);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.1);
  }
  
  .newsletter-input::placeholder {
    color: #999;
  }
  
  .newsletter-submit {
    padding: 16px 35px;
    background: hsl(222, 59%, 61%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .newsletter-submit:hover {
    background: hsl(222, 59%, 51%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }
  
  .newsletter-submit:active {
    transform: translateY(0);
  }
  
  .newsletter-privacy {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    text-align: center;
    margin-top: 15px;
  }
  
  .newsletter-privacy a {
    color: hsl(222, 59%, 61%);
    text-decoration: none;
    font-weight: 600;
  }
  
  .newsletter-privacy a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .newsletter-section {
      padding: 60px 0;
    }
    
    .newsletter-heading {
      font-size: 2rem;
    }
    
    .newsletter-description {
      font-size: 1rem;
    }
    
    .newsletter-benefits {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
    
    .newsletter-form {
      padding: 30px 20px;
    }
    
    .form-group-newsletter {
      flex-direction: column;
    }
    
    .newsletter-submit {
      width: 100%;
      padding: 16px 20px;
    }
  }
  
  @media (max-width: 480px) {
    .newsletter-heading {
      font-size: 1.75rem;
    }
    
    .newsletter-icon {
      width: 60px;
      height: 60px;
    }
    
    .newsletter-icon svg {
      width: 30px;
      height: 30px;
    }
  }

.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    overflow: hidden;
  }
  
  .hero-section h1 {
    font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 21%);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero-section h2 {
    font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 36%);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
  }
  
  .hero-description {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
  }
  
  .hero-advantages {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
  }
  
  .hero-advantages li {
    font-family: 'Open Sans', sans-serif;
    color: #222;
    font-size: 1rem;
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
  }
  
  .hero-advantages li::before {
    content: "\F26A";
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: hsl(222, 59%, 61%);
    font-size: 1.2rem;
  }
  
  .hero-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  }
  
  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }
  
  .hero-image-wrapper:hover img {
    transform: scale(1.05);
  }
  
  .hero-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .btn-hero-primary {
    background: hsl(222, 59%, 36%);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid hsl(222, 59%, 36%);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .btn-hero-primary:hover {
    background: hsl(222, 59%, 21%);
    border-color: hsl(222, 59%, 21%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  
  .btn-hero-secondary {
    background: transparent;
    color: hsl(222, 59%, 36%);
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid hsl(222, 59%, 36%);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .btn-hero-secondary:hover {
    background: hsl(222, 59%, 36%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  
  @media (max-width: 991px) {
    .hero-section {
      padding: 60px 0;
    }
    
    .hero-section h1 {
      font-size: 2.2rem;
    }
    
    .hero-section h2 {
      font-size: 1.3rem;
    }
    
    .hero-image-wrapper {
      margin-bottom: 2rem;
    }
  }
  
  @media (max-width: 576px) {
    .hero-section h1 {
      font-size: 1.8rem;
    }
    
    .hero-section h2 {
      font-size: 1.1rem;
    }
    
    .hero-cta-buttons {
      flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
      width: 100%;
      justify-content: center;
    }
  }

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }
  
  .services-section h2 {
    font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 21%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .services-section .subtitle {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
  }
  
  .nav-tabs {
    border-bottom: 3px solid hsl(222, 59%, 36%);
    margin-bottom: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .nav-tabs .nav-link {
    font-family: 'Roboto', sans-serif;
    color: #333;
    border: none;
    padding: 12px 24px;
    margin: 0 8px 10px 8px;
    background: #fff;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    font-weight: 500;
  }
  
  .nav-tabs .nav-link:hover {
    color: hsl(222, 59%, 36%);
    background: #f0f4ff;
    transform: translateY(-2px);
  }
  
  .nav-tabs .nav-link.active {
    color: #fff;
    background: hsl(222, 59%, 36%);
    font-weight: 600;
  }
  
  .service-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 100%;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(35, 68, 131, 0.2);
    border-color: hsl(222, 59%, 61%);
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(222, 59%, 36%) 0%, hsl(222, 59%, 61%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
  }
  
  .service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
  }
  
  .service-icon i {
    font-size: 32px;
    color: #fff;
  }
  
  .service-card h4 {
    font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 21%);
    font-size: 1.4rem;
    margin-bottom: 14px;
    font-weight: 600;
  }
  
  .service-card p {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 0.95rem;
  }
  
  .service-price {
    font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 36%);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
  }
  
  .service-terms {
    font-family: 'Open Sans', sans-serif;
    color: #777;
    font-size: 0.85rem;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
  }
  
  .service-terms i {
    color: hsl(222, 59%, 61%);
    margin-right: 6px;
  }
  
  @media (max-width: 768px) {
    .services-section {
      padding: 50px 0;
    }
    
    .services-section h2 {
      font-size: 2rem;
    }
    
    .nav-tabs .nav-link {
      padding: 10px 16px;
      font-size: 0.9rem;
    }
    
    .service-card {
      padding: 20px;
    }
  }

#credentials {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }

  #credentials .section-title {
    font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 21%);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
  }

  #credentials .section-subtitle {
    font-family: 'Open Sans', sans-serif;
    color: #6c757d;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 40px;
  }

  .credential-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    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);
  }

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

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

  .credential-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
  }

  .credential-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
  }

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

    #credentials .section-title {
      font-size: 1.6rem;
    }

    .credential-card {
      margin-bottom: 20px;
    }
  }

  @media (max-width: 576px) {
    .credential-card {
      padding: 20px 10px;
    }

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

.promo-offer-section {
    background: linear-gradient(135deg, hsl(222, 59%, 36%) 0%, hsl(222, 59%, 21%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .promo-offer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
  }
  
  .promo-offer-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
  }
  
  .offer-container {
    position: relative;
    z-index: 2;
  }
  
  .offer-badge {
    display: inline-block;
    background: hsl(222, 59%, 61%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  .offer-title {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
  }
  
  .offer-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #f8f9fa;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .deadline-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 30px 40px;
    margin: 40px auto;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  }
  
  .deadline-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #f8f9fa;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .deadline-date {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  
  .calendar-icon {
    width: 50px;
    height: 50px;
    background: hsl(222, 59%, 61%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 50px 0;
  }
  
  .benefit-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    background: hsl(222, 59%, 61%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: #fff;
  }
  
  .benefit-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
    margin: 0;
  }
  
  .offer-cta-btn {
    display: inline-block;
    background: hsl(222, 59%, 61%);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .offer-cta-btn:hover {
    background: hsl(222, 59%, 51%);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.4);
    color: #fff;
  }
  
  .discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6b6b;
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255,107,107,0.4);
    animation: pulse 2s infinite;
  }
  
  .discount-percent {
    font-size: 2rem;
    line-height: 1;
  }
  
  .discount-text {
    font-size: 0.8rem;
    text-transform: uppercase;
  }
  
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
  
  @media (max-width: 768px) {
    .promo-offer-section {
      padding: 60px 0;
    }
    
    .offer-title {
      font-size: 2rem;
    }
    
    .deadline-date {
      font-size: 1.8rem;
      flex-direction: column;
      gap: 10px;
    }
    
    .benefits-grid {
      grid-template-columns: 1fr;
    }
    
    .discount-badge {
      width: 80px;
      height: 80px;
      top: 10px;
      right: 10px;
    }
    
    .discount-percent {
      font-size: 1.5rem;
    }
  }
  
  .animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  
  .animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
  }
  
  @keyframes slideUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
  }
  
  .testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(222, 59%, 61%);
    opacity: 0.05;
    border-radius: 50%;
  }

  .testimonials-section h2 {
    font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 21%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
  }

  .testimonials-section .subtitle {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
  }

  .testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid hsl(222, 59%, 61%);
  }

  .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(222, 59%, 36%) 0%, hsl(222, 59%, 21%) 100%);
    border-left: 4px solid hsl(222, 59%, 61%);
  }

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

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

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

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

  .star {
    color: #ffc107;
    font-size: 20px;
  }

  .star.empty {
    color: #ddd;
  }

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

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

  .testimonial-text.long {
    font-size: 0.98rem;
  }

  .customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    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: hsl(222, 59%, 61%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .customer-details {
    flex: 1;
  }

  .customer-name {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: #222;
    margin: 0;
    font-size: 1.05rem;
  }

  .customer-location {
    font-family: 'Open Sans', sans-serif;
    color: #666;
    font-size: 0.9rem;
    margin: 0;
  }

  .quote-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    color: hsl(222, 59%, 61%);
    opacity: 0.15;
    font-family: Georgia, serif;
  }

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

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

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

    .testimonial-card {
      padding: 25px;
    }

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

.blog-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }
  
  .blog-preview h2 {
    font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 21%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .blog-preview .section-subtitle {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    font-size: 1.1rem;
    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 {
    position: relative;
    overflow: hidden;
    height: 240px;
  }
  
  .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .blog-card:hover .blog-card-image img {
    transform: scale(1.1);
  }
  
  .blog-card-meta {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 12px;
  }
  
  .blog-meta-badge {
    background: rgba(255,255,255,0.95);
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .blog-card-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .blog-card-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    color: hsl(222, 59%, 21%);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  
  .blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .blog-card-title a:hover {
    color: hsl(222, 59%, 36%);
  }
  
  .blog-card-excerpt {
    font-family: 'Open Sans', sans-serif;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
  }
  
  .blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid #e9ecef;
  }
  
  .blog-date {
    font-family: 'Open Sans', sans-serif;
    color: #888;
    font-size: 0.85rem;
  }
  
  .blog-read-more {
    font-family: 'Open Sans', sans-serif;
    color: hsl(222, 59%, 36%);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
  }
  
  .blog-read-more:hover {
    color: hsl(222, 59%, 21%);
    gap: 10px;
  }
  
  .blog-cta {
    text-align: center;
    margin-top: 50px;
  }
  
  .btn-view-all {
    font-family: 'Open Sans', sans-serif;
    background: hsl(222, 59%, 36%);
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid hsl(222, 59%, 36%);
  }
  
  .btn-view-all:hover {
    background: hsl(222, 59%, 21%);
    border-color: hsl(222, 59%, 21%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
  
  @media (max-width: 768px) {
    .blog-preview {
      padding: 60px 0;
    }
    
    .blog-preview h2 {
      font-size: 2rem;
    }
    
    .blog-card-image {
      height: 200px;
    }
    
    .blog-card-content {
      padding: 20px;
    }
    
    .blog-card-title {
      font-size: 1.2rem;
    }
  }

.disclaimer-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
  }
  
  .disclaimer-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .disclaimer-header {
    text-align: center;
    margin-bottom: 35px;
  }
  
  .disclaimer-icon {
    font-size: 48px;
    color: hsl(222, 59%, 36%);
    margin-bottom: 20px;
    display: inline-block;
  }
  
  .disclaimer-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.2rem;
    color: #222;
    font-weight: 600;
    margin: 0;
  }
  
  .disclaimer-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 45px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(222, 59%, 61%);
  }
  
  .disclaimer-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    .disclaimer-section {
      padding: 40px 0;
    }
    
    .disclaimer-title {
      font-size: 1.75rem;
    }
    
    .disclaimer-content {
      padding: 30px 25px;
    }
    
    .disclaimer-text {
      font-size: 0.95rem;
    }
    
    .disclaimer-icon {
      font-size: 40px;
    }
  }
  
  @media (max-width: 480px) {
    .disclaimer-content {
      padding: 25px 20px;
    }
    
    .disclaimer-title {
      font-size: 1.5rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(222, 59%, 36%);
    --secondary-color: hsl(222, 59%, 21%);
    --accent-color: hsl(222, 59%, 61%);
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.7;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 15px;
  }
  
  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background-color: var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
  }
  
  .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;
  }
  
  .policy-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 8px;
  }
  
  .policy-header h1 {
    color: white;
    border-bottom: none;
    margin-bottom: 0.5rem;
  }
  
  .last-updated {
    background-color: #f8f9fa;
    padding: 1rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    border-radius: 4px;
  }
  
  .contact-box {
    background-color: #f8f9fa;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
  }
  
  .contact-box h3 {
    margin-top: 0;
  }
  
  .highlight-box {
    background-color: rgba(66, 99, 163, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 4px;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    margin: 2rem 0;
  }

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(222, 59%, 36%);
    --secondary-color: hsl(222, 59%, 21%);
    --accent-color: hsl(222, 59%, 61%);
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
    color: 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: 15px;
  }
  
  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background-color: var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
  }
  
  .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;
  }
  
  .info-box {
    background-color: hsl(222, 59%, 96%);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-card h3 {
    color: white;
    margin-bottom: 1.5rem;
  }
  
  .contact-card a {
    color: white;
    text-decoration: underline;
  }
  
  .contact-card a:hover {
    color: var(--accent-color);
  }
  
  .effective-date {
    background-color: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    margin: 3rem 0;
  }

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');
  
  .thank-you-section {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, hsl(222, 59%, 96%) 0%, hsl(222, 59%, 98%) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
  }
  
  .thank-you-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(41, 66, 116, 0.12);
    padding: 3rem 2rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
  }
  
  .success-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, hsl(222, 59%, 36%) 0%, hsl(222, 59%, 21%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: scaleIn 0.5s ease-out;
  }
  
  .success-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid hsl(222, 59%, 61%);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
  }
  
  @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.15);
      opacity: 0.1;
    }
  }
  
  .checkmark {
    width: 50px;
    height: 50px;
    stroke: white;
    stroke-width: 3;
    stroke-linecap: round;
    fill: none;
    animation: drawCheck 0.5s ease-out 0.3s forwards;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }
  
  @keyframes drawCheck {
    to {
      stroke-dashoffset: 0;
    }
  }
  
  .thank-you-heading {
    font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 21%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
  }
  
  .thank-you-subheading {
    font-family: 'Roboto', sans-serif;
    color: hsl(222, 59%, 36%);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.5s both;
  }
  
  .thank-you-message {
    color: hsl(222, 20%, 40%);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.6s both;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.7s both;
  }
  
  .info-card {
    background: hsl(222, 59%, 98%);
    border-left: 4px solid hsl(222, 59%, 61%);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    text-align: left;
  }
  
  .info-card-icon {
    color: hsl(222, 59%, 36%);
    margin-right: 0.75rem;
    font-size: 1.25rem;
  }
  
  .info-card-text {
    color: hsl(222, 20%, 30%);
    font-size: 0.95rem;
    margin: 0;
    display: inline;
  }
  
  .btn-home {
    background: hsl(222, 59%, 36%);
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    padding: 0.875rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(41, 66, 116, 0.2);
    animation: fadeInUp 0.6s ease-out 0.8s both;
  }
  
  .btn-home:hover {
    background: hsl(222, 59%, 21%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 66, 116, 0.3);
  }
  
  .btn-home:active {
    transform: translateY(0);
  }
  
  @media (max-width: 576px) {
    .thank-you-container {
      padding: 2rem 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: 80px;
      height: 80px;
    }
    
    .success-icon-wrapper::before {
      width: 100px;
      height: 100px;
    }
    
    .checkmark {
      width: 40px;
      height: 40px;
    }
  }