.cta-button {
    display: inline-block!important;
    background-color: #e74c3c!important;
    color: white!important;
    padding: 15px 30px!important;
    text-decoration: none!important;
    border-radius: 5px!important;
    font-weight: 600!important;
    font-size: 1.1em!important;
    margin: 20px 0!important;
    transition: background-color 0.3s!important;
    text-align: center;
    width:100%;
}

.cta-button:hover {
    background-color: #c0392b;
}

.highlight-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
}

.highlight-box strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #856404;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px;
    border-radius: 12px;
    margin: 50px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.faq-section h2, .faq-section h3 {
    text-align: center;
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 35px;
    border: none;
    padding: 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.faq-question {
    background: #fff;
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    position: relative;
    margin: 0;
    border-left: 4px solid #e74c3c;
    transition: all 0.3s ease;
    user-select: none;
    justify-content: normal!important;
}

.faq-question:hover {
    background: #f8f9fa;
    border-left-color: #c0392b;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #e74c3c;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
    color: #555;
    line-height: 1.8;
    font-size: 1.05em;
    background: #fafafa;
}

.faq-answer.active {
    max-height: 500px;
    padding: 20px 25px;
    border-top: 1px solid #e9ecef;
}

.faq-number {
    display: inline-block;
    background: #e74c3c;
    color: white;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    font-size: 0.85em;
    margin-right: 12px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 30px 20px;
    }

    .faq-question {
        font-size: 1.05em;
        padding: 18px 20px;
        padding-right: 50px;
    }

    .faq-answer {
        font-size: 1em;
    }
}