
    :root {
        --primary-color: #c0392b;
        --secondary-color: #FF8C00;
        --text-color: #333333;
        --light-bg: #ffffff;
        --card-bg: #ffffff;
        --hover-bg: #ffe0b2;
        --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        --transition: all 0.3s ease;
    }

    .faq-section {
        max-width: 1440px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .faq-title {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 20px;
        letter-spacing: 1px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    }

    .faq-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .faq-item {
        background-color: var(--card-bg);
        border-radius: 12px;
        box-shadow: var(--shadow);
        overflow: hidden;
        transition: var(--transition);
    }

    .faq-item:hover {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    .faq-question {
        width: 100%;
        padding: 25px;
        background-color: var(--light-bg);
        border: none;
        text-align: left;
        cursor: pointer;
        font-size: 18px;
        font-weight: 600;
        color: var(--text-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: var(--transition);
    }

    .faq-question:hover {
        background-color: #f9f9f9;
        color: var(--primary-color);
    }

    .faq-answer {
        padding: 0 25px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .faq-answer.active {
        padding: 0 25px 25px 25px;
        max-height: 1000px;
    }

    .faq-answer-content {
        font-size: 1rem;
        color: var(--text-color);
        line-height: 1.8;
    }

    .faq-icon {
        transition: transform 0.3s ease;
        font-size: 1.2rem;
    }

    .faq-item.active .faq-icon {
        transform: rotate(180deg);
    }

    @media (max-width: 768px) {
        .faq-title {
            font-size: 1.8rem;
        }
        
        .faq-question {
            font-size: 1rem;
            padding: 15px;
        }
        
        .faq-answer.active {
            padding: 0 15px 15px 15px;
        }
        
        .faq-answer-content {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .faq-section {
            padding: 30px 15px;
        }
        
        .faq-title {
            font-size: 1.5rem;
        }
    }
