#faq {
    background-color: var(--light-blue-bg);
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    align-items: start;
}

.faq-item {
    background-color: var(--white-color);
    border: 1px solid var(--border-light-color);
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(4, 44, 78, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(4, 44, 78, 0.1);
}

.faq-item.active {
    box-shadow: 0 15px 40px rgba(0, 170, 255, 0.15);
    border-color: var(--secondary-color);
}

.faq-question {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.faq-item-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--light-blue-bg);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-item-icon-wrapper i { width: 24px; height: 24px; }

.faq-item-content {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-item-content h3 {
    font-size: 1.0rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.3s ease;
    line-height: 1.4;
    margin: 0;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--primary-color);
}

.faq-icon i { transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1); }

.faq-item.active .faq-item-icon-wrapper {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.faq-item.active .faq-item-content h3 { color: var(--secondary-color); }
.faq-item.active .faq-icon i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.faq-answer p {
    padding: 0 20px 25px 88px;
    color: var(--text-color-dark);
    opacity: 0.8;
    line-height: 1.8;
    margin: 0;
}

/* Manual CTA Block */
.manual-cta {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-darker));
    color: var(--white-color);
    padding: 30px 40px;
    border-radius: 20px;
    margin: 0 auto 50px auto;
    max-width: 1100px;
    box-shadow: 0 15px 40px rgba(4, 44, 78, 0.15);
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.manual-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(4, 44, 78, 0.25);
}

.manual-cta::after {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.manual-cta-icon {
    width: 70px; height: 70px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.manual-cta-icon i {
    width: 35px; height: 35px;
    color: var(--secondary-color);
    filter: drop-shadow(0 0 8px rgba(0, 170, 255, 0.5));
}

.manual-cta-content { flex-grow: 1; z-index: 1; }
.manual-cta-content h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; color: var(--white-color); }
.manual-cta-content p { color: var(--text-color-light); margin: 0; font-size: 1.05rem; max-width: 600px; }

.manual-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.manual-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 170, 255, 0.3);
    background-color: var(--white-color);
    color: var(--primary-color);
}

.manual-cta-button i { width: 20px; height: 20px; transition: transform 0.3s ease; }
.manual-cta-button:hover i { transform: translateX(5px); }