/* FAQ Section Styling */
.faqs-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 24px 0;
}
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
}
.faq-question {
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--primary);
  font-size: 1.1rem;
  transition: color 0.2s;
}
.faq-question.collapsed {
  color: #333;
}
.faq-question i {
  margin-left: 8px;
  transition: transform 0.3s;
}
.faq-question:not(.collapsed) i {
  transform: rotate(180deg);
  color: var(--primary);
}
.faq-answer {
  padding: 12px 0 0 0;
  color: #444;
  font-size: 1rem;
  transition: all 0.3s;
}
.faqs-page {
  width: 100%;
  padding: 0 16px;
}
/* Error message alignment for recommendationsErrorMessage */
.error-message-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.error-message-container > div {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: #f8d7da;
  color: #842029;
  border-radius: 6px;
  font-size: 1rem;
}
/*landing page*/
        :root {
            --primary: #610DDE;
            --primary-dark: #4a0aad;
            --secondary: #090979;
            --dark: #150024;
            --light: #f8f9fa;
        }

        /* Navbar Styling */
.navbar {
    box-shadow: 0 2px 10px rgba(241, 239, 239, 0.1);
    border-radius: 16px;
    margin-top: 16px;
    margin-bottom: 0;
    background: #fff;
    padding: 0.5rem 1.5rem;
}
.navbar-brand {
    font-weight: 700;
    color: var(--primary) !important;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
}
.navbar-brand i {
    color: var(--primary) !important;
    font-size: 1.5rem;
    margin-right: 8px;
}
.nav-link {
    font-weight: 500;
    margin-left: 15px;
    color: #333 !important;
    position: relative;
    transition: color 0.2s;
}
.nav-link.active,
.nav-link:focus,
.nav-link:hover {
    color: var(--primary) !important;
}
.nav-link.active::after,
.nav-link:focus::after,
.nav-link:hover::after {
    width: 100%;
    background: var(--primary);
}
.nav-link::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(.4,0,.2,1);
}
        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(16deg, var(--dark) 0%, var(--secondary) 35%, var(--primary) 100%);
            color: #333;
            line-height: 1.6;
        }
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 60px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 40%);
            pointer-events: none;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 600px;
        }
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            border-radius: 50px;
            padding: 12px 32px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(97, 13, 222, 0.3);
        }
        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(97, 13, 222, 0.4);
        }
        .section {
            padding: 80px 0;
        }
        .about-section {
            background-color: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .section-title {
            position: relative;
            margin-bottom: 40px;
            font-weight: 700;
            color: var(--primary);
        }
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        .icon-box {
            background: rgba(97, 13, 222, 0.05);
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
        }
        .icon-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(97, 13, 222, 0.1);
        }
        .icon-box i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        .features-section {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            color: white;
            border-radius: 20px;
        }
        .footer {
            background: rgba(21, 0, 36, 0.8);
            color: rgba(255,255,255,0.7);
            padding: 40px 0 20px;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .section {
                padding: 60px 0;
            }
        }