:root {
--primary: hsl(235, 57%, 30%);
--secondary: hsl(235, 57%, 15%);
--accent: hsl(235, 57%, 55%);
}

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

body {
font-family: 'Crimson Text', serif;
  color: #222;
line-height: 1.7;
}

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

.navbar {
background-color: #fff;
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: 'Work Sans', sans-serif;
font-weight: 700;
  color: var(--primary) !important;
font-size: 1.4rem;
}

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

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

.nav-link {
  color: #333 !important;
font-family: 'Work Sans', sans-serif;
font-weight: 500;
  padding: 0.5rem 1rem !important;
transition: color 0.3s ease;
position: relative;
}

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

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

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

.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='rgba%2833, 37, 41, 0.75%29' 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: #fff;
  padding: 1rem;
margin-top: 1rem;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-link {
padding: 0.7rem 1rem !important;
}
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }
  
  .about-hero {
    background: hsl(235, 57%, 30%);
    color: #ffffff;
    padding: 60px 0;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
  }
  
  .about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(235, 57%, 55%);
    opacity: 0.1;
    border-radius: 50%;
  }
  
  .about-hero h1 {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
  }
  
  .about-hero p {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    opacity: 0.95;
    position: relative;
  }
  
  .story-block {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
  }
  
  .story-block h2 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(235, 57%, 30%);
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 600;
  }
  
  .story-block p {
    font-family: 'Crimson Text', serif;
    color: #333333;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 15px;
  }
  
  .about-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    margin-bottom: 30px;
  }
  
  .about-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }
  
  .about-img-wrapper:hover img {
    transform: scale(1.05);
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
  }
  
  .value-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 10px;
    border-left: 4px solid hsl(235, 57%, 55%);
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
  }
  
  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  }
  
  .value-card h3 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(235, 57%, 30%);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
  }
  
  .value-card p {
    font-family: 'Crimson Text', serif;
    color: #555555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
  }
  
  .mission-vision-block {
    background: linear-gradient(135deg, hsl(235, 57%, 30%) 0%, hsl(235, 57%, 15%) 100%);
    color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    margin: 50px 0;
  }
  
  .mission-vision-block h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .mission-vision-block p {
    font-family: 'Crimson Text', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
  }
  
  .expertise-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
  }
  
  .expertise-section h2 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(235, 57%, 30%);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
  }
  
  .expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .expertise-list li {
    font-family: 'Crimson Text', serif;
    color: #333333;
    font-size: 1.1rem;
    padding: 12px 0 12px 35px;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .expertise-list li:last-child {
    border-bottom: none;
  }
  
  .expertise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(235, 57%, 55%);
    font-weight: bold;
    font-size: 1.3rem;
  }
  
  @media (max-width: 768px) {
    .about-hero h1 {
      font-size: 2rem;
    }
    
    .about-hero p {
      font-size: 1.1rem;
    }
    
    .story-block {
      padding: 25px;
    }
    
    .mission-vision-block {
      padding: 30px 25px;
    }
    
    .values-grid {
      grid-template-columns: 1fr;
    }
  }

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

  .portfolio-section h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: hsl(235, 57%, 30%);
    margin-bottom: 15px;
    font-size: 2.5rem;
  }

  .portfolio-intro {
    font-family: 'Crimson Text', serif;
    color: #555;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
  }

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

  .filter-btn {
    font-family: 'Work Sans', sans-serif;
    padding: 10px 24px;
    border: 2px solid hsl(235, 57%, 30%);
    background: transparent;
    color: hsl(235, 57%, 30%);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(235, 57%, 30%);
    color: #fff;
    transform: translateY(-2px);
  }

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

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

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

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

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

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

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

  .portfolio-category {
    font-family: 'Work Sans', sans-serif;
    color: hsl(235, 57%, 75%);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .portfolio-title {
    font-family: 'Work Sans', sans-serif;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .portfolio-excerpt {
    font-family: 'Crimson Text', serif;
    color: #e8e8e8;
    font-size: 0.95rem;
    line-height: 1.5;
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(235, 57%, 30%) 0%, hsl(235, 57%, 40%) 100%);
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
  }

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

  .modal-body {
    padding: 35px 30px;
  }

  .modal-project-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 25px;
  }

  .modal-category-badge {
    display: inline-block;
    background: hsl(235, 57%, 55%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .modal-description {
    font-family: 'Crimson Text', serif;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
  }

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

  .project-details-list li {
    font-family: 'Crimson Text', serif;
    color: #555;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
  }

  .project-details-list li strong {
    font-family: 'Work Sans', sans-serif;
    color: hsl(235, 57%, 30%);
    font-weight: 600;
  }

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

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

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

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

    .filter-buttons {
      gap: 8px;
    }

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

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

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

#advantages h2 {
font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(235, 57%, 30%);
  margin-bottom: 15px;
  font-size: 2.5rem;
}

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

.advantage-card {
    background: #ffffff;
  border-radius: 12px;
  padding: 35px 25px;
  height: 100%;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

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

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

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

.advantage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(235, 57%, 55%), hsl(235, 57%, 30%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

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

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

.advantage-card h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: hsl(235, 57%, 30%);
  margin-bottom: 15px;
    font-size: 1.4rem;
}

.advantage-card p {
  color: #555;
  line-height: 1.7;
  margin: 0;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  #advantages {
    padding: 60px 0;
  }
  
  #advantages h2 {
    font-size: 2rem;
  }
  
  .advantage-card {
    margin-bottom: 25px;
  }
}

.advantages-grid {
  margin-top: 50px;
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600&display=swap');

  #statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(235, 57%, 30%) 0%, hsl(235, 57%, 15%) 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="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
  }

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

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

  .stats-header p {
    font-family: 'Crimson Text', serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
  }

  .stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
  }

  .stat-card:hover::before {
    left: 100%;
  }

  .stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: hsl(235, 57%, 55%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .stat-card:hover .stat-icon {
    background: hsl(235, 57%, 65%);
    transform: scale(1.1) rotate(5deg);
  }

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

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

  .stat-label {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
  }

  .stat-context {
    font-family: 'Crimson Text', serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
  }

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

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

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

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

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

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

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

footer {
  background: hsl(235, 57%, 15%);
    color: #f8f9fa;
  padding: 3rem 0 1rem;
font-family: 'Crimson Text', serif;
}

footer h5 {
font-family: 'Work Sans', sans-serif;
    color: #fff;
  font-weight: 600;
      margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

footer p, footer li, footer a {
  color: #e0e0e0;
    font-size: 0.95rem;
  line-height: 1.6;
}

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

footer a:hover {
    color: hsl(235, 57%, 55%);
}

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

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

.footer-contact-item {
  display: flex;
    align-items: start;
  margin-bottom: 0.8rem;
}

.footer-contact-item i {
  margin-right: 0.7rem;
    margin-top: 0.2rem;
  color: hsl(235, 57%, 55%);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2.5rem;
    padding-top: 1.5rem;
  text-align: center;
    color: #b0b0b0;
  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 -2px 10px rgba(0,0,0,0.2);
  z-index: 9999;
    padding: 1.5rem 0;
  font-family: 'Crimson Text', serif;
}

#cookieNotice h5 {
font-family: 'Work Sans', sans-serif;
  color: hsl(235, 57%, 30%);
    font-weight: 600;
  margin-bottom: 1rem;
}

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

.cookie-categories {
  margin: 1rem 0;
}

.cookie-category {
  padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.cookie-category strong {
  color: hsl(235, 57%, 30%);
    font-size: 0.9rem;
}

.cookie-category span {
  color: #666;
  font-size: 0.85rem;
    display: block;
  margin-top: 0.2rem;
}

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

.btn-accept-all {
  background: #28a745;
    color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
    border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept-all:hover {
  background: #218838;
}

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

.btn-reject:hover {
    background: #5a6268;
}

.btn-manage {
  background: transparent;
    color: hsl(235, 57%, 30%);
  border: 2px solid hsl(235, 57%, 30%);
  padding: 0.6rem 1.5rem;
    border-radius: 5px;
  font-weight: 600;
    text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-manage:hover {
    background: hsl(235, 57%, 30%);
  color: #fff;
}

@media (max-width: 768px) {
  footer {
    padding: 2rem 0 1rem;
  }
  
  footer h5 {
      margin-top: 1.5rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
    .cookie-buttons button,
  .cookie-buttons a {
    width: 100%;
      text-align: center;
  }
}

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

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600&display=swap');

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

  .contact-section h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: hsl(235, 57%, 30%);
    margin-bottom: 15px;
    font-size: 2.5rem;
  }

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

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

  .contact-form-wrapper:hover {
    transform: translateY(-5px);
  }

  .contact-form-wrapper h3 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(235, 57%, 30%);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.8rem;
  }

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

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

  .contact-form .form-control:focus {
    border-color: hsl(235, 57%, 55%);
    box-shadow: 0 0 0 0.2rem rgba(94, 84, 142, 0.15);
    outline: none;
  }

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

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

  .contact-form .btn-submit:hover {
    background: hsl(235, 57%, 55%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(94, 84, 142, 0.3);
  }

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

  .contact-info-wrapper h3 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    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-info-icon {
    width: 45px;
    height: 45px;
    background: hsl(235, 57%, 55%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .contact-info-item:hover .contact-info-icon {
    background: #ffffff;
    color: hsl(235, 57%, 30%);
    transform: rotate(360deg);
  }

  .contact-info-icon svg {
    width: 22px;
    height: 22px;
  }

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

  .contact-info-content p,
  .contact-info-content a {
    color: #e9ecef;
    margin: 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;
  }

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

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

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

    .contact-info-wrapper {
      margin-top: 30px;
    }
  }

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

    .contact-form-wrapper,
    .contact-info-wrapper {
      padding: 25px;
    }

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

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

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(235, 57%, 30%);
    --secondary-color: hsl(235, 57%, 15%);
    --accent-color: hsl(235, 57%, 55%);
  }
  
  .policy-content {
    font-family: 'Crimson Text', serif;
    color: var(--secondary-color);
    line-height: 1.8;
    font-size: 1.1rem;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Work Sans', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    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.9rem;
    color: var(--primary-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(--accent-color);
  }
  
  .policy-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.8rem;
  }
  
  .policy-content strong {
    color: var(--primary-color);
    font-weight: 700;
  }
  
  .info-box {
    background: linear-gradient(135deg, hsl(235, 57%, 95%) 0%, hsl(235, 57%, 98%) 100%);
    border-left: 5px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .last-updated {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    display: inline-block;
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .cookie-type-card {
    background: white;
    border: 2px solid var(--accent-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }
  
  .cookie-type-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  }
  
  .contact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
  }
  
  .contact-section a {
    color: white;
    text-decoration: underline;
  }
  
  .contact-section a:hover {
    color: hsl(235, 57%, 85%);
  }

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

  .faq-section h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: hsl(235, 57%, 30%);
    margin-bottom: 15px;
    font-size: 2.5rem;
  }

  .faq-intro {
    font-family: 'Crimson Text', serif;
    color: #555;
    font-size: 1.15rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .accordion-button {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    color: hsl(235, 57%, 30%);
    background-color: #ffffff;
    padding: 22px 28px;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
  }

  .accordion-button:not(.collapsed) {
    background-color: hsl(235, 57%, 30%);
    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='%23293a6b'%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;
  }

  .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 {
    font-family: 'Crimson Text', serif;
    color: #333;
    padding: 25px 28px;
    font-size: 1.08rem;
    line-height: 1.7;
    background-color: #ffffff;
  }

  .accordion-body ul {
    margin-top: 12px;
    padding-left: 20px;
  }

  .accordion-body li {
    margin-bottom: 8px;
    color: #444;
  }

  .accordion-body strong {
    color: hsl(235, 57%, 30%);
    font-weight: 600;
  }

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

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

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

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

#newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(235, 57%, 30%) 0%, hsl(235, 57%, 15%) 100%);
    position: relative;
    overflow: hidden;
  }

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

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

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

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

  .newsletter-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.15rem;
    color: #f8f9fa;
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

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

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

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

  .newsletter-email-input:focus {
    outline: none;
    border-color: hsl(235, 57%, 55%);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
  }

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

  .newsletter-submit-btn {
    padding: 16px 40px;
    background: hsl(235, 57%, 55%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .newsletter-submit-btn:hover {
    background: hsl(235, 57%, 50%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
  }

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

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

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

  .newsletter-benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(235, 57%, 55%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .newsletter-benefit-icon::after {
    content: '✓';
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
  }

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

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

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

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

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

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

    .newsletter-benefits {
      gap: 20px;
    }

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600&display=swap');
  
  .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, hsl(235, 57%, 15%) 0%, hsl(235, 57%, 30%) 100%);
    overflow: hidden;
  }
  
  .hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 80px 0;
  }
  
  .hero-section h1 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  }
  
  .hero-section h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: hsl(235, 57%, 85%);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  }
  
  .hero-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    color: #f8f9fa;
  }
  
  .hero-advantages {
    list-style: none;
    padding: 0;
    margin: 2.5rem auto;
    max-width: 650px;
    text-align: left;
  }
  
  .hero-advantages li {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    padding: 0.6rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: #fff;
  }
  
  .hero-advantages li i {
    position: absolute;
    left: 0;
    top: 0.7rem;
    color: hsl(235, 57%, 75%);
    font-size: 1.3rem;
  }
  
  .hero-cta {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn-hero-primary {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    background: hsl(235, 57%, 55%);
    color: #fff;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  
  .btn-hero-primary:hover {
    background: hsl(235, 57%, 45%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    color: #fff;
  }
  
  .btn-hero-secondary {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn-hero-secondary:hover {
    background: #fff;
    color: hsl(235, 57%, 30%);
    transform: translateY(-2px);
  }
  
  @media (max-width: 768px) {
    .hero-section h1 {
      font-size: 2.2rem;
    }
    
    .hero-section h2 {
      font-size: 1.4rem;
    }
    
    .hero-description {
      font-size: 1rem;
    }
    
    .hero-advantages li {
      font-size: 1rem;
    }
    
    .hero-cta {
      flex-direction: column;
      align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
      width: 100%;
      max-width: 280px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600&display=swap');

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

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

  #blog .section-header h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(235, 57%, 30%);
    margin-bottom: 15px;
  }

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

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

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

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

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

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

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

  .blog-meta-item {
    background: rgba(255,255,255,0.95);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #333;
    font-weight: 600;
    backdrop-filter: blur(5px);
  }

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

  .blog-card-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: hsl(235, 57%, 30%);
    margin-bottom: 18px;
    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(235, 57%, 55%);
  }

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

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

  .blog-read-more {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    color: hsl(235, 57%, 55%);
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  .blog-read-more:hover {
    color: hsl(235, 57%, 30%);
    gap: 12px;
  }

  .blog-read-more svg {
    width: 18px;
    height: 18px;
  }

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

  .btn-view-all {
    font-family: 'Work Sans', sans-serif;
    background: hsl(235, 57%, 55%);
    color: #ffffff;
    padding: 15px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid hsl(235, 57%, 55%);
  }

  .btn-view-all:hover {
    background: hsl(235, 57%, 30%);
    border-color: hsl(235, 57%, 30%);
    color: #ffffff;
    transform: scale(1.05);
  }

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

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

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

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

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

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

.credentials-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }
  
  .credentials-section .section-title {
    font-family: 'Work Sans', sans-serif;
    color: hsl(235, 57%, 30%);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .credentials-section .section-subtitle {
    font-family: 'Crimson Text', serif;
    color: #666;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
  }
  
  .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);
  }
  
  .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  }
  
  .credential-icon {
    font-size: 2.8rem;
    color: #28a745;
    margin-bottom: 15px;
  }
  
  .credential-card h5 {
    font-family: 'Work Sans', sans-serif;
    color: #222;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .credential-card p {
    font-family: 'Crimson Text', serif;
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
  }
  
  @media (max-width: 768px) {
    .credentials-section {
      padding: 40px 0;
    }
    
    .credentials-section .section-title {
      font-size: 1.8rem;
    }
    
    .credential-card {
      margin-bottom: 20px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css');

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

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

#services .section-header h2 {
font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
    color: hsl(235, 57%, 30%);
  margin-bottom: 15px;
}

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

.service-card {
background: #ffffff;
  border-radius: 12px;
    padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
box-shadow: 0 12px 35px rgba(71, 76, 141, 0.15);
    border-color: hsl(235, 57%, 55%);
}

.service-icon {
  width: 90px;
    height: 90px;
  margin: 0 auto 25px;
background: linear-gradient(135deg, hsl(235, 57%, 55%) 0%, hsl(235, 57%, 30%) 100%);
  border-radius: 50%;
    display: flex;
  align-items: center;
  justify-content: center;
    transition: all 0.4s ease;
}

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

.service-icon i {
font-size: 2.5rem;
  color: #ffffff;
}

.service-card h3 {
  font-family: 'Work Sans', sans-serif;
font-weight: 600;
    font-size: 1.6rem;
  color: hsl(235, 57%, 15%);
    margin-bottom: 18px;
}

.service-card p {
  font-size: 1.05rem;
    color: #666;
  line-height: 1.7;
    margin-bottom: 25px;
}

.service-price {
font-family: 'Work Sans', sans-serif;
    font-size: 1.8rem;
  font-weight: 700;
  color: hsl(235, 57%, 30%);
    margin-bottom: 10px;
}

.service-terms {
font-size: 0.95rem;
  color: #888;
    margin-bottom: 25px;
}

.service-card .btn {
  font-family: 'Work Sans', sans-serif;
    padding: 12px 35px;
  font-size: 1rem;
font-weight: 600;
    border-radius: 25px;
  background: hsl(235, 57%, 30%);
    color: #ffffff;
  border: none;
    transition: all 0.3s ease;
}

.service-card .btn:hover {
background: hsl(235, 57%, 55%);
  transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(71, 76, 141, 0.3);
}

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

#services .section-header h2 {
    font-size: 2.2rem;
  }
  
  .service-card {
padding: 35px 25px;
      margin-bottom: 30px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600&display=swap');

  .offer-section {
    background: linear-gradient(135deg, hsl(235, 57%, 30%) 0%, hsl(235, 57%, 15%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  .offer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
  }

  .offer-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    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(235, 57%, 55%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
  }

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

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

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

  .deadline-box {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 40px;
    margin: 50px auto;
    max-width: 500px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    position: relative;
  }

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

  .deadline-date {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(235, 57%, 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

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

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

  .benefit-card {
    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-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    border-color: hsl(235, 57%, 55%);
  }

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

  .benefit-text {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
  }

  .discount-banner {
    background: linear-gradient(90deg, hsl(235, 57%, 55%) 0%, hsl(235, 57%, 45%) 100%);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
  }

  .discount-number {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 10px;
  }

  .discount-label {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
  }

  .cta-button {
    display: inline-block;
    background: #fff;
    color: hsl(235, 57%, 30%);
    font-family: 'Work Sans', 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 10px 30px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .cta-button:hover {
    background: hsl(235, 57%, 55%);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  }

  @media (max-width: 768px) {
    .offer-title {
      font-size: 2rem;
    }

    .deadline-date {
      font-size: 1.8rem;
      flex-direction: column;
    }

    .discount-number {
      font-size: 3rem;
    }

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

  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
  }

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

  .delay-1 { animation-delay: 0.2s; }
  .delay-2 { animation-delay: 0.4s; }
  .delay-3 { animation-delay: 0.6s; }
  .delay-4 { animation-delay: 0.8s; }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

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

.testimonials-section::before {
content: '';
  position: absolute;
top: 0;
  left: 0;
width: 100%;
height: 100%;
  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(49,62,99,0.05)"/></svg>');
opacity: 0.4;
}

.testimonials-section .section-title {
font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
color: hsl(235, 57%, 30%);
  margin-bottom: 15px;
text-align: center;
position: relative;
}

.testimonials-section .section-subtitle {
font-family: 'Crimson Text', serif;
font-size: 1.2rem;
  color: #555;
text-align: center;
  margin-bottom: 60px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.testimonial-card {
background: #ffffff;
border-radius: 16px;
  padding: 30px;
margin-bottom: 30px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
position: relative;
border-left: 4px solid hsl(235, 57%, 55%);
}

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

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

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

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

.customer-info {
  display: flex;
align-items: center;
gap: 15px;
}

.customer-avatar {
width: 55px;
height: 55px;
  border-radius: 50%;
background: linear-gradient(135deg, hsl(235, 57%, 55%), hsl(235, 57%, 30%));
  display: flex;
align-items: center;
  justify-content: center;
color: #fff;
  font-family: 'Work Sans', sans-serif;
font-weight: 700;
font-size: 1.3rem;
flex-shrink: 0;
}

.customer-details h4 {
  font-family: 'Work Sans', sans-serif;
font-weight: 600;
  font-size: 1.1rem;
color: #222;
  margin: 0 0 4px 0;
}

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

.rating-stars {
display: flex;
  gap: 3px;
}

.rating-stars .star {
  color: #ffc107;
font-size: 1.2rem;
}

.rating-stars .star.empty {
color: #ddd;
}

.testimonial-text {
font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
line-height: 1.7;
color: #333;
  margin-bottom: 15px;
}

.testimonial-text.short {
font-size: 1.1rem;
}

.testimonial-text.long {
  font-size: 1rem;
line-height: 1.8;
}

.testimonial-meta {
  display: flex;
justify-content: space-between;
align-items: center;
  padding-top: 15px;
border-top: 1px solid #e9ecef;
flex-wrap: wrap;
gap: 10px;
}

.service-tag {
background: hsl(235, 57%, 95%);
  color: hsl(235, 57%, 30%);
padding: 5px 12px;
border-radius: 20px;
  font-family: 'Work Sans', sans-serif;
font-size: 0.85rem;
  font-weight: 600;
}

.review-date {
font-family: 'Crimson Text', serif;
  font-size: 0.9rem;
color: #888;
}

.quote-icon {
  position: absolute;
top: 20px;
right: 25px;
  font-size: 3rem;
color: hsl(235, 57%, 90%);
  opacity: 0.5;
}

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

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

.testimonial-card {
  padding: 20px;
}

.customer-avatar {
width: 45px;
  height: 45px;
font-size: 1.1rem;
}

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

.disclaimer-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
  }
  
  .disclaimer-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 45px 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  }
  
  .disclaimer-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
    padding-bottom: 22px;
    border-bottom: 2px solid hsl(235, 57%, 30%);
  }
  
  .disclaimer-icon {
    font-size: 42px;
    color: hsl(235, 57%, 55%);
    flex-shrink: 0;
  }
  
  .disclaimer-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(235, 57%, 15%);
    margin: 0;
  }
  
  .disclaimer-content {
    font-family: 'Crimson Text', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2c3e50;
    text-align: justify;
  }
  
  .disclaimer-content p {
    margin-bottom: 18px;
  }
  
  .disclaimer-content p:last-child {
    margin-bottom: 0;
  }
  
  @media (max-width: 768px) {
    .disclaimer-section {
      padding: 40px 0;
    }
    
    .disclaimer-container {
      padding: 30px 25px;
      margin: 0 15px;
    }
    
    .disclaimer-header {
      gap: 12px;
      margin-bottom: 24px;
    }
    
    .disclaimer-icon {
      font-size: 32px;
    }
    
    .disclaimer-title {
      font-size: 1.7rem;
    }
    
    .disclaimer-content {
      font-size: 1.05rem;
      text-align: left;
    }
  }
  
  @media (max-width: 480px) {
    .disclaimer-title {
      font-size: 1.5rem;
    }
    
    .disclaimer-icon {
      font-size: 28px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(235, 57%, 30%);
    --secondary-color: hsl(235, 57%, 15%);
    --accent-color: hsl(235, 57%, 55%);
  }
  
  .policy-content {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
  }
  
  .policy-content h2 {
    font-size: 1.875rem;
    margin-top: 2.5rem;
    color: var(--secondary-color);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
  }
  
  .policy-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-intro {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
  }
  
  .policy-intro p {
    margin-bottom: 0;
    font-size: 1.2rem;
  }
  
  .policy-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
  }
  
  .contact-box {
    background: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
  }
  
  .contact-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-box a {
    color: white;
    text-decoration: underline;
  }
  
  .contact-box a:hover {
    color: var(--accent-color);
  }
  
  .effective-date {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 1rem;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(235, 57%, 30%);
    --secondary-color: hsl(235, 57%, 15%);
    --accent-color: hsl(235, 57%, 55%);
  }
  
  .policy-content {
    font-family: 'Crimson Text', serif;
    color: var(--secondary-color);
    line-height: 1.8;
    font-size: 1.1rem;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Work Sans', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
  }
  
  .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.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
  }
  
  .policy-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.8rem;
  }
  
  .policy-content strong {
    color: var(--primary-color);
    font-weight: 700;
  }
  
  .info-box {
    background: linear-gradient(135deg, hsl(235, 57%, 95%) 0%, hsl(235, 57%, 98%) 100%);
    border-left: 5px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }
  
  .effective-date {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    display: inline-block;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    margin: 3rem 0;
  }

.thank-you-section {
    font-family: 'Crimson Text', serif;
    background: linear-gradient(135deg, hsl(235, 57%, 30%) 0%, hsl(235, 57%, 15%) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
  }

  .thank-you-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    padding: 3rem 2rem;
    text-align: center;
  }

  .success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: hsl(235, 57%, 30%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
  }

  .success-icon svg {
    width: 60px;
    height: 60px;
  }

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

  .thank-you-heading {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(235, 57%, 30%);
    margin-bottom: 1.5rem;
  }

  .thank-you-message {
    font-size: 1.125rem;
    line-height: 1.8;
    color: hsl(235, 57%, 15%);
    margin-bottom: 2rem;
  }

  .thank-you-message strong {
    color: hsl(235, 57%, 30%);
    font-weight: 600;
  }

  .home-button {
    background-color: hsl(235, 57%, 30%);
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    padding: 0.875rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .home-button:hover {
    background-color: hsl(235, 57%, 55%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #ffffff;
  }

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

  @media (max-width: 576px) {
    .thank-you-heading {
      font-size: 2rem;
    }

    .thank-you-card {
      padding: 2rem 1.5rem;
    }

    .success-icon {
      width: 80px;
      height: 80px;
    }

    .success-icon svg {
      width: 48px;
      height: 48px;
    }

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

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