/* Test Information Grid */
.test-basic-info-frontend {
    margin: 30px 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.test-basic-info-frontend .info-title {
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.info-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Test/Package Styles */
.test-details-section,
.package-details-section {
    margin: 30px 0;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.test-details-section h3,
.package-details-section h3 {
    color: #2c3e50;
    margin-bottom: 25px;
}

.test-list li {
    padding: 12px 20px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-left: 4px solid #2ecc71;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.test-list li:hover {
    background: #e8f6f3;
    transform: translateX(5px);
}

.package-group {
    margin-bottom: 25px;
    padding: 25px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.package-group:hover {
    border-color: #3498db;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.1);
}

.package-group h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.package-group ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    position: relative;
    padding-left: 30px;
}

.package-group ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

/* FAQ Accordion Styles */
.faq-section {
    margin: 40px 0;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.faq-section h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #3498db;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: #f8f9fa;
    border: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question.active {
    background: #3498db;
    color: white;
}

.faq-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    background: #fff;
    border-top: 1px solid #e0e0e0;
}

.faq-answer > div {
    padding: 25px 0;
    line-height: 1.8;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .test-basic-info-frontend,
    .test-details-section,
    .package-details-section,
    .faq-section {
        padding: 15px;
        margin: 20px 0;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 16px;
    }
}