/* Page-only rules extracted from faq.html; loaded after shared component rules. */
.content-panel {
            max-width: 1000px;
            margin: 40px auto;
            padding: 40px;
            background: #ffffff;
            border: 1px solid #e0dcd3;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            text-align: left;
        }

        .content-panel h1 {
            color: #23346d;
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .content-panel .subtitle {
            text-align: center;
            font-size: 1.15rem;
            color: #555;
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .faq-container {
            margin-bottom: 50px;
        }

        /* Accordion Styles */
        .accordion {
            background-color: #F8F6F0;
            color: #23346d;
            cursor: pointer;
            padding: 20px;
            width: 100%;
            border: 1px solid #e0dcd3;
            text-align: left;
            outline: none;
            font-size: 1.1rem;
            font-weight: bold;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .accordion:hover, .accordion.active {
            background-color: #23346d;
            color: #ffffff;
            border-color: #23346d;
        }

        .accordion i {
            transition: transform 0.3s ease;
        }

        .accordion.active i {
            transform: rotate(180deg);
        }

        .panel {
            padding: 0 20px;
            background-color: #ffffff;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease;
            border-left: 2px solid #23346d;
            margin-bottom: 15px;
            margin-top: -5px;
            border-radius: 0 0 8px 8px;
        }
        
        .panel.open {
            padding: 15px 20px;
        }

        .panel p {
            margin: 0 0 15px 0;
            line-height: 1.6;
            color: #333333;
        }
        
        .panel p:last-child {
            margin-bottom: 0;
        }
        
        .panel ul {
            margin-top: 0;
            padding-left: 20px;
            line-height: 1.6;
        }

        .panel a {
            color: #23346d;
            font-weight: bold;
        }

        .why-choose-us {
            background: #F8F6F0;
            padding: 40px;
            border-radius: 12px;
            border-top: 4px solid #23346d;
        }

        .why-choose-us h2 {
            color: #23346d;
            margin-top: 0;
            font-size: 2rem;
            text-align: center;
            margin-bottom: 25px;
        }

        .why-choose-us ul {
            list-style-type: none;
            padding: 0;
        }

        .why-choose-us li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            line-height: 1.6;
        }

        .why-choose-us li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #23346d;
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 1.2rem;
        }
        
        .mission-statement {
            text-align: center;
            font-size: 1.3rem;
            font-style: italic;
            color: #23346d;
            font-family: "Shippori Mincho", serif;
            margin-top: 30px;
            font-weight: bold;
        }
