:root {
  --primary: #c397e2;
  --secondary: #00cc67;
  --accent: #ff9933;
  --light: #f8f9fa;
  --dark: #333;
}

body {
  font-family: "Titillium Web", sans-serif;
  overflow-x: hidden;
  color: var(--dark);
  background-color: #fff;
}

.hero-web {
  background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.section-title {
  position: relative;
  margin-bottom: 40px;
  font-weight: 700;
}

.section-title:after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--secondary);
  margin: 15px 0;
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-icon {
  font-size: 40px;
  color: var(--secondary);
  margin-bottom: 15px;
}

.btn {
  border-color: #c397e2 !important;
  color: #c397e2 !important;
}

.btn-primary {
  background-color: #c397e2 !important;
  border: none !important;
  border-color: #c397e2 !important;
  padding: 10px 25px;
  /* border-radius: 30px !important; */
  font-weight: 600;
  transition: all 0.3s;
  color: #fff !important;
}

.btn-primary:hover {
  background-color: #c397e2;
  /* transform: translateY(-2px); */
}

.service-details {
  padding: 100px 0;
}

.package-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  margin-bottom: 30px;
  text-align: center;
  border: 2px solid transparent;
}

.package-card:hover {
  border-color: #c397e2;
  transform: translateY(-5px);
}

.package-card.featured {
  border-color: #c397e2;
  position: relative;
  overflow: hidden;
}

.package-card.featured:before {
  content: "POPULAR";
  position: absolute;
  top: 15px;
  right: -35px;
  background: #c397e2;
  color: white;
  padding: 5px 40px;
  font-size: 12px;
  font-weight: 600;
  transform: rotate(45deg);
}

.price {
  font-size: 40px;
  font-weight: 700;
  color: #c397e2;
  margin: 20px 0;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.package-features li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.tech-badge {
  background-color: var(--light);
  color: #c397e2;
  padding: 8px 15px;
  border-radius: 30px;
  margin: 5px;
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
}

.main-layout {
  display: flex;
  gap: 30px;
  margin: 60px auto;
}

.sidebar {
  background: linear-gradient(to bottom, #c397e2, #c397e2);
  color: white;
  padding: 25px;
  border-radius: 10px;
  min-width: 250px;
  height: fit-content;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.sidebar h4 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.sidebar a {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin: 8px 0;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: 500;
}

.sidebar a i {
  margin-right: 10px;
  font-size: 1rem;
}

.sidebar a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
  color: white;
}

.sidebar a.active {
  background: white;
  color: #c397e2;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(44, 62, 80, 0.2);
}

.content-box {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.content-box h2 {
  margin-bottom: 20px;
  color: #c397e2;
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 15px;
}

.content-box h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.content-box h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--secondary);
  font-size: 1.6rem;
}

.content-box p {
  margin-bottom: 20px;
  color: #555;
  font-size: 1.05rem;
}

.content-box ul,
.content-box ol {
  padding-left: 20px;
  margin-bottom: 25px;
}

.content-box li {
  margin-bottom: 10px;
  padding-left: 5px;
  font-size: 14px;
}

.btn:focus,
.btn:active {
  border-color: #c397e2 !important;
  box-shadow: none !important;
}

.btn-outline-primary {
  border-color: #c397e2 !important;
  color: #c397e2 !important;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline-primary:hover {
  background-color: #c397e2 !important;
  color: #fff !important;
  box-shadow: 0 4px 6px rgba(195, 151, 226, 0.3);
}

@media (max-width: 992px) {
  .main-layout {
    flex-direction: column;
  }

  .sidebar {
    min-width: 100%;
  }
}
