.sidebar-content {
  background-color: var(--white);
  padding: 25px 20px;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
  z-index: 1;
  border-radius: 10px;
}

.servies-img img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.sidebar-title {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.1rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  margin-bottom: 5px;
}

.service-list li a {
  display: block;
  padding: 10px 15px;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 0.90rem;
}

.service-list li a i {
  margin-right: 8px;
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.service-list li:hover a,
.service-list li.active a {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateX(5px);
}

.service-list li:hover a i,
.service-list li.active a i {
  color: var(--white);
}

.download-section h6 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.download-btn {
  background-color: var(--primary-dark);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background-color: var(--primary-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(10, 58, 120, 0.3);
}

.download-btn-alt {
  background-color: var(--black);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.download-btn-alt:hover {
  background-color: var(--shield-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 100, 200, 0.3);
}

.download-btn i,
.download-btn-alt i {
  margin-right: 8px;
}

.privacy-banner {
  background: linear-gradient(
    135deg,
    var(--shield-dark) 0%,
    var(--primary-dark) 100%
  );
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  color: var(--white);
}

.privacy-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.privacy-icon i {
  font-size: 2rem;
  color: var(--white);
}

.privacy-banner h6 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 15px;
}

.privacy-banner p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.contact-btn {
  background-color: var(--white);
  color: var(--primary-dark);
  border: none;
  padding: 10px 30px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* Main Content Styles */
.main-content {
  padding: 0px 20px 20px 20px;
}

.hero-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.content-section {
  padding: 20px 0;
}

.section-title {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

/* .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-light);
} */

.section-text {
  color: #666;
  line-height: 1.5;
  font-size: 1.1rem;
}

/* Features Grid */
.features-grid {
  /* margin-top: 40px; */
}

.feature-card {
  padding: 30px 20px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(10, 58, 120, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(63, 160, 245, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background-color: var(--primary-dark);
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary-mid);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
  color: var(--white);
}

.feature-card h5 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.feature-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 12px 0;
  color: var(--text-primary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.benefits-list li i {
  color: var(--primary-light);
  margin-right: 12px;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sidebar {
    min-height: auto;
    margin-bottom: 20px;
  }

  .main-content {
    padding: 20px 15px;
  }

  .features-grid {
    margin-top: 20px;
  }

  .feature-card {
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .privacy-banner {
    padding: 20px 15px;
  }

  .privacy-icon {
    width: 60px;
    height: 60px;
  }

  .privacy-icon i {
    font-size: 1.5rem;
  }
}

/* Service Details */
.service-details {
  padding: 80px 0;
  background: var(--white);
}

.detail-tabs {
  background: var(--white);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 10px 40px rgba(10, 58, 120, 0.08);
  display: inline-flex;
  gap: 10px;
  margin-bottom: 50px;
}

.detail-tab {
  padding: 15px 30px;
  border-radius: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.detail-tab.active,
.detail-tab:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--shield-blue));
  color: var(--white);
}

.detail-content {
  display: none;
}

.detail-content.active {
  display: block;
}

.detail-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 58, 120, 0.15);
}

.detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  background-position: center;
  background-size: cover;
}

.detail-text h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.detail-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.detail-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.detail-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(63, 160, 245, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.detail-feature:hover {
  background: rgba(63, 160, 245, 0.1);
  transform: translateX(5px);
}

.detail-feature i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-light), var(--shield-blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.detail-feature span {
  font-weight: 500;
  color: var(--text-primary);
}

/* Process Section */
.process-section {
  background: linear-gradient(135deg, var(--shield-dark), var(--primary-dark));
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.process-section .section-title,
.process-section .section-description {
  color: var(--white);
}

.process-section .section-description {
  opacity: 0.8;
}

.process-section .section-badge {
  background: rgba(63, 160, 245, 0.15);
  border-color: rgba(63, 160, 245, 0.3);
  color: var(--primary-light);
}

.process-timeline {
  position: relative;
  margin-top: 60px;
}

.process-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-light),
    transparent
  );
  transform: translateY(-50%);
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light), var(--shield-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(63, 160, 245, 0.4);
  position: relative;
}

.step-number::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px dashed rgba(63, 160, 245, 0.3);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.step-content {
  margin-top: 50px;
}

.step-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

@media (max-width: 576px) {
  .process-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .process-timeline {
    position: relative;
  }

  /* Hide horizontal line */
  .process-line {
    display: none !important;
  }

  .process-step {
    /* display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px; */
    margin-bottom: 50px;
    /* text-align: left; */
  }

  /* .step-number {
    font-size: 22px;
    min-width: 45px;
    height: 45px;
    line-height: 45px;
  }

  .step-content h4 {
    font-size: 18px;
  }

  .step-content p {
    font-size: 14px;
  } */
}

@media (max-width: 991px) {
  .process-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 32px;
  }

  /* Adjust timeline */
  .process-timeline {
    padding-top: 30px;
  }

  .process-line {
    display: none !important;
  }

  .process-step {
    /* padding: 25px 20px; */
    margin-bottom: 60px !important;
    text-align: center;
  }

  .step-number {
    font-size: 24px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 auto 15px;
  }

  .step-content h4 {
    font-size: 19px;
  }

  .step-content p {
    font-size: 15px;
  }
}
