﻿
.return-link {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 15px;
    background-color: #f0f0f0; /* Light grey */
    color: #333;
    border: 1px solid #ccc;
    border-radius: 20px; /* Pill shape */
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: all 0.2s ease;
}

.return-link:hover {
    background-color: #e0e0e0;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* FAQ Stripe Container */
.faq-blurb-container {
    background-color: #f4f4f4; /* Light grey stripe background */
    border-bottom: 1px solid #ddd; /* Subtle definition */
    padding: 10px 0; /* Thin vertical padding */
    width: 100%;
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    gap: 20px; /* Space between text and button */
    font-size: 0.9em; /* Slightly smaller text for secondary nav */
}

/* The Question Text */
.faq-blurb-text {
    margin: 0; /* Remove default paragraph margins */
    color: #555;
    font-weight: 500;
}

/* The Button Override for the Stripe */
.faq-blurb-container .button {
    background-color: #6cc5af !important; /* Brand Green */
    color: #fff !important;
    border: none;
    box-shadow: none;
    font-size: 0.8em; /* Match stripe scale */
    padding: 0 1.5em; /* Horizontal padding */
    height: 2.5em; /* Fixed height for alignment */
    line-height: 2.5em; /* Vertically center text */
    margin-bottom: 0; /* Kill bottom margin */
}

    .faq-blurb-container .button:hover {
        background-color: #5ab09a !important; /* Slightly darker hover */
    }

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .faq-blurb-container {
        flex-direction: column; /* Stack on mobile */
        text-align: center;
        padding: 15px;
        gap: 10px;
    }
}
