:root {
            --primary-color: hsl(253, 52%, 35%);
            --secondary-color: hsl(253, 52%, 20%);
            --accent-color: hsl(253, 52%, 60%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Raleway', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
            font-family: 'Raleway', sans-serif;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2851, 28, 94, 1%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-color: #ffffff;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
            }
        }

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

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

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

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

.about-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(253, 52%, 20%);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

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

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

.about-story {
  margin-bottom: 60px;
}

.about-story-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

.about-story-text {
  flex: 1;
}

.about-story-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: hsl(253, 52%, 35%);
  margin-bottom: 25px;
}

.about-story-text p {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.about-story-image {
  flex: 1;
  position: relative;
}

.about-story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.about-story-image img:hover {
  transform: scale(1.02);
}

.about-mission {
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-bottom: 60px;
}

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

.mission-item {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mission-item:hover {
  border-color: hsl(253, 52%, 60%);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(253, 52%, 35%), hsl(253, 52%, 60%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: #fff;
}

.mission-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: hsl(253, 52%, 20%);
  margin-bottom: 15px;
}

.mission-item p {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.about-values {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-values-image {
  flex: 1;
}

.about-values-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-values-content {
  flex: 1;
}

.about-values-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: hsl(253, 52%, 35%);
  margin-bottom: 30px;
}

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

.values-list li {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  color: #444;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

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

.values-list li::before {
  content: '✓';
  color: hsl(253, 52%, 60%);
  font-weight: bold;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.values-list li strong {
  color: hsl(253, 52%, 35%);
  font-weight: 600;
}

.about-expertise {
  background: linear-gradient(135deg, hsl(253, 52%, 35%), hsl(253, 52%, 20%));
  padding: 60px;
  border-radius: 20px;
  margin-top: 60px;
  text-align: center;
}

.about-expertise h3 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(253, 52%, 60%);
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  color: #ffffff;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .about-story-content,
  .about-values {
    flex-direction: column;
  }
  
  .about-story-image img,
  .about-values-image img {
    height: 350px;
  }
  
  .about-header h2 {
    font-size: 2.2rem;
  }
  
  .about-mission {
    padding: 35px;
  }
  
  .about-expertise {
    padding: 40px 25px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-header h2 {
    font-size: 1.9rem;
  }
  
  .about-header p {
    font-size: 1.05rem;
  }
  
  .about-story-text h3,
  .about-values-content h3,
  .about-expertise h3 {
    font-size: 1.7rem;
  }
  
  .mission-grid {
    gap: 25px;
  }
  
  .about-story-image img,
  .about-values-image img {
    height: 300px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

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

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

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

  #portfolio .section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(253, 52%, 35%);
    margin-bottom: 15px;
  }

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

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

  #portfolio .filter-btn {
    padding: 10px 28px;
    background: #fff;
    border: 2px solid hsl(253, 52%, 35%);
    color: hsl(253, 52%, 35%);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  #portfolio .filter-btn:hover,
  #portfolio .filter-btn.active {
    background: hsl(253, 52%, 35%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  }

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

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

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

  #portfolio .portfolio-image {
    position: relative;
    overflow: hidden;
    height: 280px;
  }

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

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

  #portfolio .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

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

  #portfolio .portfolio-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: hsl(253, 52%, 60%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
  }

  #portfolio .portfolio-content {
    padding: 25px;
  }

  #portfolio .portfolio-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
  }

  #portfolio .portfolio-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  #portfolio .portfolio-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
  }

  #portfolio .portfolio-meta span {
    font-size: 0.9rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  #portfolio .portfolio-meta i {
    color: hsl(253, 52%, 60%);
  }

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

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

  #portfolio .modal-header h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
  }

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

  #portfolio .modal-body {
    padding: 30px;
  }

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

  #portfolio .project-details {
    margin-bottom: 25px;
  }

  #portfolio .project-details h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: hsl(253, 52%, 35%);
    margin-bottom: 15px;
    font-size: 1.1rem;
  }

  #portfolio .project-details p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  #portfolio .project-info-list {
    list-style: none;
    padding: 0;
  }

  #portfolio .project-info-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
  }

  #portfolio .project-info-list li:last-child {
    border-bottom: none;
  }

  #portfolio .project-info-list strong {
    color: #333;
    font-weight: 600;
  }

  #portfolio .project-info-list span {
    color: #666;
  }

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

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

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

    #portfolio .filter-buttons {
      gap: 10px;
    }

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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@400;500;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: 'Raleway', sans-serif;
  }

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

  #advantages .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(253, 52%, 35%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  #advantages .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(253, 52%, 60%);
    border-radius: 2px;
  }

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

  #advantages .advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
  }

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

  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: hsl(253, 52%, 60%);
  }

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

  #advantages .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(253, 52%, 60%), hsl(253, 52%, 35%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
  }

  #advantages .advantage-card:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(103, 58, 183, 0.3);
  }

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

  #advantages .advantage-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(253, 52%, 35%);
    margin-bottom: 15px;
    line-height: 1.4;
  }

  #advantages .advantage-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
  }

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

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

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

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

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

    #advantages .advantage-card {
      padding: 30px 20px;
    }

    #advantages .icon-wrapper {
      width: 60px;
      height: 60px;
    }

    #advantages .icon-wrapper i {
      font-size: 28px;
    }

    #advantages .advantage-title {
      font-size: 1.15rem;
    }
  }

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

#statistics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
  pointer-events: none;
}

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

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

.statistics-header p {
  font-family: 'Raleway', sans-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;
  position: relative;
  z-index: 1;
}

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

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, hsl(253, 52%, 60%), hsl(253, 52%, 70%));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

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

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

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  display: block;
}

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

.stat-context {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

@media (max-width: 768px) {
  #statistics {
    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: 30px 20px;
  }

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

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

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

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

footer {
  background: linear-gradient(135deg, hsl(253, 52%, 20%) 0%, hsl(253, 52%, 35%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Raleway', sans-serif;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.footer-section h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: hsl(253, 52%, 85%);
}

.footer-section p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: hsl(253, 52%, 85%);
  padding-left: 5px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
  margin-right: 12px;
  color: hsl(253, 52%, 70%);
  font-size: 1.1rem;
  margin-top: 3px;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: hsl(253, 52%, 85%);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.business-hours {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

.business-hours p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.business-hours p:last-child {
  margin-bottom: 0;
}

#cookieNotice {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  max-width: 600px;
  width: 90%;
  z-index: 9999;
  padding: 30px;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 20px;
    opacity: 1;
  }
}

.cookie-header {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: hsl(253, 52%, 35%);
  margin-bottom: 15px;
}

.cookie-text {
  font-family: 'Raleway', sans-serif;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

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

.cookie-category {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}

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

.cookie-category-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #222222;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

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

.cookie-required {
  background: #28a745;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-left: 8px;
  font-weight: 600;
}

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

.cookie-btn {
  flex: 1;
  min-width: 140px;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

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

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

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

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

.cookie-btn-settings {
  background: transparent;
  color: hsl(253, 52%, 35%);
  border: 2px solid hsl(253, 52%, 35%);
}

.cookie-btn-settings:hover {
  background: hsl(253, 52%, 35%);
  color: #ffffff;
  transform: translateY(-2px);
}

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #cookieNotice {
    width: 95%;
    padding: 25px;
    bottom: 10px;
  }

  .cookie-header {
    font-size: 1.2rem;
  }

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

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

@media (max-width: 480px) {
  .footer-section h3 {
    font-size: 1.1rem;
  }

  .cookie-header {
    font-size: 1.1rem;
  }

  .cookie-text {
    font-size: 0.9rem;
  }
}

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

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

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(253, 52%, 60%);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

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

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

.contact-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(253, 52%, 20%);
  margin-bottom: 15px;
}

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

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

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

.contact-info-wrapper h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: hsl(253, 52%, 35%);
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e9ecef;
}

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

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

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

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

.contact-info-content p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.contact-info-content a {
  color: hsl(253, 52%, 35%);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

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

.contact-form-wrapper h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: hsl(253, 52%, 35%);
  margin-bottom: 30px;
}

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

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

.form-group label .required {
  color: #dc3545;
  margin-left: 3px;
}

.form-control {
  width: 100%;
  padding: 12px 18px;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  color: #333;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: hsl(253, 52%, 60%);
  background: #ffffff;
  box-shadow: 0 0 0 3px hsla(253, 52%, 60%, 0.1);
}

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

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

.submit-btn {
  width: 100%;
  padding: 15px 30px;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, hsl(253, 52%, 35%) 0%, hsl(253, 52%, 60%) 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px hsla(253, 52%, 35%, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsla(253, 52%, 35%, 0.4);
}

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

.map-wrapper {
  margin-top: 60px;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.map-wrapper h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: hsl(253, 52%, 35%);
  margin-bottom: 25px;
  text-align: center;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #e9ecef;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-header h2 {
    font-size: 2rem;
  }
  
  .contact-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .contact-header h2 {
    font-size: 1.75rem;
  }
  
  .contact-info-wrapper,
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .contact-info-wrapper h3,
  .contact-form-wrapper h3 {
    font-size: 1.5rem;
  }
  
  .map-container {
    height: 300px;
  }
  
  .contact-section {
    padding: 50px 0;
  }
}

@media (max-width: 576px) {
  .contact-header h2 {
    font-size: 1.5rem;
  }
  
  .contact-header p {
    font-size: 1rem;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
  }
  
  .contact-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .form-control {
    padding: 10px 15px;
    font-size: 0.95rem;
  }
  
  .submit-btn {
    padding: 13px 25px;
    font-size: 1rem;
  }
}

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

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

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

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

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

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

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

  .policy-content p {
    margin-bottom: 1rem;
    font-weight: 400;
  }

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

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

  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    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 {
    opacity: 0.8;
    border-bottom: 2px solid white;
  }

  .cookie-type-card {
    background: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .cookie-type-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .last-updated {
    background: var(--secondary-color);
    color: white;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 2rem;
  }

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

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

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

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

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

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

.faq-accordion .accordion-button {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: hsl(253, 52%, 35%);
  background: #ffffff;
  padding: 1.5rem 1.75rem;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

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

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
  outline: 2px solid hsl(253, 52%, 60%);
  outline-offset: -2px;
}

.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='%234a2d6e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

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

.faq-accordion .accordion-body {
  padding: 1.5rem 1.75rem;
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
  background: #ffffff;
}

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

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

.faq-accordion .accordion-body strong {
  color: hsl(253, 52%, 35%);
  font-weight: 600;
}

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

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

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

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

  .faq-section .lead-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.newsletter-privacy {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  color: #f8f9fa;
  margin-top: 15px;
}

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

.newsletter-privacy a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.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: 'Raleway', sans-serif;
  font-size: 0.95rem;
}

.newsletter-benefit svg {
  width: 20px;
  height: 20px;
  fill: hsl(253, 52%, 60%);
  flex-shrink: 0;
}

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

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

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

  .newsletter-form-group {
    flex-direction: column;
    gap: 12px;
  }

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

  .newsletter-benefits {
    gap: 20px;
  }

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

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

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

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

  .newsletter-input {
    padding: 15px 20px;
  }

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

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

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

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-image-wrapper {
  flex: 0 0 40%;
  position: relative;
}

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

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

.hero-text-wrapper {
  flex: 0 0 60%;
  padding-left: 20px;
}

.hero-section h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: hsl(253, 52%, 35%);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: hsl(253, 52%, 20%);
  margin-bottom: 25px;
}

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

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

.hero-advantages li {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  color: #222;
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  line-height: 1.6;
}

.hero-advantages li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: hsl(253, 52%, 60%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-advantages li::after {
  content: '✓';
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

.hero-cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 40px;
  background: hsl(253, 52%, 35%);
  color: #fff;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
  background: hsl(253, 52%, 20%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-hero-secondary {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 40px;
  background: transparent;
  color: hsl(253, 52%, 35%);
  border: 2px solid hsl(253, 52%, 35%);
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: hsl(253, 52%, 35%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-image-wrapper,
  .hero-text-wrapper {
    flex: 0 0 100%;
    padding-left: 0;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section h2 {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-advantages li {
    font-size: 1rem;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }
}

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

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

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

  #testimonials .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(253, 52%, 35%);
    margin-bottom: 15px;
  }

  #testimonials .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }

  #testimonials .testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-left: 4px solid hsl(253, 52%, 60%);
  }

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

  #testimonials .testimonial-card.style-1 {
    border-left-color: hsl(253, 52%, 60%);
  }

  #testimonials .testimonial-card.style-2 {
    border-left-color: hsl(253, 52%, 45%);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  }

  #testimonials .testimonial-card.style-3 {
    border-left-color: hsl(253, 52%, 35%);
  }

  #testimonials .testimonial-card.style-4 {
    border-left-color: hsl(253, 52%, 50%);
    background: #fafbfc;
  }

  #testimonials .testimonial-card.style-5 {
    border-left-color: hsl(253, 52%, 40%);
  }

  #testimonials .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
  }

  #testimonials .star {
    color: #ffc107;
    font-size: 1.3rem;
  }

  #testimonials .star.empty {
    color: #e0e0e0;
  }

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

  #testimonials .testimonial-text.short {
    font-size: 1.15rem;
    font-weight: 500;
  }

  #testimonials .testimonial-text.long {
    font-size: 1rem;
  }

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

  #testimonials .customer-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(253, 52%, 60%) 0%, hsl(253, 52%, 35%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    flex-shrink: 0;
  }

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

  #testimonials .customer-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(253, 52%, 35%);
    margin-bottom: 3px;
  }

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

  #testimonials .verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
  }

  #testimonials .verified-icon {
    width: 14px;
    height: 14px;
  }

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

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

    #testimonials .testimonial-card {
      padding: 25px;
    }

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

.offer-section {
  background: linear-gradient(135deg, hsl(253, 52%, 35%) 0%, hsl(253, 52%, 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(253, 52%, 60%);
  opacity: 0.1;
  border-radius: 50%;
}

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

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

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

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

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

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

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

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

.deadline-date {
  font-family: 'Inter', 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;
}

.benefits-list li {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  color: #333;
  padding: 18px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 15px;
}

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

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

.discount-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

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

.offer-btn {
  display: inline-block;
  background: linear-gradient(135deg, hsl(253, 52%, 35%) 0%, hsl(253, 52%, 20%) 100%);
  color: #fff;
  font-family: 'Inter', 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);
}

.offer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #fff;
}

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

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

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

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

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

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

  .benefits-list li {
    font-size: 15px;
  }

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

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

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

.services-section .section-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(253, 52%, 35%);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

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

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

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

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

.service-card:hover {
  transform: translateY(-8px);
  border-color: hsl(253, 52%, 60%);
  box-shadow: 0 12px 35px rgba(84, 56, 121, 0.2);
}

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

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

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, hsl(253, 52%, 35%), hsl(253, 52%, 20%));
}

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

.service-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: hsl(253, 52%, 35%);
  margin-bottom: 18px;
  text-align: center;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: center;
}

.service-price {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: hsl(253, 52%, 35%);
  text-align: center;
  margin-bottom: 20px;
}

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

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

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

.service-terms li {
  font-size: 0.88rem;
  color: #555;
  padding: 6px 0;
  position: relative;
  padding-left: 22px;
}

.service-terms li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: hsl(253, 52%, 60%);
  font-weight: 700;
}

.service-btn {
  width: 100%;
  padding: 12px 20px;
  background: hsl(253, 52%, 60%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-btn:hover {
  background: hsl(253, 52%, 35%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(84, 56, 121, 0.3);
}

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

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

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

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

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

.blog-preview-section .section-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(253, 52%, 35%);
  margin-bottom: 15px;
}

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

.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px 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 30px rgba(0, 0, 0, 0.12);
}

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

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

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

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

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

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

.blog-meta-item i {
  color: hsl(253, 52%, 60%);
  font-size: 1rem;
}

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

.blog-card-title a {
  color: hsl(253, 52%, 35%);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: hsl(253, 52%, 60%);
}

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

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

.blog-read-more:hover {
  gap: 12px;
  color: hsl(253, 52%, 35%);
}

.blog-read-more i {
  font-size: 1.1rem;
}

.view-all-btn {
  display: inline-block;
  margin-top: 50px;
  padding: 16px 45px;
  background: hsl(253, 52%, 60%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.view-all-btn:hover {
  background: hsl(253, 52%, 35%);
  color: #ffffff;
  transform: translateY(-2px);
}

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

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

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

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

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

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

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

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

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

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

  #credentials {
    padding: 60px 0;
    background: #ffffff;
  }

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

  #credentials .credential-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
  }

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

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

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

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

    #credentials .section-title {
      font-size: 1.6rem;
      margin-bottom: 30px;
    }

    #credentials .credential-card {
      padding: 20px 15px;
    }

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

    #credentials .credential-text {
      font-size: 0.9rem;
    }
  }

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

.disclaimer-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(253, 52%, 60%);
}

.disclaimer-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(253, 52%, 60%) 0%, hsl(253, 52%, 50%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 4px 15px rgba(102, 73, 153, 0.25);
}

.disclaimer-icon i {
  font-size: 36px;
  color: #ffffff;
}

.disclaimer-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: hsl(253, 52%, 20%);
  text-align: center;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
}

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

.disclaimer-text strong {
  color: hsl(253, 52%, 35%);
  font-weight: 600;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-container {
    padding: 35px 25px;
    margin: 0 15px;
  }
  
  .disclaimer-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .disclaimer-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
  }
  
  .disclaimer-icon i {
    font-size: 30px;
  }
  
  .disclaimer-text {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .disclaimer-container {
    padding: 30px 20px;
  }
  
  .disclaimer-title {
    font-size: 1.6rem;
  }
}

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

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

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

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

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

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

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

  .policy-content p {
    margin-bottom: 1rem;
    font-weight: 400;
    text-align: justify;
  }

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

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

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

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

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

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

  .contact-box p {
    margin-bottom: 0.5rem;
  }

  .highlight-box {
    background-color: rgba(253, 52%, 60%, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
  }

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

  .last-updated {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-top: 1rem;
  }

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

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

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

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

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

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

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

  .policy-content p {
    margin-bottom: 1rem;
    font-weight: 400;
  }

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

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

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

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

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

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

  .info-box p {
    margin-bottom: 0.5rem;
  }

  .section-card {
    background: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .section-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .effective-date {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 2rem;
  }

  .contact-info {
    background: white;
    border: 2px solid var(--accent-color);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
  }

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