/* Gastflüge Emmetten Page Styles */
.intro-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.info-card h3 i {
    margin-right: 0.75rem;
    color: #3498db;
}

.price-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.price-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.price-list li:last-child {
    border-bottom: none;
}

.additional-info p,
.program-details p,
.exam-info p {
    margin: 0.75rem 0;
    line-height: 1.6;
}

.program-details h4,
.exam-info h4 {
    color: #3498db;
    margin: 1.25rem 0 0.5rem 0;
}

.program-details h4:first-child,
.exam-info h4:first-child {
    margin-top: 0;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}
