/* Custom Fonts - Using clean sans-serif */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    background-color: #f9fafb; /* Light Gray */
    color: #111b21; /* Dark Gray for text */
    font-family: 'Inter', sans-serif;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

header {
    border-bottom: 2px solid #a3e635; /* Orbitalk Green Border */
    background-color: #fff;
    padding: 10px 20px;
    text-align: center;
}

.logo {
    height: 60px; /* Bigger to show details from your image */
    margin-bottom: 10px;
    object-fit: contain;
}

h1 {
    font-size: 2rem;
    color: #a3e635; /* Orbitalk Green */
    font-weight: 700;
    margin: 0;
}

.brand-text {
    color: #6b7280; /* Neutral gray */
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-top: -10px;
    margin-bottom: 20px;
}

.search-container {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

#faqSearch {
    width: 100%;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    color: #111b21;
    padding: 12px 10px;
    font-size: 1.1rem;
    outline: none;
    transition: 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Hover state is now the secondary orange/blue colors for interaction feedback */
#faqSearch:focus {
    border-color: #f97316; /* Secondary Orange */
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 80px 20px;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: 0.2s;
}

.faq-item:hover {
    border-color: #a3e635; /* Green */
}

.faq-trigger {
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
}

.faq-trigger:hover h2 {
    color:  #a3e635;; /* Change text color on hover */
}

.faq-trigger h2 {
    font-size: 1.25rem;
    color: #111b21;
    font-weight: 600;
    margin: 0;
    transition: 0.2s;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: #fafafa;
}

.faq-content p {
    padding: 0 10px 10px 10px;
    font-size: 1rem;
    color: #6b7280; /* Softer text color for answers */
    line-height: 1.7;
    margin: 0;
}

/* Specific styling for the Active state */
.faq-item.active {
    border-color: #a3e635; /* Green Border for active items */
    box-shadow: 0 10px 15px -3px rgba(163, 230, 53, 0.1);
}

.faq-item.active .faq-content {
    max-height: 1000px; /* Large max-height to accommodate long content */
}

/* Arrow styling */
.arrow-icon {
    font-size: 1.5rem;
    color: #a3e635;
    transition: 0.3s;
    font-weight: bold;
}

.faq-item.active .arrow-icon {
    transform: rotate(180deg);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 640px) {
    header { padding: 20px; }
    .logo { height: 90px; }
    h1 { font-size: 1.75rem; }
    .faq-trigger { padding: 20px; }
    .faq-trigger h2 { font-size: 1.1rem; }
}