:root {
            --primary-color: hsl(239, 44%, 35%);
            --secondary-color: hsl(239, 44%, 20%);
            --accent-color: hsl(239, 44%, 60%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Playfair Display', serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Ubuntu', sans-serif;
            font-weight: 700;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 15px;
            font-family: 'Ubuntu', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Ubuntu', sans-serif;
            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: 2px solid var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(72, 61, 139, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(72, 61, 139, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: #ffffff;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
            }
        }

.about-section {
  font-family: 'Playfair Display', serif;
  color: #333;
  background-color: #ffffff;
  padding: 80px 0;
}

.about-section h1,
.about-section h2,
.about-section h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(239, 44%, 35%);
  font-weight: 700;
}

.about-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  margin-top: 3rem;
}

.about-section h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: hsl(239, 44%, 60%);
}

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

.about-hero {
  background: linear-gradient(135deg, hsl(239, 44%, 35%) 0%, hsl(239, 44%, 20%) 100%);
  padding: 60px 0;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px;
}

.about-hero h1 {
  color: #ffffff;
  text-align: center;
}

.about-intro {
  background-color: #f8f9fa;
  padding: 50px;
  border-radius: 15px;
  margin-bottom: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  margin-bottom: 30px;
}

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

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

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

.value-card {
  background-color: #ffffff;
  padding: 35px;
  border-radius: 12px;
  border-left: 5px solid hsl(239, 44%, 60%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h3 {
  margin-top: 0;
  color: hsl(239, 44%, 35%);
}

.expertise-section {
  background: linear-gradient(to right, #f8f9fa 0%, #ffffff 100%);
  padding: 50px;
  border-radius: 15px;
  margin-top: 50px;
}

.stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 30px;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: hsl(239, 44%, 35%);
  font-family: 'Ubuntu', sans-serif;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
}

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

  .about-section h1 {
    font-size: 2.2rem;
  }

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

  .about-intro,
  .expertise-section {
    padding: 30px 20px;
  }

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

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

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

.portfolio-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(239, 44%, 35%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

.filter-btn {
  font-family: 'Ubuntu', sans-serif;
  padding: 10px 25px;
  border: 2px solid hsl(239, 44%, 35%);
  background: transparent;
  color: hsl(239, 44%, 35%);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: hsl(239, 44%, 35%);
  color: #ffffff;
}

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

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

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

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

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

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
  padding: 30px 20px 20px;
  transition: all 0.3s ease;
}

.portfolio-category {
  font-family: 'Ubuntu', sans-serif;
  display: inline-block;
  background: hsl(239, 44%, 60%);
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.portfolio-title {
  font-family: 'Ubuntu', sans-serif;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

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

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

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

.modal-body {
  padding: 30px;
  font-family: 'Playfair Display', serif;
  color: #333;
}

.modal-body img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
}

.project-detail-label {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(239, 44%, 35%);
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.project-detail-text {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
}

.project-features {
  list-style: none;
  padding: 0;
}

.project-features li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 25px;
}

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

.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: 20px;
  }
  
  .filter-buttons {
    gap: 10px;
  }
  
  .filter-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  
  .modal-body img {
    height: 250px;
  }
}

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

.advantages-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(239, 44%, 35%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

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

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

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: hsl(239, 44%, 60%);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(239, 44%, 35%), hsl(239, 44%, 60%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s 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: 'Ubuntu', sans-serif;
  color: hsl(239, 44%, 20%);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

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

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

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

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

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

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

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

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

.statistics-section::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>');
  background-size: 50px 50px;
}

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

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

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

.statistics-header p {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  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(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  background: hsl(239, 44%, 70%);
}

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

.stat-number {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  display: block;
  animation: countUp 2s ease-out;
}

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

.stat-label {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-weight: 500;
}

.stat-context {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  font-style: italic;
}

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

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

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

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

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

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

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

footer {
  background: linear-gradient(135deg, hsl(239, 44%, 20%) 0%, hsl(239, 44%, 35%) 100%);
  color: #f8f9fa;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  font-family: 'Playfair Display', serif;
}

footer h5 {
  font-family: 'Ubuntu', sans-serif;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

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

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

footer a:hover {
  color: hsl(239, 44%, 60%);
  padding-left: 5px;
}

.footer-description {
  max-width: 350px;
  margin-bottom: 1.5rem;
  color: #d8d9da;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.contact-info-footer {
  list-style: none;
  padding: 0;
}

.contact-info-footer li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.contact-info-footer i {
  color: hsl(239, 44%, 60%);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  font-size: 1.1rem;
}

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

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #c8c9ca;
}

.policy-links {
  margin-top: 1rem;
}

.policy-links a {
  color: #d8d9da;
  margin: 0 1rem;
  font-size: 0.9rem;
}

.policy-links a:hover {
  color: hsl(239, 44%, 60%);
  padding-left: 0;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 2rem 0;
  border-top: 3px solid hsl(239, 44%, 35%);
  animation: slideUp 0.5s ease-out;
}

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

.cookie-content h4 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(239, 44%, 20%);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.cookie-content p {
  color: #333333;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cookie-categories {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e0e0;
}

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

.cookie-category-info h6 {
  font-family: 'Ubuntu', sans-serif;
  color: #222222;
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.cookie-category-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #666666;
}

.cookie-category-status {
  font-size: 0.85rem;
  color: #666666;
  font-style: italic;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

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

.btn-reject-optional {
  background: #6c757d;
  color: #ffffff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.btn-manage-settings {
  background: transparent;
  color: hsl(239, 44%, 35%);
  border: 2px solid hsl(239, 44%, 35%);
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-manage-settings:hover {
  background: hsl(239, 44%, 35%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 47, 107, 0.3);
}

@media (max-width: 768px) {
  footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-description {
    max-width: 100%;
  }

  #cookieNotice {
    padding: 1.5rem 0;
  }

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

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

  .policy-links a {
    display: block;
    margin: 0.5rem 0;
  }
}

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

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

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

.contact-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: hsl(239, 44%, 60%);
    opacity: 0.05;
    border-radius: 50%;
}

.contact-section h2 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(239, 44%, 20%);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

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

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

.contact-form-wrapper h3 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(239, 44%, 35%);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

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

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

.contact-form .form-control:focus {
    border-color: hsl(239, 44%, 60%);
    box-shadow: 0 0 0 0.2rem rgba(86, 75, 149, 0.15);
    outline: none;
}

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

.contact-form .btn-submit {
    font-family: 'Ubuntu', sans-serif;
    background: hsl(239, 44%, 35%);
    color: #ffffff;
    padding: 15px 45px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: 100%;
}

.contact-form .btn-submit:hover {
    background: hsl(239, 44%, 20%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(86, 75, 149, 0.3);
}

.contact-info-card {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-card h3 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(239, 44%, 35%);
    font-size: 1.6rem;
    margin-bottom: 30px;
}

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(239, 44%, 60%) 0%, hsl(239, 44%, 35%) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

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

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

.contact-info-content p,
.contact-info-content a {
    color: #666;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-info-content a {
    color: hsl(239, 44%, 35%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: hsl(239, 44%, 60%);
}

.map-container {
    margin-top: 60px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-placeholder {
    background: linear-gradient(135deg, hsl(239, 44%, 95%) 0%, #ffffff 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23564b95" opacity="0.1"/></svg>') repeat;
    background-size: 30px 30px;
}

.map-placeholder-content {
    text-align: center;
    z-index: 1;
}

.map-placeholder-content svg {
    width: 60px;
    height: 60px;
    fill: hsl(239, 44%, 60%);
    margin-bottom: 15px;
}

.map-placeholder-content p {
    font-family: 'Ubuntu', sans-serif;
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section h2 {
        font-size: 2.2rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-info-card {
        padding: 30px 25px;
        margin-top: 30px;
    }
    
    .map-placeholder {
        height: 300px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

  :root {
    --primary-color: hsl(239, 44%, 35%);
    --secondary-color: hsl(239, 44%, 20%);
    --accent-color: hsl(239, 44%, 60%);
  }

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

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
  }

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

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

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

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

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

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

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

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

  .policy-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 0;
    border-radius: 0;
  }

  .policy-header h1 {
    color: white;
    border: none;
    margin-bottom: 0.5rem;
  }

  .last-updated {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    display: inline-block;
    font-size: 0.95rem;
    font-family: 'Ubuntu', sans-serif;
    margin-top: 1rem;
  }

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

  .contact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 10px;
    margin-top: 3rem;
  }

  .contact-section h2 {
    color: white;
  }

  .contact-section h2:before {
    background-color: white;
  }

  .contact-section a {
    color: white;
    border-bottom-color: white;
  }

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

  .cookie-type-card {
    background: white;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }

  .cookie-type-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
  }

  .cookie-type-card h3 {
    margin-top: 0;
  }

  strong {
    color: var(--secondary-color);
  }

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

.faq-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(239, 44%, 35%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

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

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

.faq-accordion .accordion-button {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: hsl(239, 44%, 35%);
  background: #ffffff;
  padding: 1.5rem 1.8rem;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

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

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

.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='%23463C74'%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");
  width: 1.5rem;
  height: 1.5rem;
  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");
  transform: rotate(-180deg);
}

.faq-accordion .accordion-body {
  padding: 1.5rem 1.8rem 2rem 1.8rem;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.8;
  background: #ffffff;
}

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

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

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

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

.faq-number {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: hsl(239, 44%, 60%);
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-right: 12px;
  font-family: 'Ubuntu', sans-serif;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-number {
  background: rgba(255,255,255,0.3);
}

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

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

  .faq-accordion .accordion-button {
    font-size: 1.05rem;
    padding: 1.2rem 1.3rem;
  }

  .faq-accordion .accordion-body {
    padding: 1.2rem 1.3rem 1.5rem 1.3rem;
    font-size: 1rem;
  }

  .faq-number {
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 0.85rem;
    margin-right: 10px;
  }
}

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

.newsletter-section::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"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 20v60M20 50h60" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>') repeat;
  opacity: 0.3;
}

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

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

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

.newsletter-description {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: #f8f9fa;
  margin-bottom: 35px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 550px;
  margin: 0 auto;
  flex-wrap: wrap;
}

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

.newsletter-input:focus {
  outline: none;
  border-color: hsl(239, 44%, 60%);
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-input::placeholder {
  color: #666;
  font-style: italic;
}

.newsletter-submit {
  padding: 16px 40px;
  background: hsl(239, 44%, 60%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit:hover {
  background: hsl(239, 44%, 50%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

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

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

  .newsletter-form {
    flex-direction: column;
  }

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

  .newsletter-submit {
    width: 100%;
  }

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

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

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

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

.hero-content {
  padding: 40px 0;
}

.hero-section h1 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(239, 44%, 20%);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: hsl(239, 44%, 35%);
  margin-bottom: 25px;
}

.hero-description {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

.advantages-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.advantages-list li {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #222;
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  line-height: 1.6;
}

.advantages-list li i {
  position: absolute;
  left: 0;
  top: 14px;
  color: hsl(239, 44%, 35%);
  font-size: 1.2rem;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary-hero {
  font-family: 'Ubuntu', sans-serif;
  background-color: hsl(239, 44%, 35%);
  color: #ffffff;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary-hero:hover {
  background-color: hsl(239, 44%, 25%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-secondary-hero {
  font-family: 'Ubuntu', sans-serif;
  background-color: transparent;
  color: hsl(239, 44%, 35%);
  padding: 14px 32px;
  border: 2px solid hsl(239, 44%, 35%);
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
  background-color: hsl(239, 44%, 35%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-image-wrapper {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

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

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

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

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

  .hero-content {
    padding: 20px 0;
  }

  .hero-image-wrapper {
    margin-top: 30px;
  }
}

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

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

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

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

  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    text-align: center;
  }
}

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

.services-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(239, 44%, 35%);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

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

.service-card {
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

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

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: hsl(239, 44%, 60%);
}

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

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

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

.service-card h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(239, 44%, 35%);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.service-price {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(239, 44%, 35%);
  font-size: 1.6rem;
  font-weight: 700;
}

.service-term {
  color: #777;
  font-size: 0.9rem;
  font-style: italic;
}

.service-badge {
  display: inline-block;
  background: hsl(239, 44%, 60%);
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-family: 'Ubuntu', sans-serif;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .services-section h2 {
    font-size: 2.2rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-price {
    font-size: 1.4rem;
  }
}

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

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

.blog-preview-section .section-subtitle {
  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: transform 0.3s ease, box-shadow 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.12);
}

.blog-card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

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

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

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

.blog-card h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(239, 44%, 20%);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-card h3 a {
  color: hsl(239, 44%, 20%);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card h3 a:hover {
  color: hsl(239, 44%, 35%);
}

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

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

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

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

.view-all-btn:hover {
  background: hsl(239, 44%, 60%);
  transform: scale(1.05);
  color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.calendar-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  margin-bottom: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: hsl(239, 44%, 95%);
  transform: translateX(5px);
}

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

.benefit-text {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding-top: 5px;
}

.discount-highlight {
  background: hsl(239, 44%, 60%);
  color: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 40px;
}

.discount-text {
  font-family: 'Ubuntu', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.offer-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, hsl(239, 44%, 35%) 0%, hsl(239, 44%, 20%) 100%);
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #fff;
  background: linear-gradient(135deg, hsl(239, 44%, 40%) 0%, hsl(239, 44%, 25%) 100%);
}

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

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

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

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

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

  .discount-text {
    font-size: 24px;
  }

  .benefit-item {
    padding: 15px;
  }

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

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

.testimonials-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(239, 44%, 35%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

.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(239, 44%, 35%) 0%, hsl(239, 44%, 20%) 100%);
  color: #ffffff;
  border-left: 4px solid hsl(239, 44%, 60%);
}

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

.testimonial-card.minimal {
  padding: 25px;
  border-left: none;
  border-top: 3px solid hsl(239, 44%, 60%);
}

.testimonial-card.boxed {
  border: 2px solid hsl(239, 44%, 60%);
  border-left-width: 4px;
  background: #f8f9fa;
}

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

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

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

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

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

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: hsl(239, 44%, 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

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

.customer-name {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  color: hsl(239, 44%, 35%);
  font-size: 1.1rem;
  margin-bottom: 2px;
}

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

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

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

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 25px;
  }
}

.quote-icon {
  font-size: 2rem;
  color: hsl(239, 44%, 60%);
  opacity: 0.3;
  margin-bottom: 10px;
}

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

.credentials-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
  font-family: 'Playfair Display', serif;
}

.credentials-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(239, 44%, 35%);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

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

.credential-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px 20px;
  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);
  border-color: hsl(239, 44%, 60%);
}

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

.credential-card h3 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.credential-card p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .credentials-section {
    padding: 40px 0;
  }
  
  .credentials-section h2 {
    font-size: 2rem;
  }
  
  .credential-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .credentials-section h2 {
    font-size: 1.75rem;
  }
  
  .credential-icon {
    font-size: 2.5rem;
  }
}

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

.disclaimer-section .section-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(239, 44%, 35%);
  margin-bottom: 1rem;
  text-align: center;
}

.disclaimer-section .icon-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.disclaimer-section .info-icon {
  font-size: 3.5rem;
  color: hsl(239, 44%, 60%);
  opacity: 0.9;
}

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

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

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

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

  .disclaimer-content {
    padding: 2rem 1.5rem;
  }

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

  .disclaimer-section .info-icon {
    font-size: 3rem;
  }
}

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

  .disclaimer-content {
    padding: 1.5rem 1rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

  :root {
    --primary-color: hsl(239, 44%, 35%);
    --secondary-color: hsl(239, 44%, 20%);
    --accent-color: hsl(239, 44%, 60%);
  }

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

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Ubuntu', sans-serif;
    color: var(--secondary-color);
    font-weight: 700;
  }

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

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

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

  .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 p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
  }

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

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

  .intro-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

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

  .contact-box {
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 5px;
  }

  .contact-box strong {
    color: var(--primary-color);
  }

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

  .highlight-box {
    background-color: #f0f1f8;
    border: 2px solid var(--accent-color);
    padding: 1.25rem;
    border-radius: 8px;
    margin: 1.5rem 0;
  }

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

  :root {
    --primary-color: hsl(239, 44%, 35%);
    --secondary-color: hsl(239, 44%, 20%);
    --accent-color: hsl(239, 44%, 60%);
  }

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

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Ubuntu', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
  }

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

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

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

  .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;
    border-bottom: 2px solid transparent;
  }

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

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

  .policy-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
  }

  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 1.75rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

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

  .info-box a {
    color: white;
    border-bottom: 2px solid white;
  }

  .info-box a:hover {
    color: #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
  }

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

  .effective-date {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
  }

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

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

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

  .thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(239, 44%, 35%) 0%, hsl(239, 44%, 20%) 100%);
    padding: 2rem 1rem;
    font-family: 'Playfair Display', serif;
  }

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

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

  .success-icon svg {
    width: 60px;
    height: 60px;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: checkmark 0.8s ease-out 0.3s both;
  }

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

  @keyframes checkmark {
    0% {
      stroke-dasharray: 0, 100;
    }
    100% {
      stroke-dasharray: 100, 100;
    }
  }

  .thankyou-heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(239, 44%, 35%);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
  }

  .thankyou-message {
    font-size: 1.125rem;
    color: hsl(239, 44%, 20%);
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.6s both;
  }

  .thankyou-details {
    background: hsl(239, 44%, 97%);
    border-left: 4px solid hsl(239, 44%, 60%);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
    animation: fadeInUp 0.6s ease-out 0.8s both;
  }

  .thankyou-details h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(239, 44%, 35%);
    margin-bottom: 1rem;
  }

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

  .thankyou-details li {
    padding: 0.5rem 0;
    color: hsl(239, 44%, 20%);
    display: flex;
    align-items: start;
  }

  .thankyou-details li::before {
    content: "✓";
    color: hsl(239, 44%, 60%);
    font-weight: bold;
    margin-right: 0.75rem;
    flex-shrink: 0;
  }

  .btn-home {
    font-family: 'Ubuntu', sans-serif;
    background: hsl(239, 44%, 35%);
    color: #ffffff;
    border: none;
    padding: 0.875rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out 1s both;
  }

  .btn-home:hover {
    background: hsl(239, 44%, 20%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

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

  @media (max-width: 768px) {
    .thankyou-card {
      padding: 2rem 1.5rem;
    }

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

    .thankyou-message {
      font-size: 1rem;
    }

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

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