/* Objections Section */
.objections {
    background-color: var(--bg-card);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.objections-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.objection-card {
    background-color: rgba(25, 66, 109, 0.2);
    border-left: 4px solid var(--brand-light-blue);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 0 10px 10px 0;
    transition: 0.3s;
}

.objection-card:hover {
    background-color: rgba(25, 66, 109, 0.4);
    transform: translateX(10px);
}

.objection-quote {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: var(--brand-yellow);
    margin-bottom: 15px;
    font-style: italic;
    opacity: 0.9;
}

.objection-answer {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* FAQ Section - Accordion */
.faq {
    background-color: var(--bg-main);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
}

.accordion-header:hover {
    color: var(--brand-yellow);
    background-color: rgba(255, 255, 255, 0.02);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--brand-light-blue);
    transition: 0.3s;
}

.accordion-item.active .accordion-header::after {
    content: '-';
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: rgba(0, 0, 0, 0.2);
}

.accordion-content p {
    padding: 20px;
    color: var(--text-muted);
    font-size: 1rem;
}