/* style/user-stories-community-feedback.css */

/* General page styling */
.page-user-stories-community-feedback {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #444;
    background-color: #f8f8f8;
}

/* Ensure good contrast for text on various backgrounds */
.page-user-stories-community-feedback h1,
.page-user-stories-community-feedback h2,
.page-user-stories-community-feedback h3,
.page-user-stories-community-feedback h4,
.page-user-stories-community-feedback h5,
.page-user-stories-community-feedback h6 {
    color: #0A2342; /* Dark blue for headings */
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-user-stories-community-feedback p {
    color: #555;
    margin-bottom: 10px;
}

.page-user-stories-community-feedback a {
    color: #0A2342;
    text-decoration: none;
}

.page-user-stories-community-feedback a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-user-stories-community-feedback__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-user-stories-community-feedback__section {
    padding: 40px 0;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.page-user-stories-community-feedback__section--dark {
    background-color: #0A2342;
    color: #f8f8f8;
}
.page-user-stories-community-feedback__section--dark h2,
.page-user-stories-community-feedback__section--dark h3 {
    color: #FFD700; /* Gold headings on dark background */
}
.page-user-stories-community-feedback__section--dark p,
.page-user-stories-community-feedback__section--dark li {
    color: #ccc; /* Light grey text on dark background */
}
.page-user-stories-community-feedback__section--dark a {
    color: #FFD700;
}
.page-user-stories-community-feedback__section--dark a:hover {
    color: #fff;
}


/* Hero Section */
.page-user-stories-community-feedback__hero {
    background: linear-gradient(135deg, #0A2342 0%, #1A3E6A 100%); /* Dark blue gradient */
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    border-radius: 0 0 15px 15px;
    margin-bottom: 30px;
}

.page-user-stories-community-feedback__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold title */
}

.page-user-stories-community-feedback__hero-subtitle {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

/* Buttons */
.page-user-stories-community-feedback__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 10px;
    cursor: pointer;
}

.page-user-stories-community-feedback__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-user-stories-community-feedback__button--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    border-color: #e6c200;
    color: #000;
}

.page-user-stories-community-feedback__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-user-stories-community-feedback__button--secondary:hover {
    background-color: #FFD700; /* Gold background */
    color: #0A2342; /* Dark blue text */
}

/* Image styling */
.page-user-stories-community-feedback__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Testimonials/Feedback Cards */
.page-user-stories-community-feedback__feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-user-stories-community-feedback__feedback-card {
    background-color: #f0f4f7;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-left: 5px solid #FFD700;
}

.page-user-stories-community-feedback__feedback-card:hover {
    transform: translateY(-5px);
}

.page-user-stories-community-feedback__feedback-card-quote {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.page-user-stories-community-feedback__feedback-card-author {
    font-weight: bold;
    color: #0A2342;
}

.page-user-stories-community-feedback__feedback-card-rating {
    color: #FFD700;
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Lists */
.page-user-stories-community-feedback__list {
    list-style: none;
    padding: 0;
    margin-left: 20px;
}

.page-user-stories-community-feedback__list-item {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #ccc;
}

.page-user-stories-community-feedback__list-item::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* FAQ */
.page-user-stories-community-feedback__faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.page-user-stories-community-feedback__faq-question {
    font-weight: bold;
    color: #0A2342;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.page-user-stories-community-feedback__faq-answer {
    margin-top: 10px;
    color: #555;
    display: none; /* Hidden by default, toggled by JS */
    padding-bottom: 10px;
}

.page-user-stories-community-feedback__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-user-stories-community-feedback__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-user-stories-community-feedback__hero-title {
        font-size: 2.5em;
    }
    .page-user-stories-community-feedback__hero-subtitle {
        font-size: 1.2em;
    }
    .page-user-stories-community-feedback__feedback-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-user-stories-community-feedback__hero-title {
        font-size: 2em;
    }
    .page-user-stories-community-feedback__hero {
        padding: 60px 15px;
    }
    .page-user-stories-community-feedback__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}